-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathsettings.lua
81 lines (81 loc) · 1.78 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
data:extend({
-- NEW
{
type = "bool-setting",
name = "kr-realistic-weapons",
setting_type = "startup",
default_value = true,
order = "a1",
},
{
type = "bool-setting",
name = "kr-realistic-weapons-auto-aim",
setting_type = "startup",
default_value = false,
order = "a2",
},
{
type = "bool-setting",
name = "kr-loaders",
setting_type = "startup",
default_value = true,
order = "a3",
},
{
type = "bool-setting",
name = "kr-containers",
setting_type = "startup",
default_value = true,
order = "a4",
},
{
type = "bool-setting",
name = "kr-finite-oil",
setting_type = "startup",
default_value = true,
order = "a5",
},
-- TODO: Make this react to player color
{
type = "string-setting",
name = "kr-shelter-tint",
setting_type = "startup",
default_value = "white",
allowed_values = { "white", "gray", "yellow", "pink", "olive", "red", "blue", "green", "cyan", "purple" },
order = "b1",
},
{
type = "string-setting",
name = "kr-main-menu-background",
setting_type = "startup",
default_value = "Krastorio Chan",
allowed_values = {
"Factorio",
"Krastorio Legacy",
"Krastorio 2",
"Krastorio CyberSkull",
"Krastorio Chan",
"Krastorio THE FACTORY MUST GROW",
"Krastorio Explorer",
"Factorio Alternative 1",
"Factorio Alternative 2",
"Factorio Alternative 3",
"Factorio Alternative 4",
},
order = "b2",
},
{
type = "bool-setting",
name = "kr-main-menu-song",
setting_type = "startup",
default_value = true,
order = "b3",
},
{
type = "bool-setting",
name = "kr-kl-stuff",
setting_type = "startup",
default_value = false,
order = "c1",
},
})