From d748eea48e0955d2acc6cb6626fadb41d58ea125 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Tue, 1 Jan 2013 17:04:39 -0500 Subject: 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. --- crafts.lua | 34 +++++++++++++++++++++------------- 1 file changed, 21 insertions(+), 13 deletions(-) (limited to 'crafts.lua') 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 -- cgit v1.2.3