-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.lua
80 lines (78 loc) · 1.97 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
79
80
data:extend(
{
-- startup
{
type = "int-setting",
name = "JasonsTweaks-arbitary",
setting_type = "startup",
default_value = 0
},
-- global
{
type = "string-setting",
name = "JasonsTweaks-rocket-type",
setting_type = "runtime-global",
default_value = "explosive-rocket",
allowed_values = {"rocket", "explosive-rocket", "heavy-explosive-rocket-projectile"},
order = "a-a",
},
{
type = "int-setting",
name = "JasonsTweaks-target-radius",
setting_type = "runtime-global",
default_value = 16,
allowed_values = {16, 24, 32, 40, 48, 56, 64},
order = "a-b",
},
{
type = "int-setting",
name = "JasonsTweaks-max-target-count",
setting_type = "runtime-global",
default_value = 5,
minimum_value = 1,
maximum_value = 20,
order = "a-c",
},
{
type = "int-setting",
name = "JasonsTweaks-projectiles-per-entity",
setting_type = "runtime-global",
default_value = 3,
minimum_value = 1,
maximum_value = 10,
order = "a-d",
},
{
type = "bool-setting",
name = "JasonsTweaks-dogfight",
setting_type = "runtime-global",
default_value = true,
allowed_values = {true, false},
order = "a-e",
},
-- per player
{
type = "string-setting",
name = "JasonsTweaks-target-color",
setting_type = "runtime-per-user",
default_value = "copy",
allowed_values = {"electricity", "copy", "not-allowed", "entity"},
order = "a-a",
},
{
type = "bool-setting",
name = "JasonsTweaks-plane-zoom-enabled",
setting_type = "runtime-per-user",
default_value = true,
allowed_values = {true, false},
order = "a-b",
},
{
type = "double-setting",
name = "JasonsTweaks-plane-zoom",
setting_type = "runtime-per-user",
default_value = 0.175,
allowed_values = {0.125, 0.150, 0.175, 0.200, 0.225},
order = "a-c",
},
})