spawners/spawners_mobs/nodes_additional.lua

16 lines
381 B
Lua
Raw Normal View History

--
-- Decorative Carved Sand Stones
--
2016-10-08 21:54:26 +03:00
local img = {"eye", "men", "sun", "bird"}
for i=1, #img do
2016-10-08 21:54:26 +03:00
minetest.register_node("spawners_mobs:deco_stone_"..img[i], {
description = "Sandstone with "..img[i],
tiles = {"spawners_mobs_sandstone_carved_"..img[i]..".png"},
is_ground_content = false,
groups = {cracky = 2},
2016-10-08 21:54:26 +03:00
sounds = default.node_sound_stone_defaults(),
})
end