-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.lua
104 lines (104 loc) · 2.38 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
data:extend(
{
{
type = "int-setting",
name = "production-monitor-update-seconds",
setting_type = "runtime-global",
default_value = 15,
allowed_values = {10, 15, 20, 30, 60, 120, 180, 300, 600, 1200, 1800, 3600},
minimum_value = 1,
maximum_value = 3600,
order = "a",
},
{
type = "string-setting",
name = "production-monitor-modifier",
setting_type = "runtime-per-user",
default_value = "shift",
allowed_values = {"control", "alt", "shift", "none"},
order = "a",
},
{
type = "bool-setting",
name = "production-monitor-large",
setting_type = "runtime-per-user",
default_value = false,
order = "a0",
},
{
type = "bool-setting",
name = "production-monitor-show-production",
setting_type = "runtime-per-user",
default_value = true,
order = "a1",
},
{
type = "bool-setting",
name = "production-monitor-show-consumption",
setting_type = "runtime-per-user",
default_value = true,
order = "a2",
},
{
type = "bool-setting",
name = "production-monitor-show-difference",
setting_type = "runtime-per-user",
default_value = true,
order = "a3",
},
{
type = "bool-setting",
name = "production-monitor-show-ratio",
setting_type = "runtime-per-user",
default_value = true,
order = "a4",
},
{
type = "bool-setting",
name = "production-monitor-show-overall",
setting_type = "runtime-per-user",
default_value = true,
order = "a5",
},
{
type = "int-setting",
name = "production-monitor-precision",
setting_type = "runtime-per-user",
default_value = 0,
minimum_value = 0,
maximum_value = 10,
order = "b1",
},
{
type = "bool-setting",
name = "production-monitor-top",
setting_type = "runtime-per-user",
default_value = false,
order = "c1",
},
{
type = "int-setting",
name = "production-monitor-columns",
setting_type = "runtime-per-user",
default_value = 1,
minimum_value = 1,
maximum_value = 100,
order = "c2",
},
{
type = "string-setting",
name = "production-monitor-default-items",
setting_type = "runtime-per-user",
default_value = "automation-science-pack, logistic-science-pack, chemical-science-pack, military-science-pack, production-science-pack, utility-science-pack, space-science-pack"
,
order = "d0",
},
{
type = "string-setting",
name = "production-monitor-default-fluids",
setting_type = "runtime-per-user",
default_value = "crude-oil, petroleum-gas",
order = "d1",
},
}
)