forked from quisquous/cactbot
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathorbonne_monastery.ts
1171 lines (1167 loc) · 42.1 KB
/
orbonne_monastery.ts
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import Conditions from '../../../../../resources/conditions';
import { Responses } from '../../../../../resources/responses';
import ZoneId from '../../../../../resources/zone_id';
import { RaidbossData } from '../../../../../types/data';
import { TriggerSet } from '../../../../../types/trigger';
export interface Data extends RaidbossData {
agriasGhostCleanse?: boolean;
halidom?: string[];
}
// TODO: grand cross "plummet" attacks have locations,
// so it should be possible to tell people where to go.
// This is not true for Mustadio's Maintenance.
const triggerSet: TriggerSet<Data> = {
id: 'TheOrbonneMonastery',
zoneId: ZoneId.TheOrbonneMonastery,
timelineFile: 'orbonne_monastery.txt',
timelineTriggers: [
{
// I know, I know, there's two warnings for this.
// But like seriously you've got like at least thirty years,
// and if you do it wrong it wipes the raid. So... /shrug??
id: 'Orbonne Cid Duskblade',
regex: /Duskblade/,
beforeSeconds: 15,
infoText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Get to your pads',
de: 'Geh auf Dein Feld',
fr: 'Allez sur votre tour',
ja: '各サークルに入る',
cn: '踩塔',
ko: '장판 밟기',
},
},
},
{
id: 'Orbonne Ultima Dominion Tether',
regex: /Demi-Virgo.*Tether/,
condition: (data) => data.role === 'tank',
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Pick up tether',
de: 'Verbindung abnehmen',
fr: 'Prenez le lien',
ja: '線を取る',
cn: '坦克接线',
ko: '선 가져오기',
},
},
},
],
triggers: [
{
id: 'Orbonne Harpy Devitalize',
type: 'StartsUsing',
netRegex: { id: '3778', source: 'Harpy', capture: false },
suppressSeconds: 10,
response: Responses.lookAway(),
},
{
id: 'Orbonne Mustadio Right Handgonne',
type: 'StartsUsing',
netRegex: { id: '373E', source: 'Mustadio', capture: false },
response: Responses.goLeft(),
},
{
id: 'Orbonne Mustadio Left Handgonne',
type: 'StartsUsing',
netRegex: { id: '373F', source: 'Mustadio', capture: false },
response: Responses.goRight(),
},
{
id: 'Orbonne Mustadio Last Testament',
type: 'StartsUsing',
netRegex: { id: '3737', source: 'Mustadio', capture: false },
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Point opening at Mustadio',
de: 'Richte Öffnung auf Mustadio',
fr: 'Pointez l\'ouverture vers Mustadio',
ja: '未解析の方角をボスに向ける',
cn: '脚下光环缺口对准boss',
ko: '문양이 빈 쪽을 무스타디오쪽으로 향하게 하기',
},
},
},
{
id: 'Orbonne Mustadio Arm Shot',
type: 'StartsUsing',
netRegex: { id: '3739', source: 'Mustadio' },
response: Responses.tankBuster(),
},
{
id: 'Orbonne Mustadio Searchlight',
type: 'HeadMarker',
netRegex: { id: '00A4' },
condition: Conditions.targetIsYou(),
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Searchlight on YOU',
de: 'Suchscheinwerfer auf DIR',
fr: 'Repérage sur VOUS',
ja: '外に放置',
cn: '远离人群放圈',
ko: '탐조등 대상자',
},
},
},
{
id: 'Orbonne Spread Marker',
type: 'HeadMarker',
netRegex: { id: '008B' },
condition: Conditions.targetIsYou(),
response: Responses.spread(),
},
{
id: 'Orbonne Agrias Thunder Slash',
type: 'StartsUsing',
netRegex: { id: '3866', source: 'Agrias' },
response: Responses.tankCleave(),
},
{
id: 'Orbonne Agrias Cleansing Strike',
type: 'StartsUsing',
netRegex: { id: '3854', source: 'Agrias', capture: false },
preRun: (data) => data.halidom = [],
delaySeconds: 50,
run: (data) => delete data.agriasGhostCleanse,
},
{
id: 'Orbonne Agrias Vacuum',
type: 'HeadMarker',
netRegex: { id: '00A5' },
condition: Conditions.targetIsYou(),
run: (data) => data.agriasGhostCleanse = true,
},
{
id: 'Orbonne Agrias Consecration',
type: 'StartsUsing',
netRegex: { id: '3850', source: 'Agrias', capture: false },
condition: (data) => !data.agriasGhostCleanse,
infoText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Pick up swords',
de: 'Schwerter aufnehmen',
fr: 'Prenez les épées',
ja: 'ソード(剣)を取る',
cn: '进入附近的剑标记圈',
ko: '검 들기',
},
},
},
{
id: 'Orbonne Agrias Halidom Inside',
type: 'Ability',
netRegex: { id: '3851', source: 'Halidom' },
run: (data, matches) => {
data.halidom ??= [];
data.halidom.push(matches.target);
},
},
{
id: 'Orbonne Agrias Halidom Outside',
type: 'Ability',
netRegex: { id: '3851', source: 'Halidom', capture: false },
delaySeconds: 0.5,
suppressSeconds: 10,
alertText: (data, _matches, output) => {
if (data.agriasGhostCleanse || data.halidom?.includes(data.me))
return;
return output.text!();
},
outputStrings: {
text: {
en: 'Use Swords On Jails',
de: 'Kristalle mit Schwert zerschlagen',
fr: 'Utilisez les épées sur les prisons',
ja: '(コンテンツアクション)剣で模造聖域を破る',
cn: '用剑击破囚牢',
ko: '감옥에 검 사용하기',
},
},
},
{
id: 'Orbonne Agrias Hallowed Bolt',
type: 'HeadMarker',
netRegex: { id: '00A6' },
condition: Conditions.targetIsYou(),
alarmText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Go To Center',
de: 'In die Mitte gehen',
fr: 'Allez au centre',
ja: '中央に入る',
cn: '前往中间',
ko: '중앙으로 이동',
},
},
},
{
id: 'Orbonne Agrias Adds Phase',
type: 'Ability',
netRegex: { id: '385D', source: 'Agrias', capture: false },
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Get Shield',
de: 'Schild nehmen',
fr: 'Prenez un bouclier',
ja: 'シールド(盾)を取る',
cn: '进入盾标记圈',
ko: '방패 들기',
},
},
},
{
id: 'Orbonne Agrias Mortal Blow',
type: 'StartsUsing',
netRegex: { id: '385E', source: 'Sword Knight', capture: false },
suppressSeconds: 5,
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Use Shield, Face Knights',
de: 'Schild benutzen, Ritter anschauen',
fr: 'Utilisez un bouclier, face aux chevaliers',
ja: '騎士に向けてシールドを使う',
cn: '面对剑骑使用盾牌',
ko: '방패 사용하고, 기사 바라보기',
},
},
},
{
id: 'Orbonne Agrias Extra Adds',
type: 'AddedCombatant',
netRegex: { name: 'Emblazoned Shield', capture: false },
suppressSeconds: 10,
infoText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Kill shields with sword',
de: 'Schilde mit Schwert zerstören',
fr: 'Détruisez les boucliers avec les épées',
ja: '剣で大盾を破れ',
cn: '用剑摧毁护盾',
ko: '방패에 검 사용하기',
},
},
},
{
id: 'Orbonne Agrias Judgment Blade',
type: 'StartsUsing',
netRegex: { id: '3857', source: 'Agrias', capture: false },
infoText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Use shield, face boss',
de: 'Schild benutzen, Boss anschauen',
fr: 'Utilisez un bouclier, face au boss',
ja: 'ボスに向いてシールドを使う',
cn: '面对boss使用盾牌',
ko: '방패 사용하고, 보스 바라보기',
},
},
},
{
id: 'Orbonne Agrias Divine Ruination',
type: 'StartsUsing',
netRegex: { id: '3858', source: 'Agrias', capture: false },
infoText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Use shield if tethered',
de: 'Schild benutzen, wenn verbunden',
fr: 'Utilisez un bouclier si lié',
ja: '線と繋ったらシールドを使う',
cn: '用盾牌抵挡连线',
ko: '선 연결되면 방패 사용하기',
},
},
},
{
id: 'Orbonne Cid Crush Helm Healer',
type: 'StartsUsing',
netRegex: { id: '3752', source: 'The Thunder God' },
condition: (data) => data.role === 'healer',
response: Responses.tankBuster('info'),
},
{
id: 'Orbonne Cid Crush Helm Feint',
type: 'StartsUsing',
netRegex: { id: '3752', source: 'The Thunder God', capture: false },
condition: (data) => data.CanFeint(),
infoText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Feint Tank Buster',
de: 'Tankbuster Zermürben',
fr: 'Évitez le Tank buster',
ja: 'タンクバスター(牽制使って)',
cn: '给牵制,坦克死刑',
ko: '성천폭격타 탱버',
},
},
},
{
id: 'Orbonne Cid Crush Helm Tank',
type: 'Ability',
netRegex: { id: '3753', source: 'The Thunder God' },
condition: Conditions.targetIsYou(),
response: Responses.tankBuster(),
},
{
id: 'Orbonne Cid Crush Armor Tank',
type: 'StartsUsing',
netRegex: { id: '3758', source: 'The Thunder God', capture: false },
condition: (data) => data.role === 'tank',
alarmText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Give Tether Away',
de: 'Verbindung abgeben',
fr: 'Éloignez-vous et donnez le lien',
ja: '線を取らない!',
cn: '不要接线',
ko: '선 건네주기',
},
},
},
{
id: 'Orbonne Cid Crush Armor',
type: 'Ability',
netRegex: { id: '3759', source: 'The Thunder God' },
condition: Conditions.targetIsYou(),
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Give Tether Away',
de: 'Verbindung abgeben',
fr: 'Éloignez-vous et donnez le lien',
ja: '線を次の人と交代',
cn: '获取连线受到一次伤害后转给下一个',
ko: '선 맞고, 다음 사람에게 건네주기',
},
},
},
{
id: 'Orbonne Cid Crush Accessory',
type: 'StartsUsing',
netRegex: { id: '375A', source: 'The Thunder God', capture: false },
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Kill Icewolf Adds',
de: 'Besiege die Eiswolf Adds',
fr: 'Tuez les Grêlons de glace',
ja: '氷狼を討つ',
cn: '速度消灭冰狼',
ko: '얼음 잡기',
},
},
},
{
id: 'Orbonne Cid Cleansing Strike',
type: 'Ability',
netRegex: { id: '3751', source: 'The Thunder God', capture: false },
condition: (data) => data.role === 'healer' || data.job === 'BLU',
suppressSeconds: 10,
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Heal To Full',
de: 'Vollheilen',
fr: 'Soignez complètement',
ja: '全員のHPを全回復',
cn: '奶满全队',
ko: '체력 풀피로',
},
},
},
{
id: 'Orbonne Cid Shadowblade Pads',
type: 'StartsUsing',
netRegex: { id: '3761', source: 'The Thunder God', capture: false },
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Stand on Pads',
de: 'Auf Felder stellen',
fr: 'Placez-vous sur les pads',
ja: '各サークルに入る',
cn: '踩塔',
ko: '장판 밟기',
},
},
},
{
id: 'Orbonne Cid Shadowblade Bubble',
type: 'HeadMarker',
netRegex: { id: '00AA' },
condition: Conditions.targetIsYou(),
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Drop Bubble In Back',
de: 'Blase hinten ablegen',
fr: 'Déposez les bulles derrière',
ja: '後ろに捨てる',
cn: '将身上圆圈放在圆型区域后方',
ko: '징 뒤쪽에 깔기',
},
},
},
{
id: 'Orbonne Cid Hallowed Bolt',
type: 'HeadMarker',
netRegex: { id: '0017' },
condition: Conditions.targetIsYou(),
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Bolt on YOU',
de: 'Blitz auf DIR',
fr: 'Éclair sur VOUS',
ja: '自分に無双稲妻突き',
cn: '无双惊电突点名',
ko: '번개찌르기 대상자',
},
},
},
{
id: 'Orbonne Cid Crush Weapon',
type: 'HeadMarker',
netRegex: { id: '005C' },
condition: Conditions.targetIsYou(),
response: Responses.getOut('alarm'),
},
{
id: 'Orbonne Cid Hallowed Bolt Stack',
type: 'HeadMarker',
netRegex: { id: '003E', capture: false },
suppressSeconds: 10,
response: Responses.stackMarker(),
},
{
id: 'Orbonne Cid Divine Ruination',
type: 'HeadMarker',
netRegex: { id: '006E' },
condition: Conditions.targetIsYou(),
alarmText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Point Line Outside',
de: 'Linie nach Außen',
fr: 'Pointez la ligne vers l\'extérieur',
ja: '(線形AoE)外周に向かって捨てる',
cn: '向场外引导连线',
ko: '성광폭렬파 바깥으로 빼기',
},
},
},
{
id: 'Orbonne Cid Holy Sword In',
type: 'StartsUsing',
netRegex: { id: '3750', source: 'The Thunder God', capture: false },
response: Responses.getIn(),
},
{
id: 'Orbonne Cid Holy Sword Out',
type: 'StartsUsing',
netRegex: { id: '374F', source: 'The Thunder God', capture: false },
response: Responses.getOut(),
},
{
id: 'Orbonne Cid Holy Sword Thunder Left',
type: 'StartsUsing',
netRegex: { id: '3749', source: 'The Thunder God', capture: false },
response: Responses.goLeft(),
},
{
id: 'Orbonne Cid Holy Sword Thunder Right',
type: 'StartsUsing',
netRegex: { id: '374A', source: 'The Thunder God', capture: false },
response: Responses.goRight(),
},
{
id: 'Orbonne Cid Holy Sword Three 1',
type: 'StartsUsing',
netRegex: { id: '374C', source: 'The Thunder God', capture: false },
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
// e.g. E / NE / NW platforms
en: 'Rotate right',
de: 'Im Uhrzeigersinn ausweichen',
fr: 'Tournez dans le sens anti-horaire',
ja: '右へ(反時計回り)',
cn: '向右移动避开',
ko: '오른쪽으로 돌기',
},
},
},
{
id: 'Orbonne Cid Holy Sword Three 2',
type: 'StartsUsing',
netRegex: { id: '374D', source: 'The Thunder God', capture: false },
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
// NW / NE / E platforms
en: 'Rotate left',
de: 'Schwertern im Uhrzeigersinn ausweichen',
fr: 'Tournez dans le sens horaire',
ja: '左へ(時計回り)',
cn: '向左移动避开',
ko: '왼쪽으로 돌기',
},
},
},
{
id: 'Orbonne Ultima Redemption',
type: 'StartsUsing',
netRegex: { id: '38AA', source: 'Ultima, The High Seraph' },
response: Responses.tankBuster(),
},
{
id: 'Orbonne Ultima Dark Cannonade',
type: 'HeadMarker',
netRegex: { id: '0037' },
condition: Conditions.targetIsYou(),
response: Responses.doritoStack(),
},
{
id: 'Orbonne Ultima Eruption',
type: 'HeadMarker',
netRegex: { id: '0066' },
condition: Conditions.targetIsYou(),
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Eruption on YOU',
de: 'Eruption auf DIR',
fr: 'Éruption sur vous',
ja: '自分にエラプション',
cn: '地火喷发点名',
ko: '불기둥 대상자',
},
},
},
{
id: 'Orbonne Ultima Flare IV',
type: 'HeadMarker',
netRegex: { id: '0057' },
condition: Conditions.targetIsYou(),
response: Responses.getOut('alarm'),
},
{
id: 'Orbonne Ultima Time Eruption',
type: 'StartsUsing',
netRegex: { id: '38CF', source: 'Demi-Belias', capture: false },
infoText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Stand on Slow Clock',
de: 'In der langsamen Uhr stehen',
fr: 'Placez-vous sur une horloge lente',
ja: '遅い時計で待機(早い方が爆発したらすぐ安置へ)',
cn: '站慢速时钟,快速炸后穿',
ko: '느린 시계 위로',
},
},
},
{
id: 'Orbonne Ultima Extreme Edge',
type: 'StartsUsing',
netRegex: { id: '38DA', source: 'Demi-Hashmal', capture: false },
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Look for Hashmal dash',
de: 'Nach Hashmal-Dash ausschau halten',
fr: 'Repérez Hashmal pour la ruée',
ja: 'ブーストエッジ見逃すな!',
cn: '观察左右躲避半场刀',
ko: '하쉬말 돌진 확인',
},
},
},
{
id: 'Orbonne Ultima Ultimate Illusion Healer',
type: 'StartsUsing',
netRegex: { id: '3895', source: 'Ultima, The High Seraph', capture: false },
condition: (data) => data.role === 'healer' || data.job === 'BLU',
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Heal Like Whoa',
de: 'Heilen was das Zeug hält',
fr: 'Soignez à mort',
ja: 'ヒーラー頑張って!',
cn: '用力奶!',
ko: '계속 힐 돌리기',
},
},
},
{
id: 'Orbonne Ultima Ultimate Illusion',
type: 'Ability',
netRegex: { id: '3895', source: 'Ultima, The High Seraph', capture: false },
condition: (data) => data.role !== 'healer',
// zzz
delaySeconds: 23.5,
alertText: (_data, _matches, output) => output.text!(),
outputStrings: {
text: {
en: 'Kill Ruination!',
de: 'Zerstörung vernichten',
fr: 'Tuez la Marque des déchus',
ja: '堕天の証を倒す',
cn: '速度消灭堕天之证',
ko: '타락의 증거 잡기',
},
},
},
{
id: 'Orbonne Ultima Acceleration Bomb',
type: 'GainsEffect',
netRegex: { effectId: '430' },
condition: Conditions.targetIsYou(),
delaySeconds: (_data, matches) => parseFloat(matches.duration) - 1,
response: Responses.stopEverything(),
},
],
timelineReplace: [
{
'locale': 'de',
'replaceSync': {
'Agrias': 'Agrias',
'Aspersory': 'Aspersorium',
'Dark Crusader': 'Düsterritter',
'Demi-Belias': 'Demi-Belias',
'Demi-Famfrit': 'Demi-Famfrit',
'Demi-Hashmal': 'Demi-Hashmallim',
'Dominion': 'Dominion',
'Early Turret': 'alt(?:e|er|es|en) Gefechtsturm',
'Emblazoned Shield': 'geschmückt(?:e|er|es|en) Schild',
'Ephemeral Knight': 'vergänglich(?:e|er|es|en) Ritter',
'Halidom': 'Falsch(?:e|er|es|en) Heiligtum',
'Harpy': 'Harpyie',
'I see it now': 'Ich sehe ihn in dir!',
'Iron Construct': 'Eisenkonstrukt',
'Mustadio': 'Mustadio',
'Ramza': 'Ramza',
'Sword Knight': 'Schwertritter',
'The Crystalline Gaol': 'Kristallkerker',
'The Realm of the Machinists': 'Reich der Maschinisten',
'The Realm of the Templars': 'Reich der Tempelritter',
'The Realm of the Thunder God': 'Reich des Donnergottes',
'(?<! )The Thunder God': 'Cidolfus',
'The lifeless alley': 'Leblosen Pfad',
'Ultima, the High Seraph': 'Cherub Ultima',
},
'replaceText': {
'--ghost stun--': '--Geist unterbrechen--',
'--crystal stun--': '--Kristall unterbrechen--',
'Analysis': 'Analyse',
'Arm Shot': 'Armschuss',
'Auralight': 'Aurastrahl',
'Balance Asunder': 'Bruch des Gleichgewichts',
'Ballistic Impact': 'Ballistischer Einschlag',
'Ballistic Missile': 'Ballistische Rakete',
'Cataclysm': 'Kosmischer Kataklysmus',
'Cleansing Flame': 'Flamme der Läuterung',
'Cleansing Strike': 'Säuberungsschlag',
'Colosseum': 'Kolosseum',
'Compress': 'Zerdrücken',
'Consecration': 'Konsekration',
'Control Tower': 'Turmkontrolle',
'Crush Accessory': 'Hagelkörner',
'Crush Armor': 'Helmspalter',
'Crush Helm': 'Himmelsbombardement',
'Crush Weapon': 'Jenseitsschrei',
'Dark Cannonade': 'Dunkler Blitz',
'Dark Ewer': 'Dunkler Wasserkrug',
'Dark Rite': 'Dunkler Brauch',
'Demi-Aquarius': 'Demi-Aquarius',
'Demi-Aries': 'Demi-Aries',
'Demi-Leo': 'Demi-Leo',
'Demi-Virgo Feet': 'Demi-Virgo Füße',
'Demi-Virgo Line(?!\/)': 'Demi-Virgo Linie',
'Demi-Virgo Line/Tether': 'Demi-Virgo Linie/Verbindung',
'Demi-Virgo Tether(?!\/)': 'Demi-Virgo Verbindung',
'Demi-Virgo Tether/Feet': 'Demi-Virgo Verbindung/Füße',
'Divine Light': 'Göttliches Licht',
'Divine Ruination': 'Göttliche Zerstörung',
'Duskblade': 'Dämmerklinge',
'Earth Hammer': 'Erdhammer',
'East/West March': 'Ost-/West-Marsch',
'Embrace': 'Umschließen',
'Energy Burst': 'Energiestoß',
'(?<![\\w| ])Eruption': 'Eruption',
'Extreme Edge': 'Extremkante',
'Flare IV': 'Giga-Flare',
'Grand Cross': 'Supernova',
'Hallowed Bolt': 'Geheiligter Blitz',
'Hammerfall': 'Hammerschlag',
'Heavenly Judgment': 'Urteil des Himmels',
'Holy IV': 'Giga-Sanctus',
'Infernal Wave': 'Infernowelle',
'Judgment Blade': 'Klinge des Urteils',
'L/R Handgonne': 'L/R Donnerbüchse',
'Last Testament': 'Letztes Vermächtnis',
'Leg Shot': 'Beinschuss',
'Maintenance': 'Wartung',
'Materialize': 'Trugbild',
'Mortal Blow': 'Tödlicher Hieb',
'Noahionto': 'Noahionto',
'Northswain\'s Strike': 'Schlag des Polarsterns',
'Ray of Light': 'Lichtstrahl',
'Redemption': 'Zerstörung',
'Sanction': 'Sanktion',
'Satellite Beam': 'Satellit',
'Searchlight': 'Suchscheinwerfer',
'Shadowblade': 'Schattenklinge',
'Shockwave': 'Schockwelle',
'Stack': 'Sammeln',
'Sword In/Out': 'Schwert Rein/Raus',
'Sword L/R': 'Schwert L/R',
'Sword Out/In': 'Schwert Raus/Rein',
'Sword Three In A Row': 'Schwertreihenschlag',
'Thunder Slash': 'Donnerhieb',
'Time Eruption': 'Zeiteruption',
'Towerfall': 'Turmsturz',
'Ultimate Illusion': 'Ultimative Illusion',
'Marks': 'Markierungen',
'(?<!Sword )In/Out': 'Rein/Raus',
'(?<!Sword )Out/In': 'Raus/Rein',
},
},
{
'locale': 'fr',
'replaceSync': {
'Agrias': 'Agrias',
'Aspersory': 'aiguière bénie',
'Dark Crusader': 'conquérant sombre',
'Demi-Belias': 'Demi-Belias',
'Demi-Famfrit': 'Demi-Famfrit',
'Demi-Hashmal': 'Demi-Hashmal',
'Dominion': 'Dominion',
'Early Turret': 'tourelle archaïque',
'Emblazoned Shield': 'pavois miroitant',
'Ephemeral Knight': 'chevalier évanescent',
'Halidom': 'faux sanctuaire',
'Harpy': 'harpie',
'I see it now': 'À vous, maintenant',
'Iron Construct': 'bâtisseur de fer',
'Mustadio': 'Mustadio',
'Ramza': 'Ramza',
'Sword Knight': 'chevalier à l\'épée',
'The Crystalline Gaol': 'la Geôle cristalline',
'The Realm of the Machinists': 'cloître de l\'ingénieur',
'The Realm of the Templars': 'cloître de la chevalière sacrée',
'The Realm of the Thunder God': 'cloître du Dieu de la Foudre',
'(?<! )The Thunder God': 'Cid le Dieu de la Foudre',
'The lifeless alley': 'corridors silencieux',
'Ultima, the High Seraph': 'Ultima la Grande Séraphine',
},
'replaceText': {
'--crystal stun--': '--Étourdissement et Cristaux--',
'--ghost stun--': '--Étourdissement et Fantômes--',
'Analysis': 'Analyse',
'Arm Shot': 'Visée des bras',
'Auralight': 'Rayon auralithe',
'Balance Asunder': 'Bouleversement de l\'équilibre',
'Ballistic Impact': 'Impact de missile',
'Ballistic Missile': 'Missiles balistiques',
'Cataclysm': 'Cataclysme cosmique',
'Cleansing Flame': 'Irradiation divine',
'Cleansing Strike': 'Impact purifiant',
'Colosseum': 'Arène des Braves',
'Compress': 'Écraser',
'Consecration': 'Joug sanctifié',
'Control Tower': 'Tour de contrôle',
'Crush Accessory': 'Grêlons fracassants',
'Crush Armor': 'Brèche insidieuse',
'Crush Helm': 'Bombardement céleste',
'Crush Weapon': 'Cri de l\'au-delà',
'Dark Cannonade': 'Bombardement ténébreux',
'Dark Ewer': 'Aiguières ténèbreuses',
'Dark Rite': 'Cérémonie ténébreuse',
'Demi-Aquarius': 'Demi-Verseau',
'Demi-Aries': 'Demi-Bélier',
'Demi-Leo': 'Demi-Lion',
'Demi-Virgo Feet': 'Demi-Vierge pieds',
'Demi-Virgo Line(?!\/)': 'Demi-Vierge ligne',
'Demi-Virgo Line/Tether': 'Demi-Vierge ligne/lien',
'Demi-Virgo Tether(?!\/)': 'Demi-Vierge lien',
'Demi-Virgo Tether/Feet': 'Demi-Vierge lien/pieds',
'Divine Light': 'Onde de lumière évanescente',
'Divine Ruination': 'Ire céleste',
'Duskblade': 'Lame sombre',
'Earth Hammer': 'Marteau tellurique',
'East/West March': 'Marche Est/Ouest',
'Embrace': 'Étreinte',
'Energy Burst': 'Éruption d\'énergie',
'(?<![\\w| ])Eruption': 'Éruption',
'Extreme Edge': 'Taille suprême',
'Flare IV': 'Giga Brasier',
'Grand Cross': 'Croix suprême',
'Hallowed Bolt': 'Éclair sacré',
'Hammerfall': 'Aplatissoir',
'Heavenly Judgment': 'Jugement céleste',
'Holy IV(?! Ground)': 'Giga Miracle',
'Holy IV Ground': 'Giga Miracle au sol',
'(?<!\\w)In/Out': 'à l\'intérieur/extérieur',
'Infernal Wave': 'Onde infernale',
'Judgment Blade': 'Lame du jugement',
'Handgonne': 'Mitraillage',
'Last Testament': 'Dernier testament',
'Leg Shot': 'Visée des jambes',
'L/R': 'G/D',
'Maintenance': 'Maintenance',
'Marks': 'marques',
'Materialize': 'Apparition',
'Mortal Blow': 'Frappe brutale',
'Noahionto': 'Noahionto',
'Northswain\'s Strike': 'Frappe de l\'Étoile Polaire',
'(?<!\\w)Out/In': 'à l\'extérieur/intérieur',
'Ray of Light': 'Onde de lumière',
'Redemption': 'Destruction',
'Sanction': 'Sanction',
'Satellite Beam': 'Rayon satellite',
'Searchlight': 'Repérage lumineux',
'Shadowblade': 'Lame des ténèbres',
'Shockwave': 'Onde de choc',
'Stack': 'Packez-vous',
'Sword(?! Three In A Row)': 'Épée',
'Sword Three In A Row': '3 coups d\'épée à la suite',
'Thunder Slash': 'Foudrolle',
'Time Eruption': 'Éruption à retardement',
'Towerfall': 'Écroulement',
'Ultimate Illusion': 'Fantaisie finale',
},
},
{
'locale': 'ja',
'replaceSync': {
'Agrias': '聖騎士アグリアス',
'Aspersory': '聖雲の水瓶',
'Dark Crusader': 'ダーククルセイダー',
'Demi-Belias': 'デミ・ベリアス',
'Demi-Famfrit': 'デミ・ファムフリート',
'Demi-Hashmal': 'デミ・ハシュマリム',
'Dominion': 'ドミニオン',
'Early Turret': '古の機工兵器',
'Emblazoned Shield': '光輝の大盾',
'Ephemeral Knight': '幻影の騎士',
'Halidom': '模造聖域',
'Harpy': 'ハーピー',
'I see it now': '我ノ力、スベテ解キ放トウゾ……!',
'Iron Construct': '労働型鉄巨人',
'Mustadio': '機工士ムスタディオ',
'Ramza': '勇者ラムザ',
'Sword Knight': '剣の騎士',
'The Crystalline Gaol': '水晶の監獄',
'The Realm of the Machinists': '機工士の領域',
'The Realm of the Templars': '聖騎士の領域',
'The Realm of the Thunder God': '雷神の領域',
'(?<! )The Thunder God': '雷神シド',
'The lifeless alley': '命なき街路',
'Ultima, the High Seraph': '聖天使アルテマ',
},
'replaceText': {
'--ghost stun--': 'ゴーストスタン',
'--crystal stun--': 'クリスタルスタン',
'Analysis': 'アナライズ',
'Arm Shot': '腕を狙う',
'Auralight': '聖石光',
'Balance Asunder': 'バランスブレイク',
'Ballistic Impact': 'ミサイル着弾',
'Ballistic Missile': 'ミサイル発射',
'Cataclysm': '天変地異',
'Cleansing Flame': '聖光焼却撃',
'Cleansing Strike': '乱命割殺打',
'Colosseum': '剣闘技場',
'Compress': '圧縮する',
'Consecration': '聖域束縛式',
'Control Tower': '統制の塔',
'Crush Accessory': '咬撃氷狼破',
'Crush Armor': '強甲破点突き',
'Crush Helm': '星天爆撃打',
'Crush Weapon': '冥界恐叫打',
'Dark Cannonade': '闇の砲撃',
'Dark Ewer': '暗雲の水瓶',
'Dark Rite': '闇の儀式',
'Demi-Aquarius': 'デミ・アクエリアス',
'Demi-Aries': 'デミ・アリエス',
'Demi-Leo': 'デミ・レオ',
'Demi-Virgo Feet': 'デミ・ヴァルゴ(足)',
'Demi-Virgo Line(?!\/)': 'デミ・ヴァルゴ(直線)',
'Demi-Virgo Line/Tether': 'デミ・ヴァルゴ(直線/線繋ぐ)',
'Demi-Virgo Tether(?!\/)': 'デミ・ヴァルゴ(線繋ぐ)',
'Demi-Virgo Tether/Feet': 'デミ・ヴァルゴ(線繋ぐ/足)',
'Divine Light': '幻光波',
'Divine Ruination': '聖光爆裂破',
'Duskblade': '暗の剣',
'Earth Hammer': '大地のハンマー',
'East/West March': '東/西マーチ',
'Embrace': '抱締',
'Energy Burst': 'エネルギーバースト',
'(?<![\\w| ])Eruption': 'エラプション',
'Extreme Edge': 'ブーストエッジ',
'Flare IV': 'フレアジャ',
'Grand Cross': 'グランドクロス',
'Hallowed Bolt(?! )': '無双稲妻突き',
'Hallowed Bolt In/Out': '無双稲妻突き (入る/出る)',
'Hallowed Bolt Marks': '無双稲妻突き (マーク)',
'Hallowed Bolt Out/In': '無双稲妻突き (出る/入る)',
'Hammerfall': 'ハンマークラッシュ',
'Heavenly Judgment': 'ヘヴンリージャッジメント',
'Holy IV(?! )': 'ホーリジャ',
'Holy IV Ground': 'ホーリジャ (床)',
'Infernal Wave': 'インファーナルウェーブ',
'Judgment Blade': '不動無明剣',
'L/R Handgonne': '左舷掃射/右舷掃射',
'Last Testament': 'ファイナルテスタメント',
'Leg Shot': '足を狙う',
'Maintenance': 'メンテナンス',
'Materialize': '幻出',
'Mortal Blow': '強打',
'Noahionto': 'ノアヒオント',
'Northswain\'s Strike': '北斗骨砕打',
'Ray of Light': '光波',
'Redemption': '破壊',
'Sanction': '制裁の刃',
'Satellite Beam': 'サテライトビーム',
'Searchlight': 'サーチライト',
'Shadowblade': '闇の剣',
'Shockwave': '衝撃波',
'Stack': '集合',
'Sword In/Out': '雷神式聖剣技(入る/出る)',
'Sword L/R': '雷神式聖剣技(左/右)',
'Sword Out/In': '雷神式聖剣技(出る/入る)',
'Sword Three In A Row': '雷神式聖剣技(三つの剣)',
'Thunder Slash': '雷鳴剣',
'Time Eruption': 'タイムエラプション',
'Towerfall': '倒壊',
'Ultimate Illusion': '究極幻想',
},
},
{
'locale': 'cn',
'replaceSync': {
'Agrias': '圣骑士阿格莉亚丝',
'Aspersory': '圣云水瓶',
'Dark Crusader': '黑暗十字军',
'Demi-Belias': '亚灵贝利亚斯',
'Demi-Famfrit': '亚灵法姆弗里特',
'Demi-Hashmal': '亚灵哈修马利姆',
'Dominion': '主天使',
'Early Turret': '古代机工兵器',
'Emblazoned Shield': '光辉的大盾',
'Ephemeral Knight': '幻影骑士',
'Halidom': '仿制圣域',
'Harpy': '哈比鸟',
'I see it now': '我将释放全部力量……',
'Iron Construct': '劳动型铁巨人',
'Mustadio': '机工士姆斯塔迪奥',
'Ramza': '勇者拉姆萨',
'Sword Knight': '剑之骑士',
'The Crystalline Gaol': '水晶监狱',
'The Realm of the Machinists': '机工士的领域',
'The Realm of the Templars': '圣骑士的领域',
'The Realm of the Thunder God': '雷神的领域',
'(?<! )The Thunder God': '雷神西德',
'The lifeless alley': '无命街路',
'Ultima, the High Seraph': '圣天使阿尔蒂玛',
},
'replaceText': {
'--ghost stun--': '幽灵击晕',
'--crystal stun--': '水晶击晕',
'Analysis': '分析',
'Arm Shot': '击腕',
'Auralight': '圣石光',
'Balance Asunder': '平衡崩坏',
'Ballistic Impact': '导弹命中',
'Ballistic Missile': '导弹发射',
'Cataclysm': '天崩地裂',
'Cleansing Flame': '圣光烧却击',
'Cleansing Strike': '乱命割杀打',
'Colosseum': '剑斗技场',