2013-07-23 14:43:14 +02:00
|
|
|
minetest.register_alias("hv_generator", "technic:hv_generator")
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:hv_generator',
|
|
|
|
recipe = {
|
2014-07-07 22:48:38 +02:00
|
|
|
{'technic:carbon_plate', 'technic:mv_generator', 'technic:composite_plate'},
|
2014-07-06 19:45:16 +02:00
|
|
|
{'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'},
|
2016-03-20 02:34:56 +01:00
|
|
|
{'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'},
|
2013-07-23 14:43:14 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2013-12-01 18:45:45 +01:00
|
|
|
technic.register_generator({tier="HV", tube=1, supply=1200})
|
2013-07-23 14:43:14 +02:00
|
|
|
|