Version 0.3

Fix floating, add better room, improve spawning
This commit is contained in:
BlockMen
2013-09-26 01:37:24 +02:00
parent dbe9af6c61
commit f64171b2a8
8 changed files with 157 additions and 59 deletions

11
nodes.lua Normal file
View 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