technic/technic/machines/LV/battery_box.lua

21 lines
478 B
Lua
Raw Normal View History

-- LV Battery box
2013-07-17 21:34:35 +02:00
minetest.register_craft({
output = 'technic:lv_battery_box0',
recipe = {
2016-03-20 02:34:56 +01:00
{'group:wood', 'group:wood', 'group:wood'},
{'technic:battery', 'technic:machine_casing', 'technic:battery'},
{'technic:battery', 'technic:lv_cable', 'technic:battery'},
2013-07-17 21:34:35 +02:00
}
})
technic.register_battery_box({
tier = "LV",
max_charge = 40000,
2013-07-17 21:34:35 +02:00
charge_rate = 1000,
discharge_rate = 4000,
charge_step = 500,
discharge_step = 800,
})