forked from HEROgold/bot-batteries-technologies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.lua
65 lines (65 loc) · 1.84 KB
/
settings.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
data:extend({
{
type = "int-setting",
name = "battery-roboport-energy-research-limit",
setting_type = "startup",
default_value = 9,
maximum_value = 9
--Maximum amount of research and roboport levels. > MASSIVELY impacts the game loading, as it becomes a*b*c amount. (a, b and c are all this setting)
},
{
type = "int-setting",
name = "battery-roboport-energy-research-minimum",
setting_type = "startup",
default_value = 3,
maximum_value = 9
-- Minimum amount of researches required
},
{
type = "double-setting",
name = "battery-roboport-input-flow-limit-modifier",
setting_type = "startup",
minimum_value = 0.1,
default_value = 1,
},
{
type = "double-setting",
name = "battery-roboport-buffer-capacity-modifier",
setting_type = "startup",
minimum_value = 0.1,
default_value = 1,
},
{
type = "double-setting",
name = "battery-roboport-recharge-minimum-modifier",
setting_type = "startup",
minimum_value = 0.1,
default_value = 1,
},
{
type = "double-setting",
name = "battery-roboport-energy-usage-modifier",
setting_type = "startup",
minimum_value = 0.1,
default_value = 1,
},
{
type = "double-setting",
name = "battery-roboport-charging-energy-modifier",
setting_type = "startup",
minimum_value = 0.1,
default_value = 1,
},{
type = "int-setting",
name = "battery-roboport-upgrade-timer",
setting_type = "startup",
minimum_value = 1,
default_value = 8
},
{
type = "bool-setting",
name = "show-items",
setting_type = "startup",
default_value = true
}
})