diff options
author | VanessaE <vanessaezekowitz@gmail.com> | 2013-01-19 08:44:26 -0800 |
---|---|---|
committer | VanessaE <vanessaezekowitz@gmail.com> | 2013-01-19 08:44:26 -0800 |
commit | f8eb154f7ab446dc30080868b8c5971949cac4d0 (patch) | |
tree | 9fa421bf6727d7589e1d50512d5bafd9bed20d7e /crafts.lua | |
parent | 6202e82163bad1bf0160505bc384396133d9611f (diff) | |
parent | a77095ebe6e11ceab88d8b6c8a68a9b6c4440d3f (diff) |
Merge pull request #8 from Novatux/master
Teleporter and accelerator tubes, crafting recipe for detector pipe, autocrafter
Diffstat (limited to 'crafts.lua')
-rw-r--r-- | crafts.lua | 20 |
1 files changed, 19 insertions, 1 deletions
@@ -115,7 +115,25 @@ if io.open(minetest.get_modpath("pipeworks").."/../technic/init.lua", "r") == ni output = "pipeworks:detector_tube_off_000000 2", recipe = { { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, - { "default:mese_crystal_fragment", "default:mese_crystal_fragment", "default:mese_crystal_fragment" }, + { "mesecons:mesecon", "mesecons:mesecon", "mesecons:mesecon" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, + }) + + minetest.register_craft( { + output = "pipeworks:accelerator_tube_000000 2", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "default:mese_crystal_fragment", "default:steel_ingot", "default:mese_crystal_fragment" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, + }) + + minetest.register_craft( { + output = "pipeworks:teleport_tube_000000 2", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "default:desert_stone", "default:mese_block", "default:desert_stone" }, { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } }, }) |