From d7dfd11364f6fe2c3819e93324a95e53aa7ce1ac Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Tue, 30 Oct 2018 20:45:48 -0400 Subject: use basic_materials mod where possible --- crafts.lua | 85 -------------------------------------------------------------- 1 file changed, 85 deletions(-) (limited to 'crafts.lua') diff --git a/crafts.lua b/crafts.lua index 2ee5710..9c02da8 100644 --- a/crafts.lua +++ b/crafts.lua @@ -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", "" } - }, -}) - -- cgit v1.2.3