Sires
2018-03-15 e12220be79e25c1c5cb866e1e98091d35079cd3e
commit | author | age
338f3b 1 -- LV Battery box
ee0765 2
S 3 minetest.register_craft({
4     output = 'technic:lv_battery_box0',
5     recipe = {
83c649 6         {'group:wood',      'group:wood',             'group:wood'},
S 7         {'technic:battery', 'technic:machine_casing', 'technic:battery'},
8         {'technic:battery', 'technic:lv_cable',       'technic:battery'},
ee0765 9     }
S 10 })
11
12 technic.register_battery_box({
13     tier           = "LV",
9ab584 14     max_charge     = 40000,
ee0765 15     charge_rate    = 1000,
S 16     discharge_rate = 4000,
17     charge_step    = 500,
18     discharge_step = 800,
19 })
20