Add destroyed planks

master
migdyn 2019-01-01 16:28:43 +01:00
parent 320264dfe8
commit 97fdc14f22
1 changed files with 20 additions and 0 deletions

View File

@ -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",