mirror of
https://github.com/minetest-mods/technic.git
synced 2025-06-29 23:00:52 +02:00
Partial rewrite
This commit is contained in:
14
technic/machines/HV/solar_array.lua
Normal file
14
technic/machines/HV/solar_array.lua
Normal file
@ -0,0 +1,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'},
|
||||
{'default:steel_ingot', 'technic:hv_transformer', 'default:steel_ingot'},
|
||||
{'', 'technic:hv_cable0', ''},
|
||||
}
|
||||
})
|
||||
|
||||
technic.register_solar_array({tier="HV", power=100})
|
||||
|
Reference in New Issue
Block a user