4394beec6a
Integrated into the game is most of minetest_game as the stable base
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_cable', 'technic:stainless_steel_ingot'},
|
|
}
|
|
})
|
|
|
|
technic.register_generator({tier="MV", tube=1, supply=600})
|
|
|