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