summaryrefslogtreecommitdiff
path: root/homedecor_climate_control
diff options
context:
space:
mode:
Diffstat (limited to 'homedecor_climate_control')
-rw-r--r--homedecor_climate_control/init.lua12
-rw-r--r--homedecor_climate_control/textures/homedecor_fan_blades.pngbin0 -> 372 bytes
2 files changed, 12 insertions, 0 deletions
diff --git a/homedecor_climate_control/init.lua b/homedecor_climate_control/init.lua
index 5524f26..bddf858 100644
--- a/homedecor_climate_control/init.lua
+++ b/homedecor_climate_control/init.lua
@@ -143,7 +143,19 @@ homedecor.register("radiator", {
})
-- crafting
+minetest.register_craftitem(":homedecor:fan_blades", {
+ description = S("Fan blades"),
+ inventory_image = "homedecor_fan_blades.png"
+})
+minetest.register_craft( {
+ output = "homedecor:fan_blades 2",
+ recipe = {
+ { "", "basic_materials:plastic_sheet", "" },
+ { "", "default:steel_ingot", "" },
+ { "basic_materials:plastic_sheet", "", "basic_materials:plastic_sheet" }
+ },
+})
minetest.register_craft({
output = "homedecor:air_conditioner",
diff --git a/homedecor_climate_control/textures/homedecor_fan_blades.png b/homedecor_climate_control/textures/homedecor_fan_blades.png
new file mode 100644
index 0000000..efb9f7c
--- /dev/null
+++ b/homedecor_climate_control/textures/homedecor_fan_blades.png
Binary files differ