Parasitoid
2019-06-01 e8f1033d497e6e30c87fb2f11e8206587f2d3e7a
commit | author | age
ee0765 1 -- The high voltage solar array is an assembly of medium voltage arrays.
S 2 -- Solar arrays are not able to store large amounts of energy.
3
4 minetest.register_craft({
5     output = 'technic:solar_array_hv 1',
6     recipe = {
68b7bc 7         {'technic:solar_array_mv',     'technic:solar_array_mv', 'technic:solar_array_mv'},
5e4a87 8         {'technic:carbon_plate',       'technic:hv_transformer', 'technic:composite_plate'},
83c649 9         {'',                           'technic:hv_cable',       ''},
ee0765 10     }
S 11 })
12
13 technic.register_solar_array({tier="HV", power=100})
14