mirror of
https://github.com/minetest-mods/technic.git
synced 2025-06-30 23:30:38 +02:00
Consistently use cable in electric machine recipes
All electric machine recipes now include cable of the appropriate tier as the bottom-middle ingredient, immediately below the casing ingredient. Many LV machines were using a copper ingot in that location.
This commit is contained in:
@ -16,7 +16,7 @@ minetest.register_craft({
|
||||
recipe = {
|
||||
{'default:mese', 'technic:motor', 'default:mese' },
|
||||
{'technic:deployer_off', 'technic:machine_casing', 'technic:deployer_off'},
|
||||
{'default:mese', 'technic:deployer_off', 'default:mese' },
|
||||
{'default:mese', 'technic:hv_cable0', 'default:mese' },
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -4,8 +4,8 @@ minetest.register_craft({
|
||||
output = 'technic:hv_generator',
|
||||
recipe = {
|
||||
{'technic:stainless_steel_ingot', 'technic:mv_generator', 'technic:stainless_steel_ingot'},
|
||||
{'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'},
|
||||
{'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'},
|
||||
{'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'},
|
||||
{'technic:stainless_steel_ingot', 'technic:hv_cable0', 'technic:stainless_steel_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -18,7 +18,7 @@ minetest.register_craft({
|
||||
recipe = {
|
||||
{'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
|
||||
{'technic:stainless_steel_ingot', 'technic:machine_casing', 'technic:stainless_steel_ingot'},
|
||||
{'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'},
|
||||
{'technic:stainless_steel_ingot', 'technic:hv_cable0', 'technic:stainless_steel_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -3,9 +3,9 @@ local S = technic.getter
|
||||
|
||||
minetest.register_craft({
|
||||
recipe = {
|
||||
{"technic:carbon_steel_block", "pipeworks:filter", "technic:carbon_steel_block"},
|
||||
{"technic:motor", "technic:machine_casing", "technic:carbon_steel_block"},
|
||||
{"technic:carbon_steel_block", "technic:diamond_drill_head", "technic:carbon_steel_block"}},
|
||||
{"technic:carbon_steel_block", "pipeworks:filter", "technic:carbon_steel_block"},
|
||||
{"technic:motor", "technic:machine_casing", "technic:diamond_drill_head"},
|
||||
{"technic:carbon_steel_block", "technic:hv_cable0", "technic:carbon_steel_block"}},
|
||||
output = "technic:quarry",
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user