diff --git a/init.lua b/init.lua index 0cf16f6..42e7005 100644 --- a/init.lua +++ b/init.lua @@ -18,6 +18,26 @@ minetest.register_node("industrial_decor:planks",{ }, }) + minetest.register_node("industrial_decor:planks_destroyed",{ + description = "Destroyed Planks", + drawtype = "signlike", + tiles = {"industrial_decor_planks_destroyed.png"}, + inventory_image = "industrial_decor_planks_destroyed.png", + wield_image = "industrial_decor_planks_destroyed.png", + light_propagates = true, + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "wallmounted", + + walkable = true, + + + groups = {choppy = 3}, + selection_box = { + type = "wallmounted", + }, + }) + --Lamps minetest.register_node("industrial_decor:lamp",{ description = "Industrial Lamp",