-
Notifications
You must be signed in to change notification settings - Fork 383
/
Copy pathdrowned_city_of_skalla.js
43 lines (43 loc) · 1.1 KB
/
drowned_city_of_skalla.js
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
[{
zoneRegex: /^The Drowned City Of Skalla$/,
triggers: [
{
id: 'Hrodric Tank',
regex: /:Hrodric Poisontongue starts using Rusting Claw/,
infoText: function(data) {
return data.role != 'tank' ? 'tank cleave' : '';
},
alertText: function(data) {
return data.role == 'tank' ? 'tank cleave' : '';
},
tts: 'tank cleave',
},
{
id: 'Hrodric Tail',
regex: /:Hrodric Poisontongue starts using Tail Drive/,
infoText: function(data) {
return data.role == 'tank' ? "tail cleave" : "";
},
alertText: function(data) {
return data.role != 'tank' ? "tail cleave" : "";
},
tts: 'tail attack',
},
{
id: 'Hrodric Eye',
regex: /:Hrodric Poisontongue starts using Eye Of The Fire/,
alertText: function(data) {
return "look away";
},
tts: 'look away',
},
{
id: 'Hrodric Words',
regex: /:Hrodric Poisontongue starts using Words Of Woe/,
infoText: function(data) {
return "avoid eye lasers";
},
tts: 'eye laser',
},
]
}]