From e235dae9d1b4583c04af3cdf544a4c04e638d8b3 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Wed, 16 Jan 2013 15:26:27 -0500 Subject: [PATCH 1/3] added crafting recipes for mese pneumatic tubes --- crafts.lua | 35 ++++++++++++++++++++++++++++------- 1 file changed, 28 insertions(+), 7 deletions(-) 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 From 812d0b33beb5fda2a553caa2bae096e7a5622764 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Wed, 16 Jan 2013 15:52:31 -0500 Subject: [PATCH 2/3] re-added furnace side texture. --- textures/default_furnace_side.png | Bin 0 -> 688 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 textures/default_furnace_side.png diff --git a/textures/default_furnace_side.png b/textures/default_furnace_side.png new file mode 100644 index 0000000000000000000000000000000000000000..9521b6964aa9c519d835554281d479f2ac5551c8 GIT binary patch literal 688 zcmV;h0#E&kP)a%SEv0HhAfmQy zw>H;4fBDhvc7YjMnF+O1ZUd2ur;M20%n2IvtPEdk+ApwaxP5pM(%nsy4P~lgT_uyngxIT1!Ob)LEOaT)p15ajDlE4u`qTg%C#v`@uKf`%br` zjlrXnlDR0#Qc0;1MYi<#$y4~x&f7OXe;+ASQYwE^7^AVOs_ArUj7c$i@11jS4(D7o zo28VLQUDNR#Hy;KltjeLQc6U9USMYD-24gv2q91@MMOe~7-L=6-q+`amF0`_&IS`J zC6&TX$6{HQDWw>rQVJ1oZLGcDdB@B|R8`ezGTYt%Ym5$|wbp8_@!suqW3&)bNMW=d z9QJqr4E7HWwK1qvp64Ni5P~trdtcWz_6K7CFj+=K*DhbkvTQsa3Mnh+dc9szmQ0jo zS<^ISQ4kUOreWsV`;<~&$}7v4HrH3@1GF)rX_y(cj%}M_0su@Y2_cARabXb^x@plL zjAEjW?fAwsa|l6e4FK~zoYi%vO;Hx7lL-Jkdbs`d`yMk_v)O!9Xd10G5uHsYXv{w* WCUnF4s(8@=0000 Date: Thu, 17 Jan 2013 15:04:42 -0500 Subject: [PATCH 3/3] added crafting recipes for detector tube and also for filter/injector device. --- crafts.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/crafts.lua b/crafts.lua index 4457d7c..03890c5 100644 --- a/crafts.lua +++ b/crafts.lua @@ -111,6 +111,24 @@ if io.open(minetest.get_modpath("pipeworks").."/../technic/init.lua", "r") == ni }, }) + 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 = {