summaryrefslogtreecommitdiff
path: root/crafts.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-01-01 17:04:39 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-01-01 17:04:39 -0500
commitd748eea48e0955d2acc6cb6626fadb41d58ea125 (patch)
tree090fcca67250420a06202548410ad8f0b3d29764 /crafts.lua
parent1a562d23a85568ec111da07411958c09b0b95117 (diff)
downloadpipeworks-d748eea48e0955d2acc6cb6626fadb41d58ea125.tar
pipeworks-d748eea48e0955d2acc6cb6626fadb41d58ea125.tar.gz
pipeworks-d748eea48e0955d2acc6cb6626fadb41d58ea125.tar.bz2
pipeworks-d748eea48e0955d2acc6cb6626fadb41d58ea125.tar.xz
pipeworks-d748eea48e0955d2acc6cb6626fadb41d58ea125.zip
Changed crafting recipes to account for revamped pumps, valves, etc. Now
requires the moreores mod and most recent git (for mese crystal fragments) to craft a pump.
Diffstat (limited to 'crafts.lua')
-rw-r--r--crafts.lua34
1 files changed, 21 insertions, 13 deletions
diff --git a/crafts.lua b/crafts.lua
index 493fdcf..e65c1f3 100644
--- a/crafts.lua
+++ b/crafts.lua
@@ -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