Skip to content

Commit f2baea6

Browse files
committed
raidboss: o12s optimized blade dance triggers
Untested, but ids grabbed from fflogs.
1 parent a74b116 commit f2baea6

File tree

1 file changed

+33
-2
lines changed

1 file changed

+33
-2
lines changed

ui/raidboss/data/triggers/o12s.js

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
// O12S - Alphascape 4.0 Savage
44

5-
// TODO: Optimized Blade Dance
6-
75
[{
86
zoneRegex: /^Alphascape V4.0 \(Savage\)$/,
97
timelineFile: 'o12s.txt',
@@ -65,6 +63,39 @@
6563
}
6664
},
6765
},
66+
{
67+
id: 'O12S Optimized Blade Dance',
68+
regex: / 14:(?:334B|334C):Omega(?:-M)? starts using (?:Unknown_334B|Unknown_334C|Optimized Blade Dance) on (\y{Name})/,
69+
condition: function(data, matches) {
70+
return data.me == matches[1] || data.role == 'healer';
71+
},
72+
suppressSeconds: 1,
73+
alertText: function(data, matches) {
74+
if (matches[1] == data.me) {
75+
return {
76+
en: 'Tank Buster on YOU',
77+
de: 'Tenkbuster auf DIR',
78+
fr: 'Tankbuster sur VOUS',
79+
};
80+
}
81+
if (data.role == 'healer') {
82+
return {
83+
en: 'Tank Busters',
84+
de: 'Tenkbuster',
85+
fr: 'Tankbuster',
86+
};
87+
}
88+
},
89+
tts: function(data, matches) {
90+
if (matches[1] == data.me) {
91+
return {
92+
en: 'buster',
93+
de: 'basta',
94+
fr: 'tankbuster',
95+
};
96+
}
97+
},
98+
},
6899
{
69100
id: 'O12S Electric Slide Marker',
70101
regex: /1B:........:(\y{Name}):....:....:(009[12345678]):0000:0000:0000:/,

0 commit comments

Comments
 (0)