summaryrefslogtreecommitdiff
path: root/pipeworks/crafts.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-01 20:02:19 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-01 21:09:33 -0400
commitda66780a569712c23ae4f2996cfb4608a9f9d69d (patch)
tree217556029a78bc23ad4564720afc86de97228a04 /pipeworks/crafts.lua
parent615b22df4d423aded3613db7716943a2f389b047 (diff)
downloaddreambuilder_modpack-da66780a569712c23ae4f2996cfb4608a9f9d69d.tar
dreambuilder_modpack-da66780a569712c23ae4f2996cfb4608a9f9d69d.tar.gz
dreambuilder_modpack-da66780a569712c23ae4f2996cfb4608a9f9d69d.tar.bz2
dreambuilder_modpack-da66780a569712c23ae4f2996cfb4608a9f9d69d.tar.xz
dreambuilder_modpack-da66780a569712c23ae4f2996cfb4608a9f9d69d.zip
copy all standard Dreambuilder mods in from the old subgame
(exactly as last supplied there, updates to these mods will follow later)
Diffstat (limited to 'pipeworks/crafts.lua')
-rw-r--r--pipeworks/crafts.lua151
1 files changed, 151 insertions, 0 deletions
diff --git a/pipeworks/crafts.lua b/pipeworks/crafts.lua
new file mode 100644
index 0000000..63a04b7
--- /dev/null
+++ b/pipeworks/crafts.lua
@@ -0,0 +1,151 @@
+-- Crafting recipes for pipes
+
+minetest.register_craft( {
+ output = "pipeworks:pipe_1_empty 12",
+ recipe = {
+ { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" },
+ { "", "", "" },
+ { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" }
+ },
+})
+
+minetest.register_craft( {
+ output = "pipeworks:spigot 3",
+ recipe = {
+ { "pipeworks:pipe_1_empty", "" },
+ { "", "pipeworks:pipe_1_empty" },
+ },
+})
+
+minetest.register_craft( {
+ output = "pipeworks:entry_panel_empty 2",
+ recipe = {
+ { "", "default:steel_ingot", "" },
+ { "", "pipeworks:pipe_1_empty", "" },
+ { "", "default:steel_ingot", "" },
+ },
+})
+
+-- Various ancillary pipe devices
+
+minetest.register_craft( {
+ output = "pipeworks:pump_off 2",
+ recipe = {
+ { "default:stone", "default:steel_ingot", "default:stone" },
+ { "default:copper_ingot", "default:mese_crystal_fragment", "default:copper_ingot" },
+ { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" }
+ },
+})
+
+minetest.register_craft( {
+ output = "pipeworks:valve_off_empty 2",
+ recipe = {
+ { "", "group:stick", "" },
+ { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" },
+ { "", "default:steel_ingot", "" }
+ },
+})
+
+minetest.register_craft( {
+ output = "pipeworks:storage_tank_0 2",
+ recipe = {
+ { "", "default:steel_ingot", "default:steel_ingot" },
+ { "default:steel_ingot", "default:glass", "default:steel_ingot" },
+ { "default:steel_ingot", "default:steel_ingot", "" }
+ },
+})
+
+minetest.register_craft( {
+ output = "pipeworks:grating 2",
+ recipe = {
+ { "default:steel_ingot", "", "default:steel_ingot" },
+ { "", "pipeworks:pipe_1_empty", "" },
+ { "default:steel_ingot", "", "default:steel_ingot" }
+ },
+})
+
+minetest.register_craft( {
+ output = "pipeworks:flow_sensor_empty 2",
+ recipe = {
+ { "pipeworks:pipe_1_empty", "mesecons:mesecon", "pipeworks:pipe_1_empty" },
+ },
+})
+
+minetest.register_craft( {
+ output = "pipeworks:fountainhead 2",
+ recipe = {
+ { "pipeworks:pipe_1_empty" },
+ { "pipeworks:pipe_1_empty" }
+ },
+})
+
+
+-- Crafting recipes for pneumatic tubes
+
+-- If homedecor is not installed, we need to register its crafting chain for
+-- plastic sheeting so that pipeworks remains compatible with it.
+
+if minetest.get_modpath("homedecor") == nil then
+
+ minetest.register_craftitem(":homedecor:oil_extract", {
+ description = "Oil extract",
+ inventory_image = "homedecor_oil_extract.png",
+ })
+
+ minetest.register_craftitem(":homedecor:paraffin", {
+ description = "Unprocessed paraffin",
+ inventory_image = "homedecor_paraffin.png",
+ })
+
+ minetest.register_alias("homedecor:plastic_base", "homedecor:paraffin")
+
+ minetest.register_craftitem(":homedecor:plastic_sheeting", {
+ description = "Plastic sheet",
+ inventory_image = "homedecor_plastic_sheeting.png",
+ })
+
+ minetest.register_craft({
+ type = "shapeless",
+ output = "homedecor:oil_extract 4",
+ recipe = {
+ "group:leaves",
+ "group:leaves",
+ "group:leaves",
+ "group:leaves",
+ "group:leaves",
+ "group:leaves"
+ }
+ })
+
+ minetest.register_craft({
+ type = "cooking",
+ output = "homedecor:paraffin",
+ recipe = "homedecor:oil_extract",
+ })
+
+ minetest.register_craft({
+ type = "cooking",
+ output = "homedecor:plastic_sheeting",
+ recipe = "homedecor:paraffin",
+ })
+
+ minetest.register_craft({
+ type = "fuel",
+ recipe = "homedecor:oil_extract",
+ burntime = 30,
+ })
+
+ minetest.register_craft({
+ type = "fuel",
+ recipe = "homedecor:paraffin",
+ burntime = 30,
+ })
+
+ minetest.register_craft({
+ type = "fuel",
+ recipe = "homedecor:plastic_sheeting",
+ burntime = 30,
+ })
+end
+
+