Version 0.3
[minetest_pyramids.git] / nodes.lua
blob311a27b715ea7a35b05c4435806e4bed095a3d2c
1 local img = {"eye", "men", "sun"}
3 for i=1,3 do
4 minetest.register_node("pyramids:deco_stone"..i, {
5 description = "Sandstone",
6 tiles = {"default_sandstone.png^pyramids_"..img[i]..".png"},
7 is_ground_content = true,
8 groups = {crumbly=2,cracky=3},
9 sounds = default.node_sound_stone_defaults(),
11 end