68ea0acbd0
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.
14 lines
480 B
Lua
14 lines
480 B
Lua
minetest.register_alias("generator_mv", "technic:generator_mv")
|
|
|
|
minetest.register_craft({
|
|
output = 'technic:mv_generator',
|
|
recipe = {
|
|
{'technic:stainless_steel_ingot', 'technic:lv_generator', 'technic:stainless_steel_ingot'},
|
|
{'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'},
|
|
{'technic:stainless_steel_ingot', 'technic:mv_cable0', 'technic:stainless_steel_ingot'},
|
|
}
|
|
})
|
|
|
|
technic.register_generator({tier="MV", tube=1, supply=600})
|
|
|