From e235dae9d1b4583c04af3cdf544a4c04e638d8b3 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Wed, 16 Jan 2013 15:26:27 -0500 Subject: added crafting recipes for mese pneumatic tubes --- crafts.lua | 35 ++++++++++++++++++++++++++++------- 1 file changed, 28 insertions(+), 7 deletions(-) (limited to 'crafts.lua') diff --git a/crafts.lua b/crafts.lua index e65c1f3..4457d7c 100644 --- a/crafts.lua +++ b/crafts.lua @@ -90,13 +90,34 @@ 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:entry_panel 2", + recipe = { + { "", "default:steel_ingot", "" }, + { "", "pipeworks:pipe_110000_empty", "" }, + { "", "default:steel_ingot", "" }, + }, }) end -- cgit v1.2.3