Changed crafting recipes to account for revamped pumps, valves, etc. Now
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>
Tue, 1 Jan 2013 22:04:39 +0000 (17:04 -0500)
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>
Tue, 1 Jan 2013 22:04:39 +0000 (17:04 -0500)
requires the moreores mod and most recent git (for mese crystal fragments) to
craft a pump.

crafts.lua

index 493fdcf5a06a72473678afa119fa0c180b99a3a2..e65c1f342979f4768704057c2e8098a8c8070cc7 100644 (file)
@@ -38,16 +38,16 @@ if io.open(minetest.get_modpath("pipeworks").."/../technic/init.lua", "r") == ni
        })
 
        minetest.register_craft( {
-               output = "pipeworks:pump 2",
+               output = "pipeworks:pump_off 2",
                recipe = {
-                       { "default:stone", "default:stone", "default:stone" },
-                       { "default:steel_ingot", "default:stick", "default:steel_ingot" },
-                       { "default:stone", "default:stone", "default:stone" }
+                       { "default:stone", "default:steel_ingot", "default:stone" },
+                       { "moreores:copper_ingot", "default:mese_crystal_fragment", "moreores:copper_ingot" },
+                       { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" }
                },
        })
 
        minetest.register_craft( {
-               output = "pipeworks:valve 2",
+               output = "pipeworks:valve_off 2",
                recipe = {
                        { "", "default:stick", "" },
                        { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" },
@@ -56,7 +56,7 @@ if io.open(minetest.get_modpath("pipeworks").."/../technic/init.lua", "r") == ni
        })
 
        minetest.register_craft( {
-               output = "pipeworks:storage_tank 2",
+               output = "pipeworks:storage_tank_0 2",
                recipe = {
                        { "", "default:steel_ingot", "default:steel_ingot" },
                        { "default:steel_ingot", "default:glass", "default:steel_ingot" },
@@ -65,20 +65,19 @@ if io.open(minetest.get_modpath("pipeworks").."/../technic/init.lua", "r") == ni
        })
 
        minetest.register_craft( {
-               output = "pipeworks:intake 2",
+               output = "pipeworks:grating 2",
                recipe = {
-                       { "", "default:steel_ingot", "" },
                        { "default:steel_ingot", "", "default:steel_ingot" },
-                       { "", "default:steel_ingot", "" }
+                       { "", "default:steel_ingot", "" },
+                       { "default:steel_ingot", "", "default:steel_ingot" }
                },
        })
 
        minetest.register_craft( {
-               output = "pipeworks:outlet 2",
+               output = "pipeworks:spigot 3",
                recipe = {
-                       { "default:steel_ingot", "", "default:steel_ingot" },
-                       { "", "default:steel_ingot", "" },
-                       { "default:steel_ingot", "", "default:steel_ingot" }
+                       { "pipeworks:pipe_110000_empty", "" },
+                       { "", "pipeworks:pipe_110000_empty" },
                },
        })
 
@@ -91,4 +90,13 @@ 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", "" },
+               },
+       })
+
 end