-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathskill_descriptions.json
More file actions
6491 lines (6491 loc) · 271 KB
/
Copy pathskill_descriptions.json
File metadata and controls
6491 lines (6491 loc) · 271 KB
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
{
"Paragon": {
"A1": {
"name": "Power Drain",
"desc": "Attacks 1 enemy. Has a 50% chance of decreasing the target's Turn Meter by 10%. Damage inflicted is proportional to DEF.",
"skill_type_id": 18901
},
"A2": {
"name": "Damage Control",
"desc": "Places an [Unkillable] buff and a 25% [Increase ATK] buff on a target ally for 2 turns.",
"skill_type_id": 18902
},
"A3": {
"name": "Life Shackles",
"desc": "Attacks 3 times at random. Each hit has a 30% chance of placing a 100% [Heal Reduction] debuff and a 50% [Decrease ATK] debuff for 2 turns. Damage inflicted is proportional to DEF.",
"skill_type_id": 18904
},
"A4": {
"name": "Damage Control",
"desc": "Places an [Unkillable] buff and a 25% [Increase ATK] buff on a target ally for 2 turns.",
"skill_type_id": 18902
},
"A5": {
"name": "Life Shackles",
"desc": "Attacks 3 times at random. Each hit has a 30% chance of placing a 50% [Heal Reduction] debuff and a 25% [Decrease ATK] debuff for 2 turns. Damage inflicted is proportional to DEF.",
"skill_type_id": 18903
},
"A6": {
"name": "Damage Control",
"desc": "Places an [Unkillable] buff and a 25% [Increase ATK] buff on a target ally for 2 turns.",
"skill_type_id": 18902
},
"A7": {
"name": "Life Shackles",
"desc": "Attacks 3 times at random. Each hit has a 30% chance of placing a 50% [Heal Reduction] debuff and a 25% [Decrease ATK] debuff for 2 turns. Damage inflicted is proportional to DEF.",
"skill_type_id": 18903
}
},
"Husk": {
"A1": {
"name": "Burning Iron",
"desc": "Attacks 1 enemy 2 times. Has a 20% chance of placing a [Provoke] debuff for 1 turn.",
"skill_type_id": 12101
},
"A2": {
"name": "Despair",
"desc": "Attacks all enemies. Has a 35% chance of placing a [Stun] debuff for 1 turn. Damage inflicted is proportional to enemy MAX HP.",
"skill_type_id": 12102
},
"A3": {
"name": "Retaliate",
"desc": "Attacks 1 enemy. Damage increases according to this Champion's current HP.",
"skill_type_id": 12103
}
},
"Ma'Shalled": {
"A1": {
"name": "Bloodsucker",
"desc": "Attacks 1 enemy. Heals this Champion by 30% of the damage inflicted. \r\n\r\nWill then attack enemies under [Leech] debuffs.",
"skill_type_id": 9301
},
"A2": {
"name": "Tornado",
"desc": "Places a 30% [Increase SPD] and a 30% [Increase C. DMG] buff on all allies for 2 turns. \r\n\r\nPlaces a [True Fear] and a [Leech] debuff on all enemies for 2 turns.\r\n\r\nGrants an Extra Turn.",
"skill_type_id": 9304
},
"A3": {
"name": "Open Wounds",
"desc": "Attacks 1 enemy. Has an 80% chance of stealing all buffs from the target before attacking. \r\n\r\nPlaces a 100% [Heal Reduction] debuff for 2 turns. \r\n\r\nAlso places two 15% [Continuous Heal] buffs on this Champion for 3 turns. \r\n\r\nDamage increases by 50% against targets that have no buffs.",
"skill_type_id": 9303
},
"A4": {
"name": "Tornado",
"desc": "Places a 30% [Increase SPD] and a 30% [Increase C. DMG] buff on all allies for 2 turns. \r\n\r\nPlaces a [True Fear] and a [Leech] debuff on all enemies for 2 turns.\r\n\r\nGrants an Extra Turn.",
"skill_type_id": 9304
},
"A5": {
"name": "Open Wounds",
"desc": "Attacks 1 enemy. Has an 80% chance of stealing all buffs from the target before attacking. \r\n\r\nPlaces a 100% [Heal Reduction] debuff for 2 turns. \r\n\r\nAlso places two 15% [Continuous Heal] buffs on this Champion for 3 turns. \r\n\r\nDamage increases by 50% against targets that have no buffs.",
"skill_type_id": 9303
}
},
"Soulbond Bowyer": {
"A1": {
"name": "Ancestral Guidance",
"desc": "Attacks all enemies. Has an additional 25% chance of inflicting a critical hit.",
"skill_type_id": 44401
},
"A2": {
"name": "Infused Arrow",
"desc": "Attacks 1 enemy. Has an additional 25% chance of inflicting a critical hit. Will ignore 75% of the target’s DEF.",
"skill_type_id": 44402
},
"A3": {
"name": "Soulbound Shot",
"desc": "Attacks 1 enemy. Has an additional 25% chance of inflicting a critical hit. Also has a 75% chance of fully depleting the target’s Turn Meter.",
"skill_type_id": 44404
},
"A4": {
"name": "Infused Arrow",
"desc": "Attacks 1 enemy. Has an additional 25% chance of inflicting a critical hit. Will ignore 75% of the target’s DEF.",
"skill_type_id": 44402
},
"A5": {
"name": "Soulbound Shot",
"desc": "Attacks 1 enemy. Has an additional 25% chance of inflicting a critical hit.",
"skill_type_id": 44403
}
},
"Tallia": {
"A1": {
"name": "Hack and Slash",
"desc": "Attacks 1 enemy 3 times.",
"skill_type_id": 34201
},
"A2": {
"name": "Rise to Duty",
"desc": "Places a 25% [Increase ATK] buff and a 30% [Increase C. RATE] buff on this Champion for 2 turns, then attacks all enemies.\r\n\r\n[Has a 75% chance of placing a [Bomb] debuff that will detonate after 3 turns when Fenax is on the same team.]",
"skill_type_id": 34204
},
"A3": {
"name": "Awesome Presence",
"desc": "Places a [Counterattack] buff on this Champion for 2 turns. Has a 75% chance of placing a 25% [Weaken] debuff on enemies for 2 turns.",
"skill_type_id": 34203
}
},
"Armiger": {
"A1": {
"name": "Riposte",
"desc": "Attacks 1 enemy. Decreases the Turn Meter by 30% if this attack is critical.",
"skill_type_id": 10501
},
"A2": {
"name": "Lay to Rest",
"desc": "Attacks 1 enemy. Enemies killed by this skill cannot be revived.",
"skill_type_id": 10502
}
},
"Alure": {
"A1": {
"name": "Psychic Whip",
"desc": "Attacks 3 times at random. Decreases the target's Turn Meter by 25% on each critical hit.",
"skill_type_id": 10301
},
"A2": {
"name": "Temptation",
"desc": "Attacks all enemies 2 times. Each hit has a 30% chance of placing a 30% [Decrease DEF] debuff for 1 turn. Places a [Sleep] debuff for 1 turn on targets under [Decrease DEF] debuffs.",
"skill_type_id": 10302
},
"A3": {
"name": "Hellish Blaze",
"desc": "Attacks 1 enemy. Has an extra 30% chance of inflicting a critical hit. Will ignore 50% of the target's DEF.",
"skill_type_id": 10303
}
},
"Galek": {
"A1": {
"name": "Cross Slash",
"desc": "Attacks 1 enemy 2 times.",
"skill_type_id": 14801
},
"A2": {
"name": "Hellraiser",
"desc": "Attacks all enemies. Has an extra 15% chance of inflicting a critical hit. Places a 30% [Increase SPD] buff on this Champion for 2 turns.",
"skill_type_id": 14804
},
"A3": {
"name": "Cursed Blade",
"desc": "Attacks 4 times at random. Has a 30% chance of placing a 30% [Decrease DEF] debuff for 2 turns. Has a 30% chance of placing a 60% [Decrease DEF] debuff for 2 turns if the target has more than 2 debuffs.",
"skill_type_id": 14803
}
},
"Dark Athel": {
"A1": {
"name": "Profane Glaive",
"desc": "Attacks 1 enemy 2 times. Has a 40% chance of placing a 30% [Decrease DEF] debuff for 2 turns.",
"skill_type_id": 40301
},
"A2": {
"name": "Blades of Blood",
"desc": "Attacks all enemies. Has a 50% chance of placing a 30% [Decrease SPD] debuff for 2 turns.",
"skill_type_id": 40302
},
"A3": {
"name": "Harvest of Despair",
"desc": "Attacks all enemies. Places a 30% [Increase SPD] buff on this Champion for 3 turns if this attack kills 4 or more enemies.\r\nHeals this Champion by 50% of their MAX HP if this attack kills 6 or more enemies.\r\nGrants an Extra Turn if this attack kills 10 or more enemies.",
"skill_type_id": 40303
}
},
"Hordin": {
"A1": {
"name": "Relentless Strike",
"desc": "Attacks 1 enemy 2 times. Grants an Extra Turn if the target is killed.",
"skill_type_id": 1701
},
"A2": {
"name": "Bloodletter",
"desc": "Attacks 1 enemy. Has a 60% chance of placing a 50% [Decrease ATK] debuff for 2 turns. Heals this Champion by 10% of the damage inflicted.",
"skill_type_id": 1702
},
"A3": {
"name": "Burning Hatred",
"desc": "Places a 50% [Increase ATK] buff, a 30% [Increase C. RATE] buff, and a 30% [Increase SPD] buff on this Champion for 2 turns. Grants an Extra Turn.",
"skill_type_id": 1704
}
},
"Deathless": {
"A1": {
"name": "Grave Whispers",
"desc": "Attacks 1 enemy. Has a 70% chance of placing a 60% [Decrease DEF] debuff for 2 turns if 1 or more allies are dead, a 30% [Decrease SPD] debuff for 2 turns if 2 or more allies are dead, and a 50% [Decrease ACC] debuff for 2 turns if 3 or more allies are dead.\r\n\r\nDamage inflicted is proportional to DEF.",
"skill_type_id": 15901
},
"A2": {
"name": "Vile Insults",
"desc": "Places a 30% [Reflect Damage] buff on this Champion for 2 turns, then attacks 1 enemy. Has an 80% chance of placing a [Provoke] debuff for 1 turn.",
"skill_type_id": 15902
},
"A3": {
"name": "Grim Revenge",
"desc": "Attacks all enemies. Damage inflicted is proportional to DEF and increases according to the number of dead allies.",
"skill_type_id": 15903
}
},
"Oathbound": {
"A1": {
"name": "Shatter",
"desc": "Attacks 1 enemy. Has a 20% chance of placing a [Freeze] debuff for 1 turn. Damage inflicted is proportional to DEF.",
"skill_type_id": 3601
},
"A2": {
"name": "Subjugate",
"desc": "Attacks all enemies. Has a 75% chance of placing a 25% [Decrease ATK] debuff on all enemies for 2 turns. Also has a 55% chance of decreasing each target's Turn Meter by 20%.",
"skill_type_id": 3602
},
"A3": {
"name": "Intimidate",
"desc": "Attacks at random 4 times. Each attack has a 30% chance of placing a [Block Active Skills] debuff for 2 turns. \r\n\r\nThe chance of the [Block Active Skills] debuff increases to 100% if the target is under a [Decrease ATK] debuff.",
"skill_type_id": 3603
}
},
"Warmaiden": {
"A1": {
"name": "Ferocious Attack",
"desc": "Attacks 1 enemy. Has a 30% chance of placing a 2.5% [Poison] debuff for 1 turn.",
"skill_type_id": 8201
},
"A2": {
"name": "Opportunity Strike",
"desc": "Attacks 1 enemy. Places a 50% [Increase ATK] buff on this Champion and places an extra hit if this attack is critical. The extra hit cannot be critical.",
"skill_type_id": 8202
},
"A3": {
"name": "Crumbling Blast",
"desc": "Attacks all enemies. Has a 75% chance of placing a 60% [Decrease DEF] debuff for 2 turns.",
"skill_type_id": 8204
},
"A4": {
"name": "Opportunity Strike",
"desc": "Attacks 1 enemy. Places a 50% [Increase ATK] buff on this Champion and places an extra hit if this attack is critical. The extra hit cannot be critical.",
"skill_type_id": 8202
},
"A5": {
"name": "Crumbling Blast",
"desc": "Attacks all enemies. Has a 75% chance of placing a 30% [Decrease DEF] debuff for 2 turns.",
"skill_type_id": 8203
},
"A6": {
"name": "Opportunity Strike",
"desc": "Attacks 1 enemy. Places a 50% [Increase ATK] buff on this Champion and places an extra hit if this attack is critical. The extra hit cannot be critical.",
"skill_type_id": 8202
},
"A7": {
"name": "Crumbling Blast",
"desc": "Attacks all enemies. Has a 75% chance of placing a 30% [Decrease DEF] debuff for 2 turns.",
"skill_type_id": 8203
},
"A8": {
"name": "Opportunity Strike",
"desc": "Attacks 1 enemy. Places a 50% [Increase ATK] buff on this Champion and places an extra hit if this attack is critical. The extra hit cannot be critical.",
"skill_type_id": 8202
},
"A9": {
"name": "Crumbling Blast",
"desc": "Attacks all enemies. Has a 75% chance of placing a 30% [Decrease DEF] debuff for 2 turns.",
"skill_type_id": 8203
},
"A10": {
"name": "Opportunity Strike",
"desc": "Attacks 1 enemy. Places a 50% [Increase ATK] buff on this Champion and places an extra hit if this attack is critical. The extra hit cannot be critical.",
"skill_type_id": 8202
},
"A11": {
"name": "Crumbling Blast",
"desc": "Attacks all enemies. Has a 75% chance of placing a 30% [Decrease DEF] debuff for 2 turns.",
"skill_type_id": 8203
}
},
"Valla": {
"A1": {
"name": "Piercing Blade",
"desc": "Attacks 1 enemy 2 times. Increases the inflicted damage by 15% if the target is under a [Shield] buff.",
"skill_type_id": 46101
},
"A2": {
"name": "Crush The Wall",
"desc": "Removes all [Shield] buffs on all enemies, then attacks all enemies. Has a 30% chance of placing a 60% [Decrease DEF] debuff on all enemies for 2 turns.",
"skill_type_id": 46105
},
"A3": {
"name": "Fortified Core",
"desc": "Places a [Shield] buff on this Champion for 3 turns equal to 20% of their MAX HP. Also places a 60% [Increase DEF] buff on this Champion for 3 turns and fills this Champion’s Turn Meter by 50%.",
"skill_type_id": 46103
},
"Passive": {
"name": "Resolute Defense [P]",
"desc": "Decreases the damage received by this Champion by 15% while under a [Shield] buff.",
"skill_type_id": 46104
}
},
"Dark Elhain": {
"A1": {
"name": "Necrotic Bolt",
"desc": "Attacks 1 enemy. Destroys the target's MAX HP by 30% of the damage inflicted.",
"skill_type_id": 49901
},
"A2": {
"name": "Death's Majesty",
"desc": "Places a 50% [Increase ATK] buff on this Champion for 2 turns, then attacks all enemies. Has a 50% chance of placing a 30% [Decrease SPD] debuff for 2 turns.",
"skill_type_id": 49902
},
"A3": {
"name": "Lethal Winter [P]",
"desc": "Fills this Champion's Turn Meter by 25% and instantly activates the Death's Majesty skill whenever this Champion or an ally receives a [Freeze] debuff.",
"skill_type_id": 49904
},
"A4": {
"name": "Veins of Ice [P]",
"desc": "Instantly removes any [Freeze] debuffs on this Champion and replaces them with a 30% [Increase C. RATE] buff, a 30% [Increase C. DMG] buff, and a 15% [Strengthen] buff whenever an enemy places a [Freeze] debuff on this Champion.",
"skill_type_id": 49903
}
},
"Frozen Banshee": {
"A1": {
"name": "Death's Caress",
"desc": "Attacks 1 enemy 2 times.",
"skill_type_id": 45001
},
"A2": {
"name": "Cruel Exultation",
"desc": "Attacks 1 enemy. Fills the Turn Meters of all allies by 2% for each debuff on the target.",
"skill_type_id": 45003
},
"A3": {
"name": "Frost Blight",
"desc": "Attacks 1 enemy. Places a 25% [Poison Sensitivity] debuff for 2 turns.",
"skill_type_id": 45004
},
"A4": {
"name": "Cruel Exultation",
"desc": "Attacks 1 enemy. Fills the Turn Meters of all allies by 2% for each debuff on the target.",
"skill_type_id": 45003
},
"A5": {
"name": "Frost Blight",
"desc": "Attacks 1 enemy. Places a 25% [Poison Sensitivity] debuff for 2 turns.",
"skill_type_id": 45004
},
"A6": {
"name": "Cruel Exultation",
"desc": "Attacks 1 enemy. Fills the Turn Meters of all allies by 2% for each debuff on the target.",
"skill_type_id": 45003
},
"A7": {
"name": "Frost Blight",
"desc": "Attacks 1 enemy. Places a 25% [Poison Sensitivity] debuff for 2 turns.",
"skill_type_id": 45004
}
},
"Ninja": {
"A1": {
"name": "Shatterbolt",
"desc": "Attacks 1 enemy. Has a 45% chance of placing a 60% [Decrease DEF] debuff for 2 turns. \r\n\r\nAlso fills this Champion's Turn Meter by 15% when used against Bosses.",
"skill_type_id": 62001
},
"A2": {
"name": "Hailburn",
"desc": "Attacks 3 times at random. Each hit has a 75% chance of placing a [HP Burn] debuff for 3 turns. Also places a [Perfect Veil] buff on this Champion for 2 turns.\r\n\r\nWhen used against Bosses, will instantly activate any [HP Burn] debuffs, including [HP Burn] debuffs placed by this Skill.",
"skill_type_id": 62002
},
"A3": {
"name": "Cyan Slash",
"desc": "Attacks all enemies. Has a 75% chance of placing a [Freeze] debuff for 1 turn.\r\n\r\nWhen targeting a Boss, will only attack the Boss (not all enemies) and will ignore 50% of the target's DEF. Will also decrease the cooldown of the Hailburn skill by 1 turn.",
"skill_type_id": 62003
},
"Passive": {
"name": "Escalation [P]",
"desc": "Increases Ninja's ATK by 10% (up to 100%) and C. DMG by 5% (up to 25%) each time a single enemy is hit by all three of Ninja's active skills in a single Round. This effect is multiplicative, & can occur multiple times against the same enemy.\r\n\r\nWhen fighting Bosses, will increase Ninja's ATK by 20% (up to 100%) and C. DMG by 10% (up to 25%) instead.",
"skill_type_id": 62004
}
},
"Doomscreech": {
"A1": {
"name": "Scrabbling Claws",
"desc": "Attacks 1 enemy 2 times. Has a 25% chance of placing a 25% [Decrease ACC] debuff for 2 turns.",
"skill_type_id": 11101
},
"A2": {
"name": "Warning Screech",
"desc": "Fills the Turn Meter of all allies by 30%. Places a 60% [Increase DEF] buff on all allies for 2 turns.",
"skill_type_id": 11102
},
"A3": {
"name": "Shelter",
"desc": "Attacks all enemies. Places a [Shield] buff equal to 30% MAX HP on this Champion for 2 turns. Damage increases according to this Champion's current HP.",
"skill_type_id": 11103
},
"A4": {
"name": "Warning Screech",
"desc": "Fills the Turn Meter of all allies by 30%. Places a 60% [Increase DEF] buff on all allies for 2 turns.",
"skill_type_id": 11102
},
"A5": {
"name": "Shelter",
"desc": "Attacks all enemies. Places a [Shield] buff equal to 30% MAX HP on this Champion for 2 turns. Damage increases according to this Champion's current HP.",
"skill_type_id": 11103
}
},
"Broadmaw": {
"A1": {
"name": "Ice Blast",
"desc": "Attacks 1 enemy. Has a 35% chance of placing a [Freeze] debuff for 1 turn.",
"skill_type_id": 11501
},
"A2": {
"name": "Gift",
"desc": "Places a 30% [Increase C. RATE] buff and a 15% [Increase SPD] buff on all allies for 2 turns. Also fills the Turn Meters of all allies by 15%.",
"skill_type_id": 11502
},
"A3": {
"name": "Resurrect",
"desc": "Revives 2 random dead allies and heals them for 25% of their MAX HP. Places a [Block Damage] buff on the revived allies for 1 turn.",
"skill_type_id": 11503
}
},
"Elder Skarg": {
"A1": {
"name": "Tide of Steel",
"desc": "Attacks 1 enemy. Places a 30% [Increase SPD] buff on this Champion for 2 turns if this attack is critical. Places a 30% [Increase C. RATE] buff on this Champion for 2 turns if this attack is not critical.",
"skill_type_id": 38601
},
"A2": {
"name": "Hunt the Marked",
"desc": "Attacks 1 enemy 3 times. Places an extra hit for each buff or debuff on the target. Can place up to 3 extra hits. Places a [HP Burn] debuff for 2 turns and a [True Fear] debuff for 1 turn on all enemies if this attack places all 3 extra hits. Steals all the buffs from the target after the attack.",
"skill_type_id": 38602
},
"A3": {
"name": "Elder's Clarion",
"desc": "Places a 60% [Increase DEF] buff on this Champion for 3 turns. Places a [Fear] debuff on all enemies for 1 turn. Places a [True Fear] debuff for 1 turn on targets under [Block Damage] buffs. Places a 30% [Decrease SPD] debuff for 2 turns on targets under [Shield] buffs. These debuffs cannot be resisted. Also places a [Provoke] debuff on Legendary Champions for 1 turn.",
"skill_type_id": 38603
},
"Passive": {
"name": "Kingslayer [P]",
"desc": "Receives 15% less damage from Legendary and Mythical Champions. \r\n\r\nInflicts damage equal to this Champion's ATK when attacked by Legendary and Mythical Champions. The extra hit cannot be critical.",
"skill_type_id": 38604
}
},
"Mistress of Hymns": {
"A1": {
"name": "Bolstering Blow",
"desc": "Attacks 1 enemy.\r\n\r\nHeals the ally with the lowest HP by 15% of the damage inflicted.",
"skill_type_id": 39701
},
"A2": {
"name": "Song of Triumph",
"desc": "Attacks 1 enemy.\r\n\r\nPlaces a 15% [Continuous Heal] buff on the 2 allies with the lowest HP for 2 turns if this attack is critical.",
"skill_type_id": 39702
},
"A3": {
"name": "Hymn of Rebirth",
"desc": "Revives 2 random allies with 50% HP.",
"skill_type_id": 39703
}
},
"Reliquary Tender": {
"A1": {
"name": "Warden Staff",
"desc": "Attacks 1 enemy. Has a 20% chance of placing a 25% [Decrease ATK] debuff for 2 turns.",
"skill_type_id": 36201
},
"A2": {
"name": "Tender's Watch",
"desc": "Removes all debuffs from all allies, then places a 15% [Continuous Heal] buff on them for 2 turns.",
"skill_type_id": 36204
},
"A3": {
"name": "Call to Life",
"desc": "Revives an ally with 30% HP and fills their Turn Meter by 30%.",
"skill_type_id": 36203
},
"A4": {
"name": "Tender's Watch",
"desc": "Removes all debuffs from all allies, then places a 7.5% [Continuous Heal] buff on them for 2 turns.",
"skill_type_id": 36202
},
"A5": {
"name": "Call to Life",
"desc": "Revives an ally with 30% HP and fills their Turn Meter by 30%.",
"skill_type_id": 36203
},
"A6": {
"name": "Tender's Watch",
"desc": "Removes all debuffs from all allies, then places a 7.5% [Continuous Heal] buff on them for 2 turns.",
"skill_type_id": 36202
},
"A7": {
"name": "Call to Life",
"desc": "Revives an ally with 30% HP and fills their Turn Meter by 30%.",
"skill_type_id": 36203
}
},
"Fayne": {
"A1": {
"name": "Exotic Blades",
"desc": "Attacks 1 enemy 2 times. Each hit has a 35% chance of stealing 5% of the target’s current Turn Meter.",
"skill_type_id": 53001
},
"A2": {
"name": "Flower's Tears",
"desc": "Attacks 1 enemy. Has a 75% chance of placing two 5% [Poison] debuffs and a 50% [Decrease ATK] debuff for 2 turns.",
"skill_type_id": 53004
},
"A3": {
"name": "Flowing Style",
"desc": "Attacks 1 enemy 3 times. The first hit has a 75% chance of placing a 60% [Decrease DEF] debuff for 3 turns. The second hit has a 75% chance of placing a 25% [Weaken] debuff for 3 turns. The third hit heals this Champion by 4% of their MAX HP for every debuff on the target.",
"skill_type_id": 53003
}
},
"Odachi": {
"A1": {
"name": "Showy Slice",
"desc": "Attacks 1 enemy. Has a 20% chance of placing a [Provoke] debuff for 1 turn.",
"skill_type_id": 61801
},
"A2": {
"name": "Great Sword",
"desc": "Attacks all enemies. Places a [Shield] buff on this Champion for 2 turns equal to 20% of their MAX HP.",
"skill_type_id": 61802
},
"A3": {
"name": "Keeper",
"desc": "Places a [Block Debuffs] buff on all allies for 1 turn. Also places a 30% [Increase DEF] buff on all allies for 2 turns.",
"skill_type_id": 61804
},
"A4": {
"name": "Great Sword",
"desc": "Attacks all enemies. Places a [Shield] buff on this Champion for 2 turns equal to 20% of their MAX HP.",
"skill_type_id": 61802
},
"A5": {
"name": "Keeper",
"desc": "Places a [Block Debuffs] buff on all allies for 1 turn.",
"skill_type_id": 61803
},
"A6": {
"name": "Great Sword",
"desc": "Attacks all enemies. Places a [Shield] buff on this Champion for 2 turns equal to 20% of their MAX HP.",
"skill_type_id": 61802
},
"A7": {
"name": "Keeper",
"desc": "Places a [Block Debuffs] buff on all allies for 1 turn.",
"skill_type_id": 61803
}
},
"Hyria": {
"A1": {
"name": "Feint",
"desc": "Attacks 1 enemy. Has an extra 25% chance of inflicting a critical hit.",
"skill_type_id": 1001
},
"A2": {
"name": "Poisonous Lily",
"desc": "Attacks 1 enemy 3 times. Each hit has a 35% chance of placing a 2.5% [Poison] debuff for 2 turns.",
"skill_type_id": 1002
},
"A3": {
"name": "Lead the Charge",
"desc": "Attacks 1 enemy with 2 random allies. Allies joining the attack use their default skills.",
"skill_type_id": 1003
}
},
"Alexandr the Sharpshooter": {
"A1": {
"name": "Arctic Warfare",
"desc": "Attacks 1 enemy. Has a 50% chance of placing a [Freeze] debuff for 1 turn. The chance increases to 75% against enemies from the Orc and Ogryn Tribe Factions.",
"skill_type_id": 65501
},
"A2": {
"name": "Spraydown",
"desc": "Attacks all enemies. Has a 75% chance of placing a 60% [Decrease DEF] debuff for 2 turns. Also has a 75% chance of placing a 25% [Weaken] debuff against enemies from the Orc and Ogryn Tribe Factions for 2 turns.",
"skill_type_id": 65502
},
"A3": {
"name": "Born to Win",
"desc": "Attacks 1 enemy. Removes all buffs from the target.\r\n\r\nRemoves all buffs from the target before attacking when targeting enemies from the Orc and Ogryn Tribe Factions.",
"skill_type_id": 65503
}
},
"Coldheart": {
"A1": {
"name": "Flurry of Arrows",
"desc": "Attacks 4 times at random. Each hit has a 25% chance of placing a 50% [Heal Reduction] debuff for 2 turns.",
"skill_type_id": 401
},
"A2": {
"name": "Art of Pain",
"desc": "Attacks all enemies. Has a 30% chance of placing a 50% [Decrease ACC] debuff for 1 turn. Places a 5% [Poison] debuff for 2 turns if the target is under a [Heal Reduction] debuff.",
"skill_type_id": 402
},
"A3": {
"name": "Heartseeker",
"desc": "Attacks 1 enemy. Decreases the target's Turn Meter by 100%. Has an extra 30% chance of inflicting a critical hit. Damage increases according to enemy MAX HP.",
"skill_type_id": 403
},
"A4": {
"name": "Art of Pain",
"desc": "Attacks all enemies. Has a 30% chance of placing a 50% [Decrease ACC] debuff for 1 turn. Places a 5% [Poison] debuff for 2 turns if the target is under a [Heal Reduction] debuff.",
"skill_type_id": 402
},
"A5": {
"name": "Heartseeker",
"desc": "Attacks 1 enemy. Decreases the target's Turn Meter by 100%. Has an extra 30% chance of inflicting a critical hit. Damage increases according to enemy MAX HP.",
"skill_type_id": 403
},
"A6": {
"name": "Art of Pain",
"desc": "Attacks all enemies. Has a 30% chance of placing a 50% [Decrease ACC] debuff for 1 turn. Places a 5% [Poison] debuff for 2 turns if the target is under a [Heal Reduction] debuff.",
"skill_type_id": 402
},
"A7": {
"name": "Heartseeker",
"desc": "Attacks 1 enemy. Decreases the target's Turn Meter by 100%. Has an extra 30% chance of inflicting a critical hit. Damage increases according to enemy MAX HP.",
"skill_type_id": 403
},
"A8": {
"name": "Art of Pain",
"desc": "Attacks all enemies. Has a 30% chance of placing a 50% [Decrease ACC] debuff for 1 turn. Places a 5% [Poison] debuff for 2 turns if the target is under a [Heal Reduction] debuff.",
"skill_type_id": 402
},
"A9": {
"name": "Heartseeker",
"desc": "Attacks 1 enemy. Decreases the target's Turn Meter by 100%. Has an extra 30% chance of inflicting a critical hit. Damage increases according to enemy MAX HP.",
"skill_type_id": 403
},
"A10": {
"name": "Art of Pain",
"desc": "Attacks all enemies. Has a 30% chance of placing a 50% [Decrease ACC] debuff for 1 turn. Places a 5% [Poison] debuff for 2 turns if the target is under a [Heal Reduction] debuff.",
"skill_type_id": 402
},
"A11": {
"name": "Heartseeker",
"desc": "Attacks 1 enemy. Decreases the target's Turn Meter by 100%. Has an extra 30% chance of inflicting a critical hit. Damage increases according to enemy MAX HP.",
"skill_type_id": 403
}
},
"Occult Brawler": {
"A1": {
"name": "Sorcerous Razor",
"desc": "Attacks 1 enemy.\r\n\r\nHas a 50% chance of placing a 5% [Poison] debuff for 2 turns.",
"skill_type_id": 33001
},
"A2": {
"name": "Curse Eater",
"desc": "Attacks 1 enemy. If this Champion is under 1 or more debuffs, this attack will ignore 30% of enemy DEF. If this Champion is under 2 or more debuffs, enemies killed by this Skill cannot be revived. If this Champion is under 3 or more debuffs, this attack is always critical. If this Champion is under 4 or more debuffs, this Champion heals by 30% of the damage inflicted. If this Champion is under 5 or more debuffs, grants an Extra Turn. Removes all debuffs from this Champion after the attack.",
"skill_type_id": 33002
},
"Passive": {
"name": "Ruination Ritual [P]",
"desc": "Places a 2.5% [Poison] debuff on this Champion for 4 turns at the start of each turn.\r\n\r\nHas a 70% chance of placing a 5% [Poison] debuff on a random enemy for 4 turns at the start of each turn.",
"skill_type_id": 33004
}
},
"Scyl of the Drakes": {
"A1": {
"name": "Drake's Swiftness",
"desc": "Attacks 1 enemy. Has a 20% chance of placing a 30% [Decrease SPD] debuff for 2 turns. Also has a 30% chance of decreasing the target's Turn Meter by 15%.",
"skill_type_id": 50101
},
"A2": {
"name": "Wingbeat Flurry",
"desc": "Attacks all enemies 2 times. Each hit has a 20% chance of placing a [Stun] debuff for 1 turn.",
"skill_type_id": 50102
},
"A3": {
"name": "Phoenix Rite",
"desc": "Revives an ally with 50% HP and places a 50% [Ally Protection] buff on them for 2 turns.",
"skill_type_id": 50103
},
"Passive": {
"name": "Boundless Life [P]",
"desc": "Heals all allies by 10% of their MAX HP at the start of each turn. Also places a 30% [Increase SPD] buff on a random ally for 2 turns.",
"skill_type_id": 50104
}
},
"High Khatun": {
"A1": {
"name": "Imperial Grace",
"desc": "Attacks 1 enemy. Has a 25% chance of placing a 30% [Decrease SPD] debuff for 2 turns.",
"skill_type_id": 40101
},
"A2": {
"name": "Rally the Horde",
"desc": "Fills the Turn Meters of all allies by 15% and places a 30% [Increase SPD] buff on all allies for 2 turns.",
"skill_type_id": 40104
},
"A3": {
"name": "Shamanic Lightning",
"desc": "Attacks all enemies. Has a 50% chance of decreasing the Turn Meter by 15%.",
"skill_type_id": 40103
}
},
"Fahrakin the Fat": {
"A1": {
"name": "Sizzling Strike",
"desc": "Attacks 1 enemy. Has a 40% chance of placing a 60% [Decrease DEF] debuff for 2 turns.",
"skill_type_id": 56601
},
"A2": {
"name": "Brand of Shame",
"desc": "Attacks 1 enemy. Has a 75% chance of placing a [HP Burn] debuff and two 5% [Poison] debuffs for 2 turns.",
"skill_type_id": 56602
},
"A3": {
"name": "Beatdown",
"desc": "Places a 30% [Increase C. RATE] buff and a 30% [Increase C. DMG] buff on all allies except this Champion for 3 turns. Then, all allies except this Champion will attack 1 target enemy.",
"skill_type_id": 56603
},
"Passive": {
"name": "Body Block [P]",
"desc": "Deflects 20% of all incoming damage this Champion receives onto all allies. The damage will be spread equally across all allies.",
"skill_type_id": 56604
}
},
"Gliseah Soulguide": {
"A1": {
"name": "Glittering Slash",
"desc": "Attacks 1 enemy. Has a 50% chance of placing a [Freeze] debuff for 1 turn. Also applies a [Debuff Spread] effect, taking all debuffs from the target and placing them on all enemies under [Freeze] debuffs.",
"skill_type_id": 67501
},
"A2": {
"name": "Breath of Rime",
"desc": "Attacks all enemies. Steals all buffs from all enemies. \r\n\r\nPlaces a 25% [Weaken] debuff for 2 turns.",
"skill_type_id": 67502
},
"A3": {
"name": "Everwinter",
"desc": "Places a [Block Debuffs] buff on all allies for 2 turns. \r\n\r\nHas a 75% chance of placing a [Freeze] debuff on all enemies for 1 turn. \r\n\r\nFills the Turn Meters of all allies by 15%. Fills the Turn Meters of each ally by an extra 5% for each [Freeze] debuff placed by this skill.",
"skill_type_id": 67503
},
"Passive": {
"name": "Timeless [P]",
"desc": "This Champion's skills cannot be put on cooldown. \r\n\r\nWhenever an enemy tries to put either this Champion's skills or an ally's skills on cooldown, places a [Freeze] debuff on that enemy. The [Freeze] debuff cannot be blocked or resisted. \r\n\r\nAlso has a 50% chance of denying the cooldown increase effect. That chance increases by 25% for each enemy under a [Freeze] debuff. Will not deny cooldown increasing effects from Bosses.\r\n\r\nWhenever an enemy tries to put either this Champion's skills or an ally's skills on cooldown, activates an [Instant Turn] effect on this Champion. Occurs once per turn.",
"skill_type_id": 67504
}
},
"Warchief": {
"A1": {
"name": "Brutal Force",
"desc": "Attacks 1 enemy 3 times. Each hit has a 25% chance of placing a [Provoke] debuff for 1 turn. \r\n\r\nEach hit also heals this Champion and the ally with the lowest HP by 3% of this Champion's MAX HP.",
"skill_type_id": 9401
},
"A2": {
"name": "Marauder",
"desc": "Attacks 1 enemy. Places a [Provoke] debuff for 2 turns. Has a 75% chance of stealing 2 random buffs from the target. Damage inflicted is proportional to DEF.",
"skill_type_id": 9402
},
"Passive": {
"name": "Standstill [P]",
"desc": "Whenever an ally under a [Shield] buff is hit by an enemy, heals that ally by 25% of the damage dealt to the [Shield].\r\n\r\nIncreases this Champion's DEF by 10% for each enemy under a [Provoke] debuff. Will also increase this Champion's DEF by 5% for each enemy not under a [Provoke] debuff.",
"skill_type_id": 9403
}
},
"Renegade": {
"A1": {
"name": "Lingering Pain",
"desc": "Attacks 1 enemy. Has a 25% chance of placing a 50% [Heal Reduction] debuff for 1 turn.",
"skill_type_id": 4201
},
"A2": {
"name": "Lash Out",
"desc": "Attacks at random 3 times. Has a 50% chance of placing a 15% [Decrease SPD] debuff for 2 turns. Places a 25% [Decrease ACC] debuff for 2 turns if the target has any active buffs.",
"skill_type_id": 4202
},
"A3": {
"name": "Sacrificial Ritual",
"desc": "Decreases the cooldown of all ally skills by 2 turns. This skill does not affect this Champion, or other Champions with this skill. This Champion will receive damage equal to 30% of their MAX HP. This will happen even if it kills this Champion. This skill's cooldown cannot be reduced or reset.",
"skill_type_id": 4203
},
"A4": {
"name": "Lash Out",
"desc": "Attacks at random 3 times. Has a 50% chance of placing a 15% [Decrease SPD] debuff for 2 turns. Places a 25% [Decrease ACC] debuff for 2 turns if the target has any active buffs.",
"skill_type_id": 4202
},
"A5": {
"name": "Sacrificial Ritual",
"desc": "Decreases the cooldown of all ally skills by 2 turns. This skill does not affect this Champion, or other Champions with this skill. This Champion will receive damage equal to 30% of their MAX HP. This will happen even if it kills this Champion. This skill's cooldown cannot be reduced or reset.",
"skill_type_id": 4203
}
},
"Bellower": {
"A1": {
"name": "Frazzle",
"desc": "Attacks all enemies. Has a 20% chance of placing a [Block Active Skills] debuff for 1 turn.",
"skill_type_id": 28101
},
"A2": {
"name": "Mighty Bellow",
"desc": "Attacks all enemies. Has a 50% chance of placing a 15% [Decrease SPD] debuff for 2 turns.",
"skill_type_id": 28102
},
"A3": {
"name": "Bowl Over",
"desc": "Attacks all enemies. Has a 75% chance of placing a 25% [Decrease ATK] debuff for 2 turns. Has a 75% chance of placing a 30% [Decrease DEF] debuff for 2 turns.",
"skill_type_id": 28104
},
"A4": {
"name": "Mighty Bellow",
"desc": "Attacks all enemies. Has a 50% chance of placing a 15% [Decrease SPD] debuff for 2 turns.",
"skill_type_id": 28102
},
"A5": {
"name": "Bowl Over",
"desc": "Attacks all enemies. Has a 75% chance of placing a 25% [Decrease ATK] debuff for 2 turns.",
"skill_type_id": 28103
}
},
"Hellgazer": {
"A1": {
"name": "Soul Rend",
"desc": "Attacks 1 enemy. Has a 30% chance of placing a 60% [Decrease DEF] debuff for 2 turns.",
"skill_type_id": 23404
},
"A2": {
"name": "Dark Awakening",
"desc": "Removes all debuffs from this Champion. Places a 50% [Increase ATK] buff on this Champion for 2 turns. Grants an Extra Turn.",
"skill_type_id": 23402
},
"A3": {
"name": "Malign Lightning",
"desc": "Attacks all enemies. On each critical hit fills this Champion's Turn Meter by 10%.",
"skill_type_id": 23403
}
},
"Venomage": {
"A1": {
"name": "Toxicity",
"desc": "Attacks 1 enemy 2 times. Destroys the target’s MAX HP by 75% of the damage inflicted if they are under a [Heal Reduction] debuff.\r\n\r\nEach hit has a 35% chance of activating up to two [Poison] debuffs on the target.",
"skill_type_id": 62801
},
"A2": {
"name": "Neurotoxin",
"desc": "Attacks 1 enemy. Has a 75% chance of placing a 60% [Decrease DEF] debuff for 2 turns. Also has a 75% chance of placing a 50% [Decrease ATK] debuff for 2 turns if the target is under a [Poison] debuff.",
"skill_type_id": 62802
},
"A3": {
"name": "Fleshmelter Venom",
"desc": "Attacks all enemies. Has a 75% chance of placing a 100% [Heal Reduction] debuff for 3 turns. Also has a 75% chance of placing two 5% [Poison] debuffs for 2 turns.",
"skill_type_id": 62803
},
"Passive": {
"name": "Pain Writhe [P]",
"desc": "Enemies under [Heal Reduction] debuffs inflict 15% less damage.",
"skill_type_id": 62804
}
},
"Ghrush the Mangler": {
"A1": {
"name": "Gore-Slick Maul",
"desc": "Attacks 1 enemy. Has a 50% chance of placing a [Leech] debuff on the target for 2 turns before attacking.",
"skill_type_id": 51001
},
"A2": {
"name": "Bonebreaker Stomp",
"desc": "Attacks all enemies. Has a 60% chance of placing a 50% [Decrease ATK] debuff or a 25% [Decrease C. DMG] debuff for 2 turns.",
"skill_type_id": 51002
},
"A3": {
"name": "Smothering Swath",
"desc": "Attacks all enemies. Places a 15% [Continuous Heal] buff on all allies for 2 turns. Places an additional 7.5% [Continuous Heal] buff on all allies for 1 turn if at least one enemy is hit with a critical hit.",
"skill_type_id": 51003
}
},
"Kytis": {
"A1": {
"name": "Soul Reaper",
"desc": "Attacks 1 enemy. Has an 85% chance of placing a 100% [Heal Reduction] debuff for 2 turns.",
"skill_type_id": 16001
},
"A2": {
"name": "Spikes",
"desc": "Places a 50% [Increase ATK] buff on this Champion for 2 turns, then attacks 4 times at random. The attacks will be critical if the target has any buffs.",
"skill_type_id": 16002
},
"A3": {
"name": "Bleeding Wounds",
"desc": "Attacks all enemies 2 times. Damage increases according to the amount of HP this Champion has lost.\r\n\r\nThis is a secret skill and only becomes available when this Champion has lost 50% of their HP.",
"skill_type_id": 16003
},
"Passive": {
"name": "Activate Hidden Skill",
"desc": "",
"skill_type_id": 16004
}
},
"Apothecary": {
"A1": {
"name": "Scatterbolt",
"desc": "Attacks 3 times at random.",
"skill_type_id": 301
},
"A2": {
"name": "Soothing Chant",
"desc": "Heals a target ally by 35% HP. This Heal can be critical.",
"skill_type_id": 302
},
"A3": {
"name": "Boon of Speed",
"desc": "Places a 30% [Increase SPD] buff on all allies for 2 turns. Fills the Turn Meter of all allies by 15%.",
"skill_type_id": 304
},
"A4": {
"name": "Soothing Chant",
"desc": "Heals a target ally by 35% HP. This Heal can be critical.",
"skill_type_id": 302
},
"A5": {
"name": "Boon of Speed",
"desc": "Places a 30% [Increase SPD] buff on all allies for 2 turns.",
"skill_type_id": 303
}
},
"Rathalos Blademaster": {
"A1": {
"name": "Spirit Thrust",
"desc": "Attacks 1 enemy. Has a 50% chance of placing a 60% [Decrease DEF] debuff for 2 turns. \r\n\r\nIf the target is a Boss, this debuff cannot be resisted.",
"skill_type_id": 85801
},
"A2": {
"name": "Spirit Step Slash",
"desc": "Attacks 1 enemy. Every second use of this skill in a Round will attack all enemies instead. \r\n\r\nWill also ignore 25% of the target’s DEF. If the target is a Boss, will ignore 100% of the target’s DEF.",
"skill_type_id": 85802
},
"A3": {
"name": "Overhead Slash",
"desc": "Attacks all enemies. Before attacking, places a 30% [Increase C. DMG] buff and a 30% [Increase SPD] buff on this Champion for 2 turns.",
"skill_type_id": 85803
},
"Passive": {
"name": "Rathalos Mastery [P]",
"desc": "Inflicts 50% more damage against targets under [HP Burn] debuffs. \r\n\r\nReceives 25% less damage from enemies under [HP Burn] debuffs. \r\n\r\nEvery fifth skill used by this Champion deals 200% more damage.",
"skill_type_id": 85804
},
"Passive2": {
"name": "Rathalos Mastery [P]",
"desc": "Skill 7000004 description",
"skill_type_id": 85805
}
},
"Toragi the Frog": {
"A1": {
"name": "Swamp Club",
"desc": "Attacks 1 enemy. Has a 30% chance of placing a 50% [Decrease ATK] debuff for 2 turns.",
"skill_type_id": 58601
},
"A2": {
"name": "Potent Stench",
"desc": "Attacks all enemies. Has a 50% chance of placing a [Provoke] debuff for 1 turn. The chance increases by 5% for each debuff on the enemy team.",
"skill_type_id": 58602
},
"A3": {
"name": "Bog Blessing",
"desc": "Places a [Shield] buff equal to 15% of this Champion’s MAX HP and a 50% [Ally Protection] buff on all allies except this Champion for 2 turns.\r\n\r\nAlso heals this Champion by 25% of their MAX HP and places a 30% [Reflect Damage] buff on them for 3 turns.\r\n\r\nThe heal increases by 2.5% for each [Poison] debuff on the enemy team.",
"skill_type_id": 58603
},
"Passive": {
"name": "Toxic Blood [P]",
"desc": "When attacked, has a 50% chance of placing a 5% [Poison] debuff on the attacker for 2 turns. Occurs once per hit.",
"skill_type_id": 58604
}
},
"Geomancer": {
"A1": {
"name": "Tremor Staff",
"desc": "Attacks all enemies. Has a 30% chance of placing a 50% [Decrease ACC] debuff for 2 turns.",
"skill_type_id": 48801
},
"A2": {
"name": "Creeping Petrify",
"desc": "Removes all buffs from a target enemy, then attacks them.\r\n\r\nSteals all buffs instead if the target is under a [HP Burn] debuff placed by this Champion.\r\n\r\nReduces the cooldown of Quicksand Grasp by 2 turns if the target is killed by this Skill while under a [HP Burn] debuff placed by this Champion.",
"skill_type_id": 48802