commit | author | age
|
ee0765
|
1 |
-- The solar array is an assembly of panels into a powerful array |
S |
2 |
-- The assembly can deliver more energy than the individual panel because |
|
3 |
-- of the transformer unit which converts the panel output variations into |
|
4 |
-- a stable supply. |
|
5 |
-- Solar arrays are not able to store large amounts of energy. |
|
6 |
-- The LV arrays are used to make medium voltage arrays. |
|
7 |
|
|
8 |
minetest.register_craft({ |
|
9 |
output = 'technic:solar_array_lv 1', |
|
10 |
recipe = { |
68b7bc
|
11 |
{'technic:solar_panel', 'technic:solar_panel', 'technic:solar_panel'}, |
Z |
12 |
{'technic:carbon_steel_ingot', 'technic:lv_transformer', 'technic:carbon_steel_ingot'}, |
|
13 |
{'', 'technic:lv_cable0', ''}, |
ee0765
|
14 |
} |
S |
15 |
}) |
|
16 |
|
|
17 |
technic.register_solar_array({tier="LV", power=10}) |
|
18 |
|