summaryrefslogtreecommitdiff
path: root/crafts.lua
diff options
context:
space:
mode:
authorhdastwb <hdastwb@hdastwb.heliohost.org>2013-07-08 12:06:47 -0400
committerhdastwb <hdastwb@hdastwb.heliohost.org>2013-07-13 21:16:44 -0400
commit31680fcf80c841679c3c8c59143a1a91aa4d7922 (patch)
treea08dcda353cbd80f1411ecd0902b1ccd43c243e1 /crafts.lua
parentb19b57ef4b9625f5e1542d7c7aef557a8abf66d5 (diff)
downloadpipeworks-31680fcf80c841679c3c8c59143a1a91aa4d7922.tar
pipeworks-31680fcf80c841679c3c8c59143a1a91aa4d7922.tar.gz
pipeworks-31680fcf80c841679c3c8c59143a1a91aa4d7922.tar.bz2
pipeworks-31680fcf80c841679c3c8c59143a1a91aa4d7922.tar.xz
pipeworks-31680fcf80c841679c3c8c59143a1a91aa4d7922.zip
added more powerful sand tubes (MESE sand tubes), along with associated crafts, textures, and documentation
Diffstat (limited to 'crafts.lua')
-rw-r--r--crafts.lua21
1 files changed, 21 insertions, 0 deletions
diff --git a/crafts.lua b/crafts.lua
index ddc4f9d..462f760 100644
--- a/crafts.lua
+++ b/crafts.lua
@@ -251,5 +251,26 @@ if io.open(minetest.get_modpath("pipeworks").."/../technic/init.lua", "r") == ni
{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
},
})
+
+ minetest.register_craft( {
+ output = "pipeworks:mese_sand_tube_000000 2",
+ recipe = {
+ { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
+ { "default:sand", "default:mese_crystal", "default:sand" },
+ { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
+ },
+ })
+
+ minetest.register_craft( {
+ type = "shapeless",
+ output = "pipeworks:mese_sand_tube_000000",
+ recipe = {
+ "pipeworks:sand_tube_000000",
+ "default:mese_crystal_fragment",
+ "default:mese_crystal_fragment",
+ "default:mese_crystal_fragment",
+ "default:mese_crystal_fragment"
+ },
+ })
end