forked from nalc/homedecor_modpack
add brick chimney
(guess what? yeah, no crafting recipe yet. :P )
This commit is contained in:
parent
da4039e2c5
commit
057e384b27
|
@ -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()
|
||||
})
|
||||
|
||||
|
|
BIN
homedecor/textures/homedecor_chimney_bottom.png
Normal file
BIN
homedecor/textures/homedecor_chimney_bottom.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 198 B |
BIN
homedecor/textures/homedecor_chimney_sides.png
Normal file
BIN
homedecor/textures/homedecor_chimney_sides.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 464 B |
BIN
homedecor/textures/homedecor_chimney_top.png
Normal file
BIN
homedecor/textures/homedecor_chimney_top.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 166 B |
Loading…
Reference in New Issue
Block a user