forked from nalc/homedecor_modpack
add dishwasher
This commit is contained in:
parent
33ffaf6d21
commit
815c10eb64
|
@ -586,3 +586,34 @@ minetest.register_node('homedecor:filing_cabinet', {
|
|||
))
|
||||
end,
|
||||
})
|
||||
|
||||
minetest.register_node("homedecor:dishwasher", {
|
||||
description = "Dishwasher",
|
||||
drawtype = "nodebox",
|
||||
tiles = {
|
||||
"homedecor_dishwasher_top.png",
|
||||
"homedecor_dishwasher_bottom.png",
|
||||
"homedecor_dishwasher_sides.png",
|
||||
"homedecor_dishwasher_sides.png^[transformFX",
|
||||
"homedecor_dishwasher_back.png",
|
||||
"homedecor_dishwasher_front.png"
|
||||
},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
|
||||
{-0.5, -0.5, -0.5, 0.5, 0.5, -0.4375},
|
||||
{-0.5, -0.5, -0.5, 0.5, 0.1875, 0.1875},
|
||||
{-0.4375, -0.5, -0.5, 0.4375, 0.4375, 0.4375},
|
||||
}
|
||||
},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }
|
||||
},
|
||||
groups = { snappy = 3 },
|
||||
})
|
||||
|
||||
|
||||
|
|
BIN
homedecor/textures/homedecor_dishwasher_back.png
Normal file
BIN
homedecor/textures/homedecor_dishwasher_back.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 535 B |
BIN
homedecor/textures/homedecor_dishwasher_bottom.png
Normal file
BIN
homedecor/textures/homedecor_dishwasher_bottom.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 552 B |
BIN
homedecor/textures/homedecor_dishwasher_front.png
Normal file
BIN
homedecor/textures/homedecor_dishwasher_front.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 140 B |
BIN
homedecor/textures/homedecor_dishwasher_sides.png
Normal file
BIN
homedecor/textures/homedecor_dishwasher_sides.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 411 B |
BIN
homedecor/textures/homedecor_dishwasher_top.png
Normal file
BIN
homedecor/textures/homedecor_dishwasher_top.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 534 B |
Loading…
Reference in New Issue
Block a user