summaryrefslogtreecommitdiff
path: root/crafts.lua
diff options
context:
space:
mode:
authorVanessaE <vanessaezekowitz@gmail.com>2013-07-13 18:26:56 -0700
committerVanessaE <vanessaezekowitz@gmail.com>2013-07-13 18:26:56 -0700
commit1a9a940e84bf4780313163ae3c3683fea5875330 (patch)
treea08dcda353cbd80f1411ecd0902b1ccd43c243e1 /crafts.lua
parentb19b57ef4b9625f5e1542d7c7aef557a8abf66d5 (diff)
parent31680fcf80c841679c3c8c59143a1a91aa4d7922 (diff)
downloadpipeworks-1a9a940e84bf4780313163ae3c3683fea5875330.tar
pipeworks-1a9a940e84bf4780313163ae3c3683fea5875330.tar.gz
pipeworks-1a9a940e84bf4780313163ae3c3683fea5875330.tar.bz2
pipeworks-1a9a940e84bf4780313163ae3c3683fea5875330.tar.xz
pipeworks-1a9a940e84bf4780313163ae3c3683fea5875330.zip
Merge pull request #47 from hdastwb/mesesandtube
MESE Sand Tubes
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