summaryrefslogtreecommitdiff
path: root/technic/machines/HV/solar_array.lua
blob: 414291a9d48b5e9464668fe2e6776cc35573d880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- 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_cable0',      ''},
	}
})

technic.register_solar_array({tier="HV", power=100})