diff options
author | cheapie <no-email-for-you@example.com> | 2018-09-08 20:20:22 -0500 |
---|---|---|
committer | cheapie <no-email-for-you@example.com> | 2018-09-08 20:20:22 -0500 |
commit | d38c1aba8845dab560a7d3aeaebc4970b6e79030 (patch) | |
tree | c2f6de4a2262787c0ccc2443fc34711a130e77ae /firealarm_smokedetector | |
parent | 6a9dfd5655cde3cc9fde394d0c37c26ffe07f242 (diff) | |
download | firealarm-d38c1aba8845dab560a7d3aeaebc4970b6e79030.tar firealarm-d38c1aba8845dab560a7d3aeaebc4970b6e79030.tar.gz firealarm-d38c1aba8845dab560a7d3aeaebc4970b6e79030.tar.bz2 firealarm-d38c1aba8845dab560a7d3aeaebc4970b6e79030.tar.xz firealarm-d38c1aba8845dab560a7d3aeaebc4970b6e79030.zip |
Add craft recipes
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",}, + } +}) |