add vipworld modpack
This commit is contained in:
parent
6e35aebc06
commit
1f21dcd616
252 changed files with 3892 additions and 0 deletions
17
mods/vipworld/darkage/stairs.lua
Normal file
17
mods/vipworld/darkage/stairs.lua
Normal file
|
@ -0,0 +1,17 @@
|
|||
for _,name in ipairs({"basalt_cobble", "slate_tale", "straw", "stone_brick", "ors_cobble", "gneiss_cobble", "slate_cobble"}) do
|
||||
local nodename = "darkage:"..name
|
||||
local tmp = minetest.registered_nodes[nodename]
|
||||
if not tmp then
|
||||
print("[darkage] "..nodename.." not yet defined")
|
||||
return
|
||||
end
|
||||
local desc = tmp.description
|
||||
stairs.register_stair_and_slab("darkage_"..name, nodename,
|
||||
tmp.groups,
|
||||
{"darkage_"..name..".png"},
|
||||
desc.." Stair",
|
||||
desc.." Slab",
|
||||
tmp.sounds
|
||||
)
|
||||
end
|
||||
--"desert_stone_cobble" "sandstone_cobble"
|
Loading…
Add table
Add a link
Reference in a new issue