-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.lua
124 lines (124 loc) · 3.79 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
data:extend({
{
type = "bool-setting",
name = "alien-module-ore-conversion",
order = "01",
setting_type = "startup",
default_value = true
},
{
type = "bool-setting",
name = "alien-module-hyper-ammo-enabled",
order = "02",
setting_type = "startup",
default_value = true
},
{
type = "double-setting",
name = "alien-module-level-exponent",
order = "03",
minimum_value = 0.08, maximum_value = 0.20,
setting_type = "startup",
default_value = 0.10
},
{
type = "double-setting",
name = "alien-module-hyper-module-effect",
order = "04",
minimum_value = 0.001, maximum_value = 0.1,
setting_type = "startup",
default_value = 0.01
},
{
type = "int-setting",
name = "alien-module-drop-amount",
order = "05",
minimum_value = 1, maximum_value = 10000,
setting_type = "startup",
default_value = 100
},
{
type = "double-setting",
name = "rampant-alienmodule-compat-probability-per-tier-unit",
localised_name = {"", "[color=red]", "Rampant", ": [/color]", {"mod-setting-name.rampant-alienmodule-compat-probability-per-tier-unit"}},
setting_type = "startup",
order = "1probabilities-1",
default_value = 0.08,
minimum_value = 0,
maximum_value = 1
},
{
type = "double-setting",
name = "rampant-alienmodule-compat-probability-per-tier-turret",
localised_name = {"", "[color=red]", "Rampant", ": [/color]", {"mod-setting-name.rampant-alienmodule-compat-probability-per-tier-turret"}},
setting_type = "startup",
order = "1probabilities-2",
default_value = 0.08,
minimum_value = 0,
maximum_value = 1
},
{
type = "double-setting",
name = "rampant-alienmodule-compat-probability-per-tier-spawner",
localised_name = {"", "[color=red]", "Rampant", ": [/color]", {"mod-setting-name.rampant-alienmodule-compat-probability-per-tier-spawner"}},
setting_type = "startup",
order = "1probabilities-3",
default_value = 0.1,
minimum_value = 0,
maximum_value = 1
},
{
type = "int-setting",
name = "rampant-alienmodule-compat-min-count-unit",
localised_name = {"", "[color=red]", "Rampant", ": [/color]", {"mod-setting-name.rampant-alienmodule-compat-min-count-unit"}},
setting_type = "startup",
order = "2count-1-1",
default_value = 1,
minimum_value = 0
},
{
type = "int-setting",
name = "rampant-alienmodule-compat-min-count-turret",
localised_name = {"", "[color=red]", "Rampant", ": [/color]", {"mod-setting-name.rampant-alienmodule-compat-min-count-turret"}},
setting_type = "startup",
order = "2count-2-1",
default_value = 1,
minimum_value = 0
},
{
type = "int-setting",
name = "rampant-alienmodule-compat-min-count-spawner",
localised_name = {"", "[color=red]", "Rampant", ": [/color]", {"mod-setting-name.rampant-alienmodule-compat-min-count-spawner"}},
setting_type = "startup",
order = "2count-3-1",
default_value = 80,
minimum_value = 0
},
{
type = "int-setting",
name = "rampant-alienmodule-compat-max-count-unit",
localised_name = {"", "[color=red]", "Rampant", ": [/color]", {"mod-setting-name.rampant-alienmodule-compat-max-count-unit"}},
setting_type = "startup",
order = "2count-1-2",
default_value = 1,
minimum_value = 0
},
{
type = "int-setting",
name = "rampant-alienmodule-compat-max-count-turret",
localised_name = {"", "[color=red]", "Rampant", ": [/color]", {"mod-setting-name.rampant-alienmodule-compat-max-count-turret"}},
setting_type = "startup",
order = "2count-2-2",
default_value = 32,
minimum_value = 0
},
{
type = "int-setting",
name = "rampant-alienmodule-compat-max-count-spawner",
localised_name = {"", "[color=red]", "Rampant", ": [/color]", {"mod-setting-name.rampant-alienmodule-compat-max-count-spawner"}},
setting_type = "startup",
order = "2count-3-2",
default_value = 200,
minimum_value = 0
},
})