8c6d4e0036
Bioreactors were simply a substantally lower power capacity of the Voltic Battery. (Thus they were doing the exact same thing, so why bother having 2 things doing the same) All Voltic Batteries produce 0.25% of their max capacity.
20 lines
416 B
Lua
20 lines
416 B
Lua
-- LV Battery box
|
|
|
|
minetest.register_craft({
|
|
type = "shapeless",
|
|
output = 'voltic_battery:lv_battery_volt0',
|
|
recipe = {
|
|
"technic:lv_battery_box0",
|
|
"technic:solar_panel",
|
|
}
|
|
})
|
|
|
|
tech.register_battery_box2({
|
|
tier = "LV",
|
|
max_charge = 26000, -- 65% of 40,000
|
|
charge_rate = 1500,
|
|
discharge_rate = 4500,
|
|
charge_step = 500,
|
|
discharge_step = 800,
|
|
generate = 65, -- 0.25% of max
|
|
}) |