-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.lua
50 lines (50 loc) · 1.17 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
data:extend({
{
type = "int-setting",
name = "concreep range",
setting_type = "runtime-global",
default_value = 100,
minimum_value = 0,
maximum_value = 100,
order = "01"
},
{
type = "int-setting",
name = "concreep construction factor",
setting_type = "runtime-global",
default_value = 10,
minimum_value = 1,
maximum_value = 20,
order = "02"
},
{
type = "bool-setting",
name = "ignore placed tiles",
setting_type = "runtime-global",
default_value = true,
order = "03"
},
{
type = "string-setting",
name = "alternate pavement",
setting_type = "runtime-global",
default_value = "refined-concrete",
order = "04"
},
{
type = "bool-setting",
name = "debug mode",
setting_type = "runtime-global",
default_value = false,
order = "05"
},
{
type = "int-setting",
name = "tick count",
setting_type = "runtime-global",
default_value = 1800,
minimum_value = 600,
maximum_value = 18000,
order = "06"
}
})