diff options
author | root <root@linux-forks.de> | 2018-11-14 22:38:42 +0100 |
---|---|---|
committer | root <root@linux-forks.de> | 2018-11-14 22:38:42 +0100 |
commit | 51e89c90bf50dfab3690cffc9ae4d6e1e58d9a0e (patch) | |
tree | e2a42227d3497fce857657d0e42110885dbe5fab /crafts.lua | |
parent | 62a1724635c4dde3bcfb83ae8ac968b102db5989 (diff) | |
parent | f5a60ba407175d07daf69c6955ecb3fcf5b7fa64 (diff) |
Merge branch 'master' of https://github.com/minetest-mods/pipeworks
Diffstat (limited to 'crafts.lua')
-rw-r--r-- | crafts.lua | 85 |
1 files changed, 0 insertions, 85 deletions
@@ -85,88 +85,3 @@ minetest.register_craft( { { "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 - --- crafting items for creating node breakers -minetest.register_craftitem("pipeworks:gear", { - description = "Gear", - inventory_image = "pipeworks_gear.png", -}) - -minetest.register_craft( { - output = "pipeworks:gear 6", - recipe = { - { "", "default:steel_ingot", "" }, - { "default:steel_ingot","default:stone", "default:steel_ingot" }, - { "", "default:steel_ingot", "" } - }, -}) - |