Vitaliy
2018-07-21 d1b54a573c6287ea1d63b9c3f979c39058b1331a
technic/crafts.lua
@@ -1,20 +1,44 @@
-- check if we have the necessary dependencies to allow actually using these materials in the crafts
local mesecons_materials = minetest.get_modpath("mesecons_materials")
-- Remove some recipes
-- Bronze
minetest.clear_craft({
   type = "shapeless",
   output = "default:bronze_ingot"
})
-- Accelerator tube
if pipeworks.enable_accelerator_tube then
   minetest.clear_craft({
      output = "pipeworks:accelerator_tube_1",
   })
   minetest.register_craft({
      output = 'pipeworks:accelerator_tube_1',
      recipe = {
         {'technic:copper_coil', 'pipeworks:tube_1', 'technic:copper_coil'},
         }
   })
end
-- Teleport tube
if pipeworks.enable_teleport_tube then
   minetest.clear_craft({
      output = "pipeworks:teleport_tube_1",
   })
   minetest.register_craft({
      output = 'pipeworks:teleport_tube_1',
      recipe = {
         {'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
         {'pipeworks:tube_1', 'technic:control_logic_unit', 'pipeworks:tube_1'},
         {'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
         }
   })
end
-- tubes crafting recipes
minetest.register_craft({
    output = 'pipeworks:accelerator_tube_1',
    recipe = {
        {'technic:copper_coil', 'pipeworks:tube_1', 'technic:copper_coil'},
        }
})
minetest.register_craft({
    output = 'pipeworks:teleport_tube_1',
    recipe = {
        {'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
        {'pipeworks:tube_1', 'technic:control_logic_unit', 'pipeworks:tube_1'},
        {'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
        }
})
minetest.register_craft({
   output = 'technic:diamond_drill_head',
@@ -37,18 +61,18 @@
minetest.register_craft({
   output = 'technic:blue_energy_crystal',
   recipe = {
      {'default:gold_ingot', 'technic:battery', 'dye:blue'},
      {'moreores:mithril_ingot', 'technic:battery', 'dye:blue'},
      {'technic:battery', 'technic:green_energy_crystal', 'technic:battery'},
      {'dye:blue', 'technic:battery', 'default:gold_ingot'},
      {'dye:blue', 'technic:battery', 'moreores:mithril_ingot'},
   }
})
minetest.register_craft({
   output = 'technic:red_energy_crystal',
   recipe = {
      {'default:gold_ingot', 'technic:battery', 'dye:red'},
      {'moreores:silver_ingot', 'technic:battery', 'dye:red'},
      {'technic:battery', 'default:diamondblock', 'technic:battery'},
      {'dye:red', 'technic:battery', 'default:gold_ingot'},
      {'dye:red', 'technic:battery', 'moreores:silver_ingot'},
   }
})
@@ -97,10 +121,12 @@
   }
})
local isolation = mesecons_materials and "mesecons_materials:fiber" or "technic:rubber"
minetest.register_craft({
   output = 'technic:lv_transformer',
   recipe = {
      {'technic:wrought_iron_ingot', 'technic:wrought_iron_ingot', 'technic:wrought_iron_ingot'},
      {isolation,                    'technic:wrought_iron_ingot', isolation},
      {'technic:copper_coil',        'technic:wrought_iron_ingot', 'technic:copper_coil'},
      {'technic:wrought_iron_ingot', 'technic:wrought_iron_ingot', 'technic:wrought_iron_ingot'},
   }
@@ -109,7 +135,7 @@
minetest.register_craft({
   output = 'technic:mv_transformer',
   recipe = {
      {'technic:carbon_steel_ingot', 'technic:carbon_steel_ingot', 'technic:carbon_steel_ingot'},
      {isolation,                    'technic:carbon_steel_ingot', isolation},
      {'technic:copper_coil',        'technic:carbon_steel_ingot', 'technic:copper_coil'},
      {'technic:carbon_steel_ingot', 'technic:carbon_steel_ingot', 'technic:carbon_steel_ingot'},
   }
@@ -118,7 +144,7 @@
minetest.register_craft({
   output = 'technic:hv_transformer',
   recipe = {
      {'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
      {isolation,                       'technic:stainless_steel_ingot', isolation},
      {'technic:copper_coil',           'technic:stainless_steel_ingot', 'technic:copper_coil'},
      {'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
   }
@@ -127,9 +153,9 @@
minetest.register_craft({
   output = 'technic:control_logic_unit',
   recipe = {
      {'', 'default:gold_ingot', ''},
      {'', 'technic:fine_gold_wire', ''},
      {'default:copper_ingot', 'technic:silicon_wafer', 'default:copper_ingot'},
      {'', 'default:copper_ingot', ''},
      {'', 'technic:chromium_ingot', ''},
   }
})
@@ -138,7 +164,7 @@
   recipe = {
      {'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
      {'default:bronze_ingot',          'default:bronze_ingot',          'default:bronze_ingot'},
      {'moreores:tin_ingot',            'moreores:tin_ingot',            'moreores:tin_ingot'},
      {'default:tin_ingot',             'default:tin_ingot',             'default:tin_ingot'},
   }
})
@@ -158,45 +184,15 @@
   },
})
-- Remove some recipes
minetest.register_craftitem("technic:nothing", {
   description = "",
   inventory_image = "blank.png",
   groups = { not_in_creative_inventory = 1 },
})
if minetest.register_craft_predict then
   minetest.register_craft_predict(function(itemstack, player, old_craft_grid, craft_inv)
      if itemstack:get_name() == "technic:nothing" then
         return ItemStack("")
      end
   end)
end
-- Bronze
minetest.register_craft({
   output = "default:dirt 2",
   type = "shapeless",
   output = "technic:nothing",
   recipe = {"default:copper_ingot", "default:steel_ingot"}
})
-- Accelerator tube
minetest.register_craft({
   output = "technic:nothing",
   replacements = {{"bucket:bucket_water","bucket:bucket_empty"}},
   recipe = {
           { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
           { "default:mese_crystal_fragment", "default:steel_ingot", "default:mese_crystal_fragment" },
           { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
      "technic:stone_dust",
      "group:leaves",
      "bucket:bucket_water",
      "group:sand",
   },
})
-- Teleport tube
minetest.register_craft({
   output = "technic:nothing",
   recipe = {
           { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
           { "default:desert_stone", "default:mese_block", "default:desert_stone" },
           { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
   },
})