diff options
Diffstat (limited to 'firealarm_smokedetector')
-rw-r--r-- | firealarm_smokedetector/init.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/firealarm_smokedetector/init.lua b/firealarm_smokedetector/init.lua index ec08e78..db9df1b 100644 --- a/firealarm_smokedetector/init.lua +++ b/firealarm_smokedetector/init.lua @@ -130,3 +130,21 @@ minetest.register_abm({ minetest.get_meta(pos):set_int("agressive",1) end, }) + +minetest.register_craft({ + output = "firealarm:smokedetector_off", + recipe = { + {"plasticbox:plasticbox","homedecor:ic","plasticbox:plasticbox",}, + {"homedecor:copper_strip","technic:uranium_lump","homedecor:copper_strip",}, + {"","plasticbox:plasticbox","mesecons_lightstone:lightstone_red_off",}, + } +}) + +minetest.register_craft({ + output = "firealarm:smokedetector_off", + recipe = { + {"plasticbox:plasticbox","homedecor:ic","plasticbox:plasticbox",}, + {"mesecons_lamp:lamp_off","","mesecons_solarpanel:solar_panel_off",}, + {"","plasticbox:plasticbox","mesecons_lightstone:lightstone_red_off",}, + } +}) |