2014-06-25 07:02:26 +02:00
|
|
|
-- laundry devices
|
|
|
|
|
2015-01-24 00:34:02 +01:00
|
|
|
homedecor.register("washing_machine", {
|
2014-06-25 07:02:26 +02:00
|
|
|
description = "Washing Machine",
|
|
|
|
tiles = {
|
|
|
|
"homedecor_washing_machine_top.png",
|
|
|
|
"homedecor_washing_machine_bottom.png",
|
|
|
|
"homedecor_washing_machine_sides.png",
|
|
|
|
"homedecor_washing_machine_sides.png^[transformFX",
|
|
|
|
"homedecor_washing_machine_back.png",
|
|
|
|
"homedecor_washing_machine_front.png"
|
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0.375, 0.375},
|
|
|
|
{-0.5, -0.5, 0.3125, 0.5, 0.5, 0.5},
|
|
|
|
}
|
|
|
|
},
|
2015-01-23 17:40:57 +01:00
|
|
|
selection_box = { type = "regular" },
|
2014-06-25 07:02:26 +02:00
|
|
|
groups = { snappy = 3 },
|
|
|
|
})
|
|
|
|
|
2015-01-24 00:34:02 +01:00
|
|
|
homedecor.register("dryer", {
|
2014-06-25 07:02:26 +02:00
|
|
|
description = "Tumble dryer",
|
|
|
|
tiles = {
|
|
|
|
"homedecor_dryer_top.png",
|
|
|
|
"homedecor_dryer_bottom.png",
|
|
|
|
"homedecor_dryer_sides.png",
|
|
|
|
"homedecor_dryer_sides.png^[transformFX",
|
|
|
|
"homedecor_dryer_back.png",
|
|
|
|
"homedecor_dryer_front.png"
|
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0.375, 0.375},
|
|
|
|
{-0.5, -0.5, 0.3125, 0.5, 0.5, 0.5},
|
|
|
|
}
|
|
|
|
},
|
2015-01-23 17:40:57 +01:00
|
|
|
selection_box = { type = "regular" },
|
2014-06-25 07:02:26 +02:00
|
|
|
groups = { snappy = 3 },
|
|
|
|
})
|
|
|
|
|