-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsbws.json
3307 lines (3307 loc) · 102 KB
/
sbws.json
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
{
"leon": {
"class": "Sword",
"form": [
{
"name": "Nameless Sword",
"star": 4,
"atkPower": 84,
"atkSpeed": 1,
"ability": "(Ultimate Holy Sword) Damage +50%, Armor penetration +50%"
},
{
"name": "Brave Sword",
"star": 5,
"atkPower": 137,
"atkSpeed": 1,
"ability": "(Ultimate Holy Sword) Damage +50%, Armor penetration +50%"
},
{
"name": "Excalibur",
"star": 6,
"atkPower": 210,
"atkSpeed": 1,
"ability": "(Ultimate Holy Sword) Damage +100%, Armor penetration +100%, Critical chance +25%, HP +10% for 5 seconds"
}
]
},
"rochefort": {
"class": "Sword",
"form": [
{
"name": "Rapier",
"star": 4,
"atkPower": 88,
"atkSpeed": 0.9,
"ability": "When counter attacking, casts a shield which absorbs damage amount equal to 100% of armor, critical hit chance increases by 20%"
},
{
"name": "Allegro",
"star": 5,
"atkPower": 144,
"atkSpeed": 0.9,
"ability": "When counter attacking, casts a shield which absorbs damage amount equal to 100% of armor, critical hit chance increases by 20%"
},
{
"name": "Allegro Asai",
"star": 6,
"atkPower": 221,
"atkSpeed": 0.9,
"ability": "When counter attacking, casts a shield which absorbs damage amount equal to 200% of armor, critical hit chance increases by 20%, deals additional physical damage equal to 100% of attack power"
}
]
},
"kriemhild": {
"class": "Hammer",
"form": [
{
"name": "Balmung",
"star": 4,
"atkPower": 60,
"atkSpeed": 0.9,
"ability": "(The last Ultimate waterspout) damage +50%"
},
{
"name": "Cursed Balmung",
"star": 5,
"atkPower": 98,
"atkSpeed": 0.9,
"ability": "(The last Ultimate waterspout) damage +50%"
},
{
"name": "Balmung of Massacre",
"star": 6,
"atkPower": 149,
"atkSpeed": 0.9,
"ability": "Attack speed + 40%, Flamespout damage +150%, The last ultimate Flamespout damage +300%, Critical Chance of every Flamespout +15%"
}
]
},
"roland": {
"class": "Hammer",
"form": [
{
"name": "Blessed Hammer",
"star": 4,
"atkPower": 52,
"atkSpeed": 1,
"ability": "When block skill is used during the activation of passive effect, all the enemies' chance of evasion decreases by 20% for 5 seconds (activated once in 2 seconds)"
},
{
"name": "Sacred Conviction",
"star": 5,
"atkPower": 85,
"atkSpeed": 1,
"ability": "When block skill is used during the activation of passive effect, all the enemies' chance of evasion decreases by 20% for 5 seconds (activated once in 2 seconds)"
},
{
"name": "Incandescent Light",
"star": 6,
"atkPower": 129,
"atkSpeed": 1,
"ability": "When block skill is used during the activation of passive effect, all the enemies' chance of evasion decreases by 20% for 5 seconds and deals magical damage equal to 200% of hero's resistance (activated once in 2 seconds)"
}
]
},
"sigruna": {
"class": "Bow",
"form": [
{
"name": "Granar",
"star": 4,
"atkPower": 85,
"atkSpeed": 1,
"ability": "(Passive Activated) Number of Magical Arrow +2"
},
{
"name": "Legendary Bow Granar",
"star": 5,
"atkPower": 140,
"atkSpeed": 1,
"ability": "(Passive Activated) Number of Magical Arrow +2"
},
{
"name": "Demon Bow Granar",
"star": 6,
"atkPower": 214,
"atkSpeed": 1,
"ability": "(Passive Activated) Number of Magic Arrow +3, Damage + 25%, Enemies hit by arrows are stunned for a second"
}
]
},
"demona": {
"class": "Bow",
"form": [
{
"name": "Seed of Fire",
"star": 4,
"atkPower": 106,
"atkSpeed": 0.8,
"ability": "Burn damage amplified by 5 times, Hellfire Arrow ignores 30% of enemy's resistance."
},
{
"name": "Bloom of Fire",
"star": 5,
"atkPower": 173,
"atkSpeed": 0.8,
"ability": "Burn damage amplified by 5 times, Hellfire Arrow ignores 30% of enemy's resistance."
},
{
"name": "Inferno",
"star": 6,
"atkPower": 265,
"atkSpeed": 0.8,
"ability": "Burn damage amplified by 5 times, Hellfire Arrow ignores 30% of enemy's resistance. Upon passive activation, Power of Demon is unleashed for 5 seconds (attack power +50%, armor/resistance -20%, obtains immunity to stun, all block skills are activated as Hellfire Arrow)."
}
]
},
"d'artagnan": {
"class": "Gun",
"form": [
{
"name": "Diffusion Long Gun",
"star": 4,
"atkPower": 94,
"atkSpeed": 0.9,
"ability": "(Passive Activated) Damage +35%"
},
{
"name": "Multi-Barreled L.Gun",
"star": 5,
"atkPower": 156,
"atkSpeed": 0.9,
"ability": "(Passive Activated) Damage +35%"
},
{
"name": "Peacemaker",
"star": 6,
"atkPower": 238,
"atkSpeed": 0.9,
"ability": "(Passive Activated) Damage +70%, Armor penetration +200"
}
]
},
"teresa": {
"class": "Gun",
"form": [
{
"name": "Chastener's Gun",
"star": 4,
"atkPower": 113,
"atkSpeed": 0.7,
"ability": "When Teressa's SP is below 50, Bombard's attack power is increased by 100%."
},
{
"name": "Calvary's Gun",
"star": 5,
"atkPower": 187,
"atkSpeed": 0.7,
"ability": "When Teressa's SP is below 50, Bombard's attack power is increased by 100%."
},
{
"name": "Brilliant Darkness",
"star": 6,
"atkPower": 286,
"atkSpeed": 0.7,
"ability": "When Teressa's SP is below 50, Bombard's attack power is increased by 100%. After the 3rd Bombard, a reinforced Bombard is discharged dealing @magical damage@ equal to 700% of hero's attack power, and eliminates the SP of the targeted enemy."
}
]
},
"dorothy": {
"class": "Staff",
"form": [
{
"name": "Moon Rise",
"star": 4,
"atkPower": 115,
"atkSpeed": 1,
"ability": "(Passive Activation) Cat Beam generated during attack for 5 seconds (100%, Magical damage)"
},
{
"name": "Red Moon",
"star": 5,
"atkPower": 190,
"atkSpeed": 1,
"ability": "(Passive Activation) Cat Beam generated during attack for 5 seconds (100%, Magical damage)"
},
{
"name": "Queen of the Moon",
"star": 6,
"atkPower": 290,
"atkSpeed": 1,
"ability": "(Passive Activated) Extra Cat Beam during attack for 5 seconds (Deals magic damage equal to 150% of the hero's attack power. Eliminates all buffs from enemy), Magic penetration +100% for 5 seconds"
}
]
},
"cano": {
"class": "Staff",
"form": [
{
"name": "Trainee's Microphone",
"star": 4,
"atkPower": 125,
"atkSpeed": 0.7,
"ability": "(Passive Activated) Cano's attack power increases by 50% for 5 seconds"
},
{
"name": "Broadcasting Mircophone",
"star": 5,
"atkPower": 207,
"atkSpeed": 0.7,
"ability": "(Passive Activated) Cano's attack power increases by 50% for 5 seconds"
},
{
"name": "Grand Finale",
"star": 6,
"atkPower": 317,
"atkSpeed": 0.7,
"ability": "(Passive Activated) Cano Band is summoned for 5 seconds increasing entire party's attack power by 50%. Also, Cano's auto attack is strengthened to shoot laser which deals magical damaage equal to 100% of Cano's attack power."
}
]
},
"maria": {
"class": "Orb",
"form": [
{
"name": "The Cross of Salvation",
"star": 4,
"atkPower": 66,
"atkSpeed": 1.1,
"ability": "(Extra effect activated) Upon receiving harmful effect, heals 5% of maximum HP."
},
{
"name": "The Cross of Heaven",
"star": 5,
"atkPower": 108,
"atkSpeed": 1.1,
"ability": "(Extra effect activated) Upon receiving harmful effect, heals 5% of maximum HP."
},
{
"name": "Michaela",
"star": 6,
"atkPower": 164,
"atkSpeed": 1.1,
"ability": "(Extra effect activated) Upon receiving harmful effect, heals 10% of maximum HP, immunity to damage 2 times, increases armor penetration and resistance penetration of healed ally by 30%."
}
]
},
"melissa": {
"class": "Orb",
"form": [
{
"name": "Mysterious Creature",
"star": 4,
"atkPower": 92,
"atkSpeed": 0.8,
"ability": "Curse is applied to all the enemies and cursed enemies' SP will decrease by 3 every time ally attacks."
},
{
"name": "Grown Creature",
"star": 5,
"atkPower": 150,
"atkSpeed": 0.8,
"ability": "Curse is applied to all the enemies and cursed enemies' SP will decrease by 3 every time ally attacks."
},
{
"name": "Asmo",
"star": 6,
"atkPower": 228,
"atkSpeed": 0.8,
"ability": "Curse is applied to all the enemies and cursed enemies' SP will decrease by 3 every time ally attacks. Enemy hit by passive attack will have its attack speed decreased by 50% and accuracy decreased by 20% for 3 secons."
}
]
},
"joan": {
"class": "Sword",
"form": [
{
"name": "Galatine",
"star": 4,
"atkPower": 54,
"atkSpeed": 1.5,
"ability": "(Passive activated) Immune to physical damage +5 times"
},
{
"name": "Steel Galatine",
"star": 5,
"atkPower": 88,
"atkSpeed": 1.5,
"ability": "(Passive activated) Immune to physical damage +5 times"
},
{
"name": "Galatine of Faith",
"star": 6,
"atkPower": 135,
"atkSpeed": 1.5,
"ability": "(Passive activated) Immune to physical damage +8 times, HP recover +2% every second"
}
]
},
"susanoo": {
"class": "Sword",
"form": [
{
"name": "Muramasa",
"star": 4,
"atkPower": 79,
"atkSpeed": 1,
"ability": "(30% chance when block used) Next skill damage +45%"
},
{
"name": "Mysterious Muramasa",
"star": 5,
"atkPower": 129,
"atkSpeed": 1,
"ability": "(30% chance when block used) Next skill damage +45%"
},
{
"name": "Demonic Muramasa",
"star": 6,
"atkPower": 198,
"atkSpeed": 1,
"ability": "(30% chance when block used) Next skill damage +90%, auto attacks are activated as chain-3 block skill power for 3 seconds"
}
]
},
"vivian": {
"class": "Sword",
"form": [
{
"name": "Balrog",
"star": 4,
"atkPower": 65,
"atkSpeed": 1.2,
"ability": "(Ultimate Magic Sword) Damage +35%, Life steal 15%"
},
{
"name": "Dark Balrog",
"star": 5,
"atkPower": 105,
"atkSpeed": 1.2,
"ability": "(Ultimate Magic Sword) Damage +35%, Life steal 15%"
},
{
"name": "Midnight Balrog",
"star": 6,
"atkPower": 162,
"atkSpeed": 1.2,
"ability": "(Ultimate Magic Sword) Damage +75%, Life steal +15%, Critical damage +30%"
}
]
},
"monte": {
"class": "Sword",
"form": [
{
"name": "Three-Section Staff",
"star": 4,
"atkPower": 93,
"atkSpeed": 0.8,
"ability": "(Ultimate-Wind Sword) Number of Activation +1, Critical Chance +20%"
},
{
"name": "Electric Baton",
"star": 5,
"atkPower": 152,
"atkSpeed": 0.8,
"ability": "(Ultimate-Wind Sword) Number of Activation +1, Critical Chance +20%"
},
{
"name": "Beam Blade",
"star": 6,
"atkPower": 234,
"atkSpeed": 0.8,
"ability": "(Ultimate-Wind Sword) Number of Activation +1, Number of fire +1, Critical Chance +20%"
}
]
},
"kaori": {
"class": "Sword",
"form": [
{
"name": "Shinai",
"star": 4,
"atkPower": 86,
"atkSpeed": 0.9,
"ability": "Chance of evasion +15% during Black Moon Slash attack, the last Black Moon Slash damage +50%"
},
{
"name": "Advanced Shinai",
"star": 5,
"atkPower": 140,
"atkSpeed": 0.9,
"ability": "Chance of evasion +15% during Black Moon Slash attack, the last Black Moon Slash damage +50%"
},
{
"name": "The Black Moon",
"star": 6,
"atkPower": 216,
"atkSpeed": 0.9,
"ability": "Chance of evasion +30% during Black Moon Slash attack, the last Black Moon Slash damage +100% and ignores the enemy's armor, everytime the hero kills enemy with Black Moon Slash gain 5% extra critical damage (Maximum 100%)"
}
]
},
"abel": {
"class": "Sword",
"form": [
{
"name": "Sword of the Successor",
"star": 4,
"atkPower": 82,
"atkSpeed": 1,
"ability": "Reflection damage +50%"
},
{
"name": "Heir of the Empire",
"star": 5,
"atkPower": 133,
"atkSpeed": 1,
"ability": "Reflection damage +50%"
},
{
"name": "Fallen Throne",
"star": 6,
"atkPower": 205,
"atkSpeed": 1,
"ability": "Reflection damage +50%, additional physical damage equal to 40% of Hero's maximum HP will be added on every 5th reflection attack. (activated once in 2 seconds)"
}
]
},
"uzimant": {
"class": "Sword",
"form": [
{
"name": "Large Bone",
"star": 4,
"atkPower": 90,
"atkSpeed": 0.9,
"ability": "Every 3rd auto attack, a dash attack occurs, increasing attack power by 150% for 3 seconds whenever a chain-3 skill is used. This effect cannot be removed."
},
{
"name": "King's Bone",
"star": 5,
"atkPower": 146,
"atkSpeed": 0.9,
"ability": "Every 3rd auto attack, a dash attack occurs, increasing attack power by 150% for 3 seconds whenever a chain-3 skill is used. This effect cannot be removed."
},
{
"name": "God's Bone",
"star": 6,
"atkPower": 225,
"atkSpeed": 0.9,
"ability": "After Every 3rd auto attack, an additional attack occurs and Attack Power is increased by 150%. Also, additional basic attack damage is increased by 200%, and a dash attack occurs by 5 seconds whenever a chain-3 skill is used. This effect cannot be removed, and is immune to debuffs."
}
]
},
"b.sworden": {
"class": "Sword",
"form": [
{
"name": "Black Tiger Sword",
"star": 4,
"atkPower": 86,
"atkSpeed": 0.9,
"ability": "(Passive activated) Activates \"Blazing Sword Spirit\" twice consequently, and before the activation, push back the enemy with power."
},
{
"name": "Black Tiger Hidden Sword",
"star": 5,
"atkPower": 140,
"atkSpeed": 0.9,
"ability": "(Passive activated) Activates \"Blazing Sword Spirit\" twice consequently, and before the activation, push back the enemy with power."
},
{
"name": "Black Tiger Divine Sword",
"star": 6,
"atkPower": 216,
"atkSpeed": 0.9,
"ability": "(Passive activated) Activates \"Blazing Sword Spirit\" twice consequently, and before the activation, push back the enemy with power. The second \"Blazing Sword Spirit\" will deal 3 times more damage to the enemy."
}
]
},
"isabel": {
"class": "Sword",
"form": [
{
"name": "Demon Blade",
"star": 4,
"atkPower": 83,
"atkSpeed": 1,
"ability": "(Passive activated) Critical chance of all chain attacks increases up to 50% for 5 seconds"
},
{
"name": "Demon Sword",
"star": 5,
"atkPower": 135,
"atkSpeed": 1,
"ability": "(Passive activated) Critical chance of all chain attacks increases up to 50% for 5 seconds"
},
{
"name": "Cyclops",
"star": 6,
"atkPower": 207,
"atkSpeed": 1,
"ability": "(Passive activated) Critical chance and critical damage of all chain attack increases up to 50% and 75% for 5 seconds"
}
]
},
"koxinga": {
"class": "Sword",
"form": [
{
"name": "Sword of Seven Stars",
"star": 4,
"atkPower": 82,
"atkSpeed": 0.9,
"ability": "Aqua Dragon deals extra damage equals to 10% of Koxinga's HP. Ignores 35% of enemies' magic resistance."
},
{
"name": "Sword of Heaven",
"star": 5,
"atkPower": 140,
"atkSpeed": 0.9,
"ability": "Aqua Dragon deals extra damage equals to 10% of Koxinga's HP. Ignores 35% of enemies' magic resistance."
},
{
"name": "Sword of Heaven's Will",
"star": 6,
"atkPower": 210,
"atkSpeed": 0.9,
"ability": "Aqua Dragon deals extra damage equals to 20% of Koxinga's HP. Ignores 35% of enemies' magic resistance. Although allies other than Koxinga succeed to evade, activates Aqua Sword on the back of enemy."
}
]
},
"victoria": {
"class": "Sword",
"form": [
{
"name": "Prayer of Victory",
"star": 4,
"atkPower": 80,
"atkSpeed": 0.9,
"ability": "The cooldown of Flag of Victory is reduced by 0.5 second for each of this character's blocks that are used."
},
{
"name": "Dawn of War",
"star": 5,
"atkPower": 138,
"atkSpeed": 0.9,
"ability": "The cooldown of Flag of Victory is reduced by 0.5 second for each of this character's blocks that are used."
},
{
"name": "Vow of the Battlefield",
"star": 6,
"atkPower": 208,
"atkSpeed": 0.9,
"ability": "The cooldown of Flag of Victory is reduced by 0.5 second for each of this character's blocks that are used. While under the Flag of Victory, every 3rd auto attack will deal physical damage equal to 450% of the hero's attack power."
}
]
},
"lionel": {
"class": "Sword",
"form": [
{
"name": "Sword of Valencia",
"star": 4,
"atkPower": 80,
"atkSpeed": 0.9,
"ability": "Accuracy increases 10% each time the attack power increases based on passive."
},
{
"name": "Sword of Ferdinando",
"star": 5,
"atkPower": 138,
"atkSpeed": 0.9,
"ability": "Accuracy increases 10% each time the attack power increases based on passive."
},
{
"name": "Mark of Darkness",
"star": 6,
"atkPower": 208,
"atkSpeed": 0.9,
"ability": "Accuracy increases 10% each time the attack power increases based on passive. When Demonic Pillar is summoned activates sword dance of darkness 3 times which give damage equal to 250% of hero's attack power."
}
]
},
"arita": {
"class": "Sword",
"form": [
{
"name": "Thorny Sword",
"star": 4,
"atkPower": 80,
"atkSpeed": 0.9,
"ability": "Decreases cooldown of Thorn of Pain to 1 second"
},
{
"name": "Briar Blade",
"star": 5,
"atkPower": 138,
"atkSpeed": 0.9,
"ability": "Decreases cooldown of Thorn of Pain to 1 second"
},
{
"name": "Pale Rose",
"star": 6,
"atkPower": 208,
"atkSpeed": 0.9,
"ability": "Decreases cooldown of Thorn of Pain to 1 second. Either (red rosebush / blue roshbush) randomly blooms on the Thorn of Pain, and respectively deals (physical damage / magical damage) equal to 100% of Arita's armor per hit."
}
]
},
"sien": {
"class": "Sword",
"form": [
{
"name": "Occult Wooden Sword",
"star": 4,
"atkPower": 86,
"atkSpeed": 0.9,
"ability": "(Passive enhanced) Chance of activating a high level chain is increased."
},
{
"name": "Wooden Sword of Yin and Yang",
"star": 5,
"atkPower": 140,
"atkSpeed": 0.9,
"ability": "(Passive enhanced) Chance of activating a high level chain is increased."
},
{
"name": "Spiral of Heaven and Earth",
"star": 6,
"atkPower": 216,
"atkSpeed": 0.9,
"ability": "(Passive altered) Sien's 3-chain skill is changed to 'Bursting Spiral Slash' that deals physical damage equal to 700% of attack power. (Passive enhanced) Sien's passive cooltime is decreased to 3.5 seconds. If Sien receives a buff, chance of activating 'Bursting Spiral Slash' becomes 100%."
}
]
},
"borgos": {
"class": "Sword",
"form": [
]
},
"bihyeongrang": {
"class": "Sword",
"form": [
]
},
"thor": {
"class": "Hammer",
"form": [
{
"name": "Titan Hammer",
"star": 4,
"atkPower": 47,
"atkSpeed": 1.1,
"ability": "(Passive Activation) Lightening Spark +2. (20% of Lightening damage)"
},
{
"name": "Mithril Hammer",
"star": 5,
"atkPower": 77,
"atkSpeed": 1.1,
"ability": "(Passive Activation) Lightening Spark +2. (20% of Lightening damage)"
},
{
"name": "Mjolnir",
"star": 6,
"atkPower": 116,
"atkSpeed": 1.1,
"ability": "(Passive Activation) Number of Lightening +1, Lightening Spark +3. (20% of Lightening damage)"
}
]
},
"alexander": {
"class": "Hammer",
"form": [
{
"name": "Token of the King",
"star": 4,
"atkPower": 52,
"atkSpeed": 1,
"ability": "(Passive Activation) Immune to magical Damage +5 times"
},
{
"name": "Token of the Emperor",
"star": 5,
"atkPower": 85,
"atkSpeed": 1,
"ability": "(Passive Activation) Immune to magical Damage +5 times"
},
{
"name": "Locus of Power",
"star": 6,
"atkPower": 129,
"atkSpeed": 1,
"ability": "(Passive Activation) Immune to magical Damage +8 times, Received healing effect +30%"
}
]
},
"achilles": {
"class": "Hammer",
"form": [
{
"name": "Pendulum of Destruction",
"star": 4,
"atkPower": 56,
"atkSpeed": 0.9,
"ability": "(Passive Activated) Additional armor reduced when chain-3 skill effect is activated"
},
{
"name": "Pendulum of Siege",
"star": 5,
"atkPower": 91,
"atkSpeed": 0.9,
"ability": "(Passive Activated) Additional armor reduced when chain-3 skill effect is activated"
},
{
"name": "Thanatos",
"star": 6,
"atkPower": 138,
"atkSpeed": 0.9,
"ability": "(Passive Activated) Additional armor reduced when chain-3 skill effect is activated, armor increases by the same amount of decreased armor, activated on both sides"
}
]
},
"drake": {
"class": "Hammer",
"form": [
{
"name": "Wooden Oar",
"star": 4,
"atkPower": 61,
"atkSpeed": 0.8,
"ability": "(Passive Activation) Effect +50%"
},
{
"name": "Oar of the Sacred Tree",
"star": 5,
"atkPower": 100,
"atkSpeed": 0.8,
"ability": "(Passive Activation) Effect +50%"
},
{
"name": "Oar of Yggdrasil",
"star": 6,
"atkPower": 151,
"atkSpeed": 0.8,
"ability": "(Passive Activation) Effect +50%, Wave Attack (Physical damage equals to the shield effect)"
}
]
},
"vane": {
"class": "Hammer",
"form": [
{
"name": "Tyrfing",
"star": 4,
"atkPower": 69,
"atkSpeed": 0.7,
"ability": "(Pilar of Hell) Damage +25%, Pilar of Destruction applied"
},
{
"name": "Tyrfing of Destruction",
"star": 5,
"atkPower": 112,
"atkSpeed": 0.7,
"ability": "(Pilar of Hell) Damage +25%, Pilar of Destruction applied"
},
{
"name": "Tyrfing of Annihilation",
"star": 6,
"atkPower": 170,
"atkSpeed": 0.7,
"ability": "(Pilar of Hell) Damage +45%, Pilar of Destruction applied, Cooltime -1"
}
]
},
"cain": {
"class": "Hammer",
"form": [
{
"name": "Bloodlust Axe",
"star": 4,
"atkPower": 65,
"atkSpeed": 0.8,
"ability": "Deals 150% increased phyisical damage, when a block is used on a debuffed enemy."
},
{
"name": "Predator Axe",
"star": 5,
"atkPower": 106,
"atkSpeed": 0.8,
"ability": "Deals 150% increased phyisical damage, when a block is used on a debuffed enemy."
},
{
"name": "Clarent",
"star": 6,
"atkPower": 161,
"atkSpeed": 0.8,
"ability": "Deals 150% increased phyisical damage, when a block is used on a debuffed enemy. Chain-3 skills that are used also have their damage increased by 150% of Hero's resistance."
}
]
},
"stanya": {
"class": "Hammer",
"form": [
{
"name": "Grinder",
"star": 4,
"atkPower": 44,
"atkSpeed": 1.2,
"ability": "(When counterattacking) deal additional physical damage equal to 100% of Enemy's armor"
},
{
"name": "Mechanic Grinder",
"star": 5,
"atkPower": 72,
"atkSpeed": 1.2,
"ability": "(When counterattacking) deal additional physical damage equal to 100% of Enemy's armor"
},
{
"name": "Super Storm Grinder",
"star": 6,
"atkPower": 110,
"atkSpeed": 1.2,
"ability": "(When counterattacking) deal additional physical damage equal to 150% of Enemy's armor"
}
]
},
"mundeok": {
"class": "Hammer",
"form": [
{
"name": "Limitless Sword",
"star": 4,
"atkPower": 69,
"atkSpeed": 0.7,
"ability": "(Passive activated) Ally's (excluding oneself) damage reduced by 25%"
},
{
"name": "Limitless Hidden Sword",
"star": 5,
"atkPower": 112,
"atkSpeed": 0.7,
"ability": "(Passive activated) Ally's (excluding oneself) damage reduced by 25%"
},
{
"name": "Limitless Divine Sword",
"star": 6,
"atkPower": 170,
"atkSpeed": 0.7,
"ability": "(Passive activated) Ally's (excluding oneself) damage reduced by 25%, when an ally's 3-chain skill is activated 3 times hero deals physical damage equal to 200% of his resistence and leaps off his horse immediately."
}
]
},
"v": {
"class": "Hammer",
"form": [
{
"name": "Cutting Machine",
"star": 4,
"atkPower": 73,
"atkSpeed": 0.7,
"ability": "(In mad state) Life steal increases by 40%"
},
{
"name": "Micro Cutting Machine",
"star": 5,
"atkPower": 119,
"atkSpeed": 0.7,
"ability": "(In mad state) Life steal increases by 40%"
},
{
"name": "Beam Slicer",
"star": 6,
"atkPower": 181,
"atkSpeed": 0.7,
"ability": "(In mad state) Life steal increases by 40%. When reinforced block skill is used while the hero is mad, activates V-Slash with 1000% power and 3 seconds increased duration in 50% chance. Second block skill after V-Slash will be reinforced."
}
]
},
"hector": {
"class": "Hammer",
"form": [
{
"name": "General's Spear",
"star": 4,
"atkPower": 65,
"atkSpeed": 1,
"ability": "Knock back resistance increases by 30% when Iron Will is activated."
},
{
"name": "Guardian's Spear",
"star": 5,
"atkPower": 103,
"atkSpeed": 1,
"ability": "Knock back resistance increases by 30% when Iron Will is activated."
},
{
"name": "Phalanx",
"star": 6,
"atkPower": 175,
"atkSpeed": 1,
"ability": "Knock back resistance increases by 30% when Iron Will is activated. A multi- hit attack is triggered dealing damage equal to 10% of Hector's resistance per hit."
}
]
},
"athena": {
"class": "Hammer",
"form": [
{
"name": "Champion's Axe",
"star": 4,
"atkPower": 65,
"atkSpeed": 1,
"ability": "Shields increase up to 50% of Athena's resistance"
},
{
"name": "War Saint's Axe",
"star": 5,
"atkPower": 103,
"atkSpeed": 1,
"ability": "Shields increase up to 50% of Athena's resistance"
},
{
"name": "Blessing of the War Goddess",
"star": 6,
"atkPower": 175,
"atkSpeed": 1,
"ability": "Shields increase up to 100% of Athena's resistance. When using 3-chain block skill, additional magic damage increases by 150%/ When using 3-chain, it has a 100% chance to create its own block."
}
]
},
"siegfried": {
"class": "Hammer",
"form": [
{
"name": "Dragon Lance",
"star": 4,
"atkPower": 65,
"atkSpeed": 1,
"ability": "Decreases requirement to activate passive by 2 blocks."
},
{
"name": "Dragon Paladin Lance",
"star": 5,
"atkPower": 103,
"atkSpeed": 1,
"ability": "Decreases requirement to activate passive by 2 blocks."
},
{
"name": "Chain Fafnir",
"star": 6,
"atkPower": 175,
"atkSpeed": 1,
"ability": "Decreases requirement to activate passive by 2 blocks. Upon using passive, summons an ultimate lance that deals physical damage equal to (750% of hero's resistance and 750% of hero's attack power). (Binds enemies within range of chains for 2 seconds; activated once every 2 seconds)"
}
]
},
"dullahan": {