forked from ReikaKalseki/EndgameCombat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.lua
75 lines (75 loc) · 2.66 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
data:extend({
{
type = "bool-setting",
name = "space-plasma",
setting_type = "startup",
default_value = false,
order = "r",
--localised_name = "Plasma turrets require space science",
--localised_description = "This gates the high-end plasma turrets behind the space science, and by extension the rocket silo.",
},
{
type = "bool-setting",
name = "space-nukes",
setting_type = "startup",
default_value = false,
order = "r",
--localised_name = "Nuclear shells require space science",
--localised_description = "This gates the high-end nuclear shells behind the space science, and by extension the rocket silo.",
},
{
type = "bool-setting",
name = "deconstruct-flesh",
setting_type = "startup",
default_value = true,
order = "r",
--localised_name = "Mark alien drops for deconstruction",
--localised_description = "Automatically marks drops from alien death for robot deconstruction after a configurable delay.",
},
{
type = "bool-setting",
name = "flesh-unit-drops",
setting_type = "startup",
default_value = true,
order = "r",
},
{
type = "int-setting",
name = "deconstruct-flesh-timer",
setting_type = "startup",
default_value = 10,
order = "r",
--localised_name = "Alien drop deconstruction delay",
--localised_description = "The length of time (in seconds) between an alien dropping an item and the item being marked for deconstruction. Shorter times clear items faster, but increase the risk of robots flying into regions still packed with enemies.",
},
{
type = "int-setting",
name = "radiation-timer",
setting_type = "startup",
default_value = 15,
order = "r",
--localised_name = "Radiation lifetime",
--localised_description = "The length of time (in seconds) that radiation from a neutron bomb lasts.",
},
{
type = "int-setting",
name = "crated-ammo-boost",
setting_type = "startup",
default_value = 10,
order = "r",
},
{
type = "bool-setting",
name = "rotting-flesh",
setting_type = "startup",
default_value = true,
order = "r",
},
{
type = "int-setting",
name = "render-quality",
setting_type = "runtime-per-user",
default_value = 3,
order = "r",
},
})