DS-Minetest
2017-03-28 338f3b6a997bb3ebea9d62d986b7c3327f06072e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
-- LV Battery box
 
minetest.register_craft({
    output = 'technic:lv_battery_box0',
    recipe = {
        {'group:wood',      'group:wood',             'group:wood'},
        {'technic:battery', 'technic:machine_casing', 'technic:battery'},
        {'technic:battery', 'technic:lv_cable',       'technic:battery'},
    }
})
 
technic.register_battery_box({
    tier           = "LV",
    max_charge     = 40000,
    charge_rate    = 1000,
    discharge_rate = 4000,
    charge_step    = 500,
    discharge_step = 800,
})