-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.lua
More file actions
24 lines (24 loc) · 765 Bytes
/
Copy pathsettings.lua
File metadata and controls
24 lines (24 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
data:extend({
{
type = "double-setting",
name = "sars-base-unlock-chance",
setting_type = "runtime-global",
default_value = 5.0, -- 5%
minimum_value = 0,
maximum_value = 100,
order = "a",
localised_name = {"mod-setting-name.sars-base-unlock-chance"},
localised_description = {"mod-setting-description.sars-base-unlock-chance"},
},
{
type = "double-setting",
name = "sars-unlock-chance-increase",
setting_type = "runtime-global",
default_value = 0.1, -- 0.5% per tech
minimum_value = 0,
maximum_value = 100,
order = "b",
localised_name = {"mod-setting-name.sars-unlock-chance-increase"},
localised_description = {"mod-setting-description.sars-unlock-chance-increase"},
}
})