summaryrefslogtreecommitdiff
path: root/technic/crafts.lua
diff options
context:
space:
mode:
Diffstat (limited to 'technic/crafts.lua')
-rw-r--r--technic/crafts.lua46
1 files changed, 13 insertions, 33 deletions
diff --git a/technic/crafts.lua b/technic/crafts.lua
index 5d3ae04..7d51f29 100644
--- a/technic/crafts.lua
+++ b/technic/crafts.lua
@@ -38,6 +38,12 @@ if pipeworks.enable_teleport_tube then
})
end
+-- basic materials' brass ingot
+
+minetest.clear_craft({
+ output = "basic_materials:brass_ingot",
+})
+
-- tubes crafting recipes
minetest.register_craft({
@@ -71,44 +77,17 @@ minetest.register_craft({
output = 'technic:red_energy_crystal',
recipe = {
{'moreores:silver_ingot', 'technic:battery', 'dye:red'},
- {'technic:battery', 'default:diamondblock', 'technic:battery'},
+ {'technic:battery', 'basic_materials:energy_crystal_simple', 'technic:battery'},
{'dye:red', 'technic:battery', 'moreores:silver_ingot'},
}
})
minetest.register_craft({
- output = 'technic:fine_copper_wire 2',
- recipe = {
- {'', 'default:copper_ingot', ''},
- {'', 'default:copper_ingot', ''},
- {'', 'default:copper_ingot', ''},
- }
-})
-
-minetest.register_craft({
- output = 'technic:fine_gold_wire 2',
- recipe = {
- {'', 'default:gold_ingot', ''},
- {'', 'default:gold_ingot', ''},
- {'', 'default:gold_ingot', ''},
- }
-})
-
-minetest.register_craft({
- output = 'technic:fine_silver_wire 2',
- recipe = {
- {'', 'moreores:silver_ingot', ''},
- {'', 'moreores:silver_ingot', ''},
- {'', 'moreores:silver_ingot', ''},
- }
-})
-
-minetest.register_craft({
output = 'technic:copper_coil 1',
recipe = {
- {'technic:fine_copper_wire', 'technic:wrought_iron_ingot', 'technic:fine_copper_wire'},
+ {'basic_materials:copper_wire', 'technic:wrought_iron_ingot', 'basic_materials:copper_wire'},
{'technic:wrought_iron_ingot', '', 'technic:wrought_iron_ingot'},
- {'technic:fine_copper_wire', 'technic:wrought_iron_ingot', 'technic:fine_copper_wire'},
+ {'basic_materials:copper_wire', 'technic:wrought_iron_ingot', 'basic_materials:copper_wire'},
}
})
@@ -153,10 +132,11 @@ minetest.register_craft({
minetest.register_craft({
output = 'technic:control_logic_unit',
recipe = {
- {'', 'technic:fine_gold_wire', ''},
+ {'', 'basic_materials:gold_wire', ''},
{'default:copper_ingot', 'technic:silicon_wafer', 'default:copper_ingot'},
{'', 'technic:chromium_ingot', ''},
- }
+ },
+ replacements = { {"basic_materials:gold_wire", "basic_materials:empty_spool"}, },
})
minetest.register_craft({
@@ -179,7 +159,7 @@ minetest.register_craft({
output = "technic:machine_casing",
recipe = {
{ "technic:cast_iron_ingot", "technic:cast_iron_ingot", "technic:cast_iron_ingot" },
- { "technic:cast_iron_ingot", "technic:brass_ingot", "technic:cast_iron_ingot" },
+ { "technic:cast_iron_ingot", "basic_materials:brass_ingot", "technic:cast_iron_ingot" },
{ "technic:cast_iron_ingot", "technic:cast_iron_ingot", "technic:cast_iron_ingot" },
},
})