forked from Bluefissure/cactbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drowned_city_of_skalla.js
72 lines (71 loc) · 2.03 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
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
'use strict';
[{
zoneRegex: /^The Drowned City Of Skalla$/,
triggers: [
{
id: 'Hrodric Tank',
regex: /:Hrodric Poisontongue starts using Rusting Claw/,
regexDe: /:Hrodric Giftzunge starts using Rostklaue/,
regexFr: /:Hrodric Le Médisant starts using Griffes De Ruine/,
infoText: function(data) {
return data.role != 'tank' ? 'tank cleave' : '';
},
alertText: function(data) {
return data.role == 'tank' ? 'tank cleave' : '';
},
tts: {
en: 'tank cleave',
de: 'tenk klief',
fr: 'tank clive',
},
},
{
id: 'Hrodric Tail',
regex: /:Hrodric Poisontongue starts using Tail Drive/,
regexDe: /:Hrodric Giftzunge starts using Schwanzfetzer/,
regexFr: /:Hrodric Le Médisant starts using Offensive Caudale/,
infoText: function(data) {
return data.role == 'tank' ? 'tail cleave' : '';
},
alertText: function(data) {
return data.role != 'tank' ? 'tail cleave' : '';
},
tts: {
en: 'tail attack',
de: 'schweifattacke',
fr: 'attaque queue',
},
},
{
id: 'Hrodric Eye',
regex: /:Hrodric Poisontongue starts using Eye Of The Fire/,
regexDe: /:Hrodric Giftzunge starts using Feuerauge/,
regexFr: /:Hrodric Le Médisant starts using Œil Des Flammes/,
alertText: function(data) {
return {
en: 'look away',
de: 'wegschauen',
fr: 'Détournez le regard',
};
},
},
{
id: 'Hrodric Words',
regex: /:Hrodric Poisontongue starts using Words Of Woe/,
regexDe: /:Hrodric Giftzunge starts using Wehklagende Worte/,
regexFr: /:Hrodric Le Médisant starts using Mots De Malheur/,
infoText: function(data) {
return {
en: 'avoid eye lasers',
de: 'Augenlaser ausweichen',
fr: 'Evitez les lasers',
};
},
tts: {
en: 'eye laser',
de: 'augen lesa',
fr: 'laser',
},
},
],
}];