forked from Sublimelime/Ruins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.lua
More file actions
36 lines (36 loc) · 1.03 KB
/
Copy pathsettings.lua
File metadata and controls
36 lines (36 loc) · 1.03 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
data:extend({
{
type = "int-setting",
name = "ruins-min-distance-from-spawn",
setting_type = "runtime-global",
default_value = 200,
order = "a",
},
{
type = "double-setting",
name = "ruins-large-ruin-chance",
setting_type = "runtime-global",
default_value = 0.005,
minimum_value = 0.0,
maximum_value = 1.0,
order = "d",
},
{
type = "double-setting",
name = "ruins-medium-ruin-chance",
setting_type = "runtime-global",
default_value = 0.02,
minimum_value = 0.0,
maximum_value = 1.0,
order = "c",
},
{
type = "double-setting",
name = "ruins-small-ruin-chance",
setting_type = "runtime-global",
default_value = 0.05,
minimum_value = 0.0,
maximum_value = 1.0,
order = "b",
}
})