forked from mtcontrib/tsm_pyramids
Version 0.3
Fix floating, add better room, improve spawning
This commit is contained in:
11
nodes.lua
Normal file
11
nodes.lua
Normal file
@ -0,0 +1,11 @@
|
||||
local img = {"eye", "men", "sun"}
|
||||
|
||||
for i=1,3 do
|
||||
minetest.register_node("pyramids:deco_stone"..i, {
|
||||
description = "Sandstone",
|
||||
tiles = {"default_sandstone.png^pyramids_"..img[i]..".png"},
|
||||
is_ground_content = true,
|
||||
groups = {crumbly=2,cracky=3},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
end
|
Reference in New Issue
Block a user