-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.lua
More file actions
69 lines (69 loc) · 1.91 KB
/
settings.lua
File metadata and controls
69 lines (69 loc) · 1.91 KB
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
data:extend {
{
type = "double-setting",
name = "reactive-evolution-factor-pollution-factor",
setting_type = "startup",
default_value = 0.0000009,
maximum_value = 1,
minimum_value = 0,
order = "1",
},
{
type = "bool-setting",
name = "reactive-evolution-factor-standardize-reduction-factor",
setting_type = "runtime-global",
default_value = false,
order = "1",
},
{
type = "double-setting",
name = "reactive-evolution-factor-standard-reduction-factor",
setting_type = "runtime-global",
default_value = 0.002,
maximum_value = 1,
minimum_value = 0,
order = "2",
},
{
type = "bool-setting",
name = "reactive-evolution-factor-aliens-gear-for-war",
setting_type = "runtime-global",
default_value = false,
order = "5",
},
{
type = "bool-setting",
name = "reactive-evolution-factor-enable-debug",
setting_type = "runtime-global",
default_value = false,
order = "6",
},
{
type = "int-setting",
name = "reactive-evolution-factor-reduction-factor",
setting_type = "runtime-global",
default_value = 100,
maximum_value = 2000,
minimum_value = 0,
order = "7",
},
{
type = "double-setting",
name = "reactive-evolution-factor-evolution-increment-factor",
setting_type = "runtime-global",
--default_value = 0.000003,
default_value = 0.3,
maximum_value = 1,
minimum_value = 0,
hidden = true,
},
{
type = "double-setting",
name = "reactive-evolution-factor-minimum-evolution-factor",
setting_type = "runtime-global",
default_value = 0.0,
maximum_value = 1.0,
minimum_value = 0.0,
hidden = true,
},
}