ShadowNinja
2013-10-06 363f0332788e04e2e4bb63af5cd21fac5ae56ae5
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 = {
7         {'technic:solar_array_mv', 'technic:solar_array_mv',  'technic:solar_array_mv'},
8         {'default:steel_ingot',    'technic:hv_transformer',  'default:steel_ingot'},
9         {'',                       'technic:hv_cable0',       ''},
10     }
11 })
12
13 technic.register_solar_array({tier="HV", power=100})
14