summaryrefslogtreecommitdiff
path: root/crafts.lua
diff options
context:
space:
mode:
authorNovatux <nathanael.courant@laposte.net>2013-01-19 13:15:09 +0100
committerNovatux <nathanael.courant@laposte.net>2013-01-19 13:15:09 +0100
commit16c807b66641fa2257708ae4a935be5b7456efb4 (patch)
tree89290f216b32fcd7ffbf1d370161099ddb75550f /crafts.lua
parentaea0207b7fa5c6a1024efe306f4fe05c70a6085e (diff)
parent6202e82163bad1bf0160505bc384396133d9611f (diff)
downloadpipeworks-16c807b66641fa2257708ae4a935be5b7456efb4.tar
pipeworks-16c807b66641fa2257708ae4a935be5b7456efb4.tar.gz
pipeworks-16c807b66641fa2257708ae4a935be5b7456efb4.tar.bz2
pipeworks-16c807b66641fa2257708ae4a935be5b7456efb4.tar.xz
pipeworks-16c807b66641fa2257708ae4a935be5b7456efb4.zip
Merge http://github.com/VanessaE/pipeworks
Diffstat (limited to 'crafts.lua')
-rw-r--r--crafts.lua53
1 files changed, 46 insertions, 7 deletions
diff --git a/crafts.lua b/crafts.lua
index e65c1f3..03890c5 100644
--- a/crafts.lua
+++ b/crafts.lua
@@ -90,13 +90,52 @@ if io.open(minetest.get_modpath("pipeworks").."/../technic/init.lua", "r") == ni
},
})
- minetest.register_craft( {
- output = "pipeworks:entry_panel 2",
- recipe = {
- { "", "default:steel_ingot", "" },
- { "", "pipeworks:pipe_110000_empty", "" },
- { "", "default:steel_ingot", "" },
- },
+ minetest.register_craft( {
+ output = "pipeworks:mese_tube_000000 2",
+ recipe = {
+ { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
+ { "", "default:mese_crystal", "" },
+ { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
+ },
+ })
+
+ minetest.register_craft( {
+ type = "shapeless",
+ output = "pipeworks:mese_tube_000000",
+ recipe = {
+ "pipeworks:tube_000000",
+ "default:mese_crystal_fragment",
+ "default:mese_crystal_fragment",
+ "default:mese_crystal_fragment",
+ "default:mese_crystal_fragment"
+ },
+ })
+
+ minetest.register_craft( {
+ 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" },
+ { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
+ },
+ })
+
+ minetest.register_craft( {
+ output = "pipeworks:filter 2",
+ recipe = {
+ { "default:steel_ingot", "default:steel_ingot", "homedecor:plastic_sheeting" },
+ { "default:stick", "default:mese_crystal", "homedecor:plastic_sheeting" },
+ { "default:steel_ingot", "default:steel_ingot", "homedecor:plastic_sheeting" }
+ },
+ })
+
+ minetest.register_craft( {
+ output = "pipeworks:entry_panel 2",
+ recipe = {
+ { "", "default:steel_ingot", "" },
+ { "", "pipeworks:pipe_110000_empty", "" },
+ { "", "default:steel_ingot", "" },
+ },
})
end