diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-11-27 18:13:35 -0500 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-11-27 18:13:35 -0500 |
commit | 604d5310a15e9d4344150d7ae07a2b8380dc79c2 (patch) | |
tree | f75338567d682bfe049da16e9a78e44a5c06dbaf | |
parent | 713cf01585a3b1b8d2dbeeef3d1637aefd9154aa (diff) | |
download | pipeworks-604d5310a15e9d4344150d7ae07a2b8380dc79c2.tar pipeworks-604d5310a15e9d4344150d7ae07a2b8380dc79c2.tar.gz pipeworks-604d5310a15e9d4344150d7ae07a2b8380dc79c2.tar.bz2 pipeworks-604d5310a15e9d4344150d7ae07a2b8380dc79c2.tar.xz pipeworks-604d5310a15e9d4344150d7ae07a2b8380dc79c2.zip |
Add recipes for fountainhead and one-way tube
-rw-r--r-- | crafts.lua | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -71,6 +71,13 @@ minetest.register_craft( { }, }) +minetest.register_craft( { + output = "pipeworks:fountainhead 2", + recipe = { + { "pipeworks:pipe_110000_empty" }, + { "pipeworks:pipe_110000_empty" } + }, +}) -- Various ancillary tube devices @@ -171,8 +178,17 @@ if minetest.get_modpath("homedecor") == nil then end +minetest.register_craft( { + output = "pipeworks:one_way_tube 2", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "default:stick", "default:mese_crystal", "homedecor:plastic_sheeting" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, +}) + -- If the technic mod is present, then don't bother registering the recipes --- for the various tubes, as technic has its own recipes for those. +-- for some tubes, as technic has its own recipes for those. if not minetest.get_modpath("technic") then |