-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapex_settings.yaml
111 lines (111 loc) · 5.63 KB
/
apex_settings.yaml
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
apex:
alternator:
horizontal_range: 0
min_vertical: 4
max_vertical: 5
min_firerate: 0.03
max_firerate: 0.04
bonus_offset: '0'
horizontal_offset: '(-horizontal_range * offset_const) / offset_const'
vertical_offset: 'random.randrange(min_vertical * offset_const, max_vertical * offset_const, 1) / offset_const'
time_offset: 'random.randrange(min_firerate * offset_const, max_firerate * offset_const, 1) / offset_const'
spitfire:
horizontal_range: 0
min_vertical: 4
max_vertical: 5
min_firerate: 0.06
max_firerate: 0.07
bonus_offset: '0'
horizontal_offset: '(-horizontal_range * offset_const) / offset_const'
vertical_offset: 'random.randrange(min_vertical * offset_const, max_vertical * offset_const, 1) / offset_const'
time_offset: 'random.randrange(min_firerate * offset_const, max_firerate * offset_const, 1) / offset_const'
rampage:
horizontal_range: 0
min_vertical: 3
max_vertical: 4
min_firerate: 0.07
max_firerate: 0.08
bonus_offset: '0'
horizontal_offset: '(-horizontal_range * offset_const) / offset_const'
vertical_offset: 'random.randrange(min_vertical * offset_const, max_vertical * offset_const, 1) / offset_const'
time_offset: 'random.randrange(min_firerate * offset_const, max_firerate * offset_const, 1) / offset_const'
havoc:
horizontal_range: 0
min_vertical: 3
max_vertical: 4
min_firerate: 0.02
max_firerate: 0.03
bonus_offset: 'max(0.1, (max(0.1,2.5 + (-0.15 + start - time.time()))))'
horizontal_offset: '(-horizontal_range * offset_const) * bonus_offset / offset_const'
vertical_offset: 'random.randrange(min_vertical * offset_const, max_vertical * offset_const, 1) * bonus_offset / offset_const'
time_offset: '(random.randrange(min_firerate * offset_const, max_firerate * offset_const, 1) / bonus_offset) / offset_const'
volt:
horizontal_range: 0
min_vertical: 1
max_vertical: 2
min_firerate: 0.03
max_firerate: 0.04
bonus_offset: 'max(0.9, (max(0.9,3 + (-0.1 + start - time.time()))))'
horizontal_offset: '(-horizontal_range * offset_const) * bonus_offset / offset_const'
vertical_offset: 'random.randrange(min_vertical * offset_const, max_vertical * offset_const, 1) * bonus_offset / offset_const'
time_offset: '(random.randrange(min_firerate * offset_const, max_firerate * offset_const, 1) / bonus_offset) / offset_const'
flatline:
horizontal_range: 1
min_vertical: 2
max_vertical: 3
min_firerate: 0.03
max_firerate: 0.04
bonus_offset: 'max(0.5, (max(0.5,2 + (-0.05 + start - time.time()))))'
horizontal_offset: '(horizontal_range * offset_const) * bonus_offset / offset_const'
vertical_offset: '(random.randrange(min_vertical * offset_const, max_vertical * offset_const, 1) * bonus_offset) / offset_const'
time_offset: '(random.randrange(min_firerate * offset_const, max_firerate * offset_const, 1) / bonus_offset) / offset_const'
r-301:
horizontal_range: 1
min_vertical: 2
max_vertical: 3
min_firerate: 0.03
max_firerate: 0.04
bonus_offset: 'max(0.5, (max(0.5,2 + (-0.05 + start - time.time()))))'
horizontal_offset: '(-horizontal_range * offset_const) * bonus_offset / offset_const'
vertical_offset: '(random.randrange(min_vertical * offset_const, max_vertical * offset_const, 1) * bonus_offset) / offset_const'
time_offset: '(random.randrange(min_firerate * offset_const, max_firerate * offset_const, 1) / bonus_offset) / offset_const'
tester:
horizontal_range: 0
min_vertical: 3
max_vertical: 4
min_firerate: 0.03
max_firerate: 0.04
bonus_offset: 'max(0.5, (max(0.5,3 + (-0.05 + start - time.time()))))'
horizontal_offset: '(-horizontal_range * offset_const) * bonus_offset / offset_const'
vertical_offset: 'random.randrange(min_vertical * offset_const, max_vertical * offset_const, 1) / offset_const'
time_offset: '(random.randrange(min_firerate * offset_const, max_firerate * offset_const, 1) / bonus_offset) / offset_const'
car:
horizontal_range: 1
min_vertical: 3
max_vertical: 4
min_firerate: 0.03
max_firerate: 0.04
bonus_offset: 'max(0.8, (max(0.8,1.90 + (-0.03 + start - time.time()))))'
horizontal_offset: '(horizontal_range * offset_const) * bonus_offset / offset_const'
vertical_offset: '(random.randrange(min_vertical * offset_const, max_vertical * offset_const, 1) * bonus_offset) / offset_const'
time_offset: '(random.randrange(min_firerate * offset_const, max_firerate * offset_const, 1) / bonus_offset) / offset_const'
r99:
horizontal_range: 1
min_vertical: 3
max_vertical: 4
min_firerate: 0.03
max_firerate: 0.04
bonus_offset: 'max(0.9, (max(0.9,1.95 + (-0.03 + start - time.time()))))'
horizontal_offset: '(-horizontal_range * offset_const) * bonus_offset / offset_const'
vertical_offset: '(random.randrange(min_vertical * offset_const, max_vertical * offset_const, 1) * bonus_offset) / offset_const'
time_offset: '(random.randrange(min_firerate * offset_const, max_firerate * offset_const, 1) / bonus_offset) / offset_const'
re-45:
horizontal_range: 1
min_vertical: 3
max_vertical: 4
min_firerate: 0.03
max_firerate: 0.04
bonus_offset: 'max(1, (max(1,2 + (start - time.time()))))'
horizontal_offset: '(-horizontal_range * offset_const) / offset_const'
vertical_offset: 'random.randrange(min_vertical * offset_const, max_vertical * offset_const, 1) / offset_const'
time_offset: '(random.randrange(min_firerate * offset_const, max_firerate * offset_const, 1) / bonus_offset) / offset_const'