forked from ReikaKalseki/Geothermal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.lua
78 lines (78 loc) · 2.34 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
data:extend({
{
type = "bool-setting",
name = "geothermal-needs-water",
setting_type = "startup",
default_value = false,
order = "r",
--localised_name = "Geothermal wells need water input",
--localised_description = "Should the geothermal wells require water input, or should the water be 'provided' by the well? Requiring input makes logistics much more complicated. Note that changing this means you will have to replace any existing wells.",
},
{
type = "double-setting",
name = "geothermal-fluid-production",
setting_type = "startup",
default_value = 1,
order = "r",
minimum_value = 0.25,
maximum_value = 4,
},
{
type = "double-setting",
name = "geothermal-power-factor",
setting_type = "startup",
default_value = 1,
order = "r",
minimum_value = 0.5,
maximum_value = 10,
},
{
type = "double-setting",
name = "geothermal-frequency",
setting_type = "startup",
default_value = 1,
order = "r",
minimum_value = 0.25,
maximum_value = 4,
},
{
type = "double-setting",
name = "geothermal-size",
setting_type = "startup",
default_value = 1,
order = "r",
minimum_value = 0.33,
maximum_value = 6,
},
{
type = "bool-setting",
name = "geothermal-color",
setting_type = "startup",
default_value = true,
order = "r",
},
{
type = "string-setting",
name = "geothermal-spawn-rules",
setting_type = "startup",
default_value = "volcanic",
allowed_values = {"volcanic", "volcanic-and-snow", "volcanic-snow-and-red-desert", "everywhere"},
order = "r",
},
{
type = "bool-setting",
name = "thermal-wagon",
setting_type = "startup",
default_value = true,
order = "r",
},
{
type = "double-setting",
name = "geothermal-byproduct-rate",
setting_type = "startup",
default_value = 1,
order = "r",
minimum_value = 0.125,
maximum_value = 5,
},
})