-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
17 lines (13 loc) · 794 Bytes
/
Copy pathinit.lua
File metadata and controls
17 lines (13 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- Author: This mod was made by Norbert Thien, multimediamobil – Region Süd (mmmsued), 2025
-- Code: Except otherwise specified, all code in this project is licensed as LGPLv3.
-- Media: Except otherwise specified, all media and any other content in this project which is not source code is licensed as CC BY SA 3.0.
local S = minetest.get_translator("quartzy")
-- Quartzy Crafting Material
minetest.register_craftitem("quartzy:quartzy_raw", {
description = S("Quartzy Raw"),
inventory_image = "quartzy_raw.png",
})
dofile(minetest.get_modpath("quartzy").."/quartzy_brick.lua")
dofile(minetest.get_modpath("quartzy").."/quartzy_chiseled.lua")
dofile(minetest.get_modpath("quartzy").."/quartzy_pillar.lua")
dofile(minetest.get_modpath("quartzy").."/quartzy_plain.lua")