mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-15 23:10:41 +01:00
15 lines
511 B
Lua
15 lines
511 B
Lua
-- The high voltage solar array is an assembly of medium voltage arrays.
|
|
-- Solar arrays are not able to store large amounts of energy.
|
|
|
|
minetest.register_craft({
|
|
output = 'technic:solar_array_hv 1',
|
|
recipe = {
|
|
{'technic:solar_array_mv', 'technic:solar_array_mv', 'technic:solar_array_mv'},
|
|
{'technic:carbon_plate', 'technic:hv_transformer', 'technic:composite_plate'},
|
|
{'', 'technic:hv_cable', ''},
|
|
}
|
|
})
|
|
|
|
technic.register_solar_array({tier="HV", power=100})
|
|
|