Add mods: technic, moreores, paintings, Nyancat (Pbj_pup). Small fix: sandwiches
This commit is contained in:
parent
15e8e696a2
commit
fb09deddc1
1404 changed files with 156555 additions and 211 deletions
18
mods/technic_plus_beta/technic/machines/HV/solar_array.lua
Normal file
18
mods/technic_plus_beta/technic/machines/HV/solar_array.lua
Normal file
|
@ -0,0 +1,18 @@
|
|||
-- 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:hv_solar_array 1',
|
||||
recipe = {
|
||||
{'technic:mv_solar_array', 'technic:mv_solar_array', 'technic:mv_solar_array'},
|
||||
{'technic:carbon_plate', 'technic:hv_transformer', 'technic:composite_plate'},
|
||||
{'', 'technic:hv_cable', ''},
|
||||
}
|
||||
})
|
||||
|
||||
technic.register_solar_array("technic:hv_solar_array", {
|
||||
tier="HV",
|
||||
power=100
|
||||
})
|
||||
|
||||
minetest.register_alias("technic:solar_array_hv", "technic:hv_solar_array")
|
Loading…
Add table
Add a link
Reference in a new issue