mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-06 10:10:36 +02:00
use basic_materials mod where possible.
This commit is contained in:
committed by
Ekdohibs
parent
f702a6597b
commit
44cb8df048
@ -363,8 +363,10 @@ minetest.register_craft({
|
||||
output = "technic:chainsaw",
|
||||
recipe = {
|
||||
{"technic:stainless_steel_ingot", trigger, "technic:battery"},
|
||||
{"technic:fine_copper_wire", "technic:motor", "technic:battery"},
|
||||
{"basic_materials:copper_wire", "basic_materials:motor", "technic:battery"},
|
||||
{"", "", "technic:stainless_steel_ingot"},
|
||||
}
|
||||
},
|
||||
replacements = { {"basic_materials:copper_wire", "basic_materials:empty_spool"}, },
|
||||
|
||||
})
|
||||
|
||||
|
@ -7,7 +7,7 @@ minetest.register_craft({
|
||||
output = 'technic:mining_drill',
|
||||
recipe = {
|
||||
{'default:tin_ingot', 'technic:diamond_drill_head', 'default:tin_ingot'},
|
||||
{'technic:stainless_steel_ingot', 'technic:motor', 'technic:stainless_steel_ingot'},
|
||||
{'technic:stainless_steel_ingot', 'basic_materials:motor', 'technic:stainless_steel_ingot'},
|
||||
{'', 'technic:red_energy_crystal', 'default:copper_ingot'},
|
||||
}
|
||||
})
|
||||
|
@ -11,8 +11,8 @@ local S = technic.getter
|
||||
minetest.register_craft({
|
||||
output = "technic:laser_mk1",
|
||||
recipe = {
|
||||
{"default:diamond", "technic:brass_ingot", "default:obsidian_glass"},
|
||||
{"", "technic:brass_ingot", "technic:red_energy_crystal"},
|
||||
{"default:diamond", "basic_materials:brass_ingot", "default:obsidian_glass"},
|
||||
{"", "basic_materials:brass_ingot", "technic:red_energy_crystal"},
|
||||
{"", "", "default:copper_ingot"},
|
||||
}
|
||||
})
|
||||
|
@ -122,7 +122,7 @@ minetest.register_craft({
|
||||
output = "technic:prospector",
|
||||
recipe = {
|
||||
{"moreores:pick_silver", "moreores:mithril_block", "pipeworks:teleport_tube_1"},
|
||||
{"technic:brass_ingot", "technic:control_logic_unit", "technic:brass_ingot"},
|
||||
{"basic_materials:brass_ingot", "technic:control_logic_unit", "basic_materials:brass_ingot"},
|
||||
{"", "technic:blue_energy_crystal", ""},
|
||||
}
|
||||
})
|
||||
|
@ -55,7 +55,7 @@ minetest.register_craft({
|
||||
output = 'technic:vacuum',
|
||||
recipe = {
|
||||
{'pipeworks:tube_1', 'pipeworks:filter', 'technic:battery'},
|
||||
{'pipeworks:tube_1', 'technic:motor', 'technic:battery'},
|
||||
{'pipeworks:tube_1', 'basic_materials:motor', 'technic:battery'},
|
||||
{'technic:stainless_steel_ingot', '', ''},
|
||||
}
|
||||
})
|
||||
|
Reference in New Issue
Block a user