-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.lua
More file actions
62 lines (62 loc) · 1.22 KB
/
settings.lua
File metadata and controls
62 lines (62 loc) · 1.22 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
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
data:extend({
-- {
-- type = "bool-setting",
-- name = "PLORD_make_spawns_breaths_air",
-- setting_type = "startup",
-- default_value = false,
-- order = "a-a-a"
-- },
{
type = "bool-setting",
name = "PLORD_pluto_grenade",
setting_type = "startup",
default_value = false,
order = "a-a-b"
},
{
type = "bool-setting",
name = "PLORD_pluto_grenade_orange",
setting_type = "startup",
default_value = false,
order = "a-a-c"
},
{
type = "bool-setting",
name = "PLORD_disable_biters_blood",
setting_type = "startup",
default_value = false,
order = "a-a-d"
},
--[[
{
type = "bool-setting",
name = "PLORD_off_radar_bonus",
setting_type = "runtime-global",
default_value = false,
order = "a-a-a"
},
]]--
{
type = "bool-setting",
name = "PLORD_reset_recipes",
setting_type = "runtime-global",
default_value = false,
order = "a-a-b"
},
{
type = "double-setting",
name = "PLORD_sentry_eye_scan_interval",
setting_type = "runtime-global",
default_value = 2.0,
minimum_value = 0.0,
order = "a-a-c"
},
{
type = "int-setting",
name = "PLORD_sentry_eye_scan_tick",
setting_type = "runtime-global",
default_value = 250,
minimum_value = 100,
order = "a-a-d"
},
})