add brick chimney

(guess what?  yeah, no crafting recipe yet. :P )
This commit is contained in:
Vanessa Ezekowitz 2014-06-25 04:21:54 -04:00
parent da4039e2c5
commit 057e384b27
4 changed files with 27 additions and 0 deletions

View File

@ -361,3 +361,30 @@ for _, color in ipairs(welcome_mat_colors) do
}
})
end
minetest.register_node("homedecor:chimney", {
drawtype = "nodebox",
paramtype = "light",
description = "Chimney",
tiles = {
"homedecor_chimney_top.png",
"homedecor_chimney_bottom.png",
"homedecor_chimney_sides.png",
},
node_box = {
type = "fixed",
fixed = {
{-0.25, -0.5, -0.25, 0.25, 0.5, -0.1875},
{-0.25, -0.5, 0.1875, 0.25, 0.5, 0.25},
{-0.25, -0.5, -0.25, -0.1875, 0.5, 0.25},
{0.1875, -0.5, -0.25, 0.25, 0.5, 0.25},
}
},
selection_box = {
type = "fixed",
fixed = { -0.25, -0.5, -0.25, 0.25, 0.5, 0.25 }
},
groups = {cracky=3},
sounds = default.node_sound_stone_defaults()
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 464 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 B