-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheroes.json
5270 lines (5270 loc) · 149 KB
/
heroes.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
[
{
"name": "Clause",
"title": "Knight of Iron Defense",
"class": "Knight",
"position": "Front",
"type": "Physical",
"main stats" : {
"hp": 1354584,
"atk": 15712,
"pdef": 6984,
"mdef": 5432
},
"additional stats": {
"mp/atk": 330,
"crit": 50,
"cdmg": 0,
"penetration": 0,
"accuracy": 0,
"p.dodge": 0,
"m.dodge": 0,
"p.block": 200,
"m.block": 0,
"p.tough": 250,
"m.tough": 250,
"m.block def": 0,
"cc resist": 0
},
"thumbnail": "http://krw-img-thumb.s3.amazonaws.com/Clauseico.png/70px-Clauseico.png",
"skills": [
{
"name": "Cut Ground",
"cost": 2,
"cooldown": 9,
"explanation": "Deal ??? P.DMG to enemies in range, stunning them for 3 seconds.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Lengthen Stun duration for 2 secs."
],
"perks": [
4,
"Cooldown is reduced by 2 seconds",
"In exchange for 1 additional mana cost, the skill has a 50% chance to draw the target in"
]
},
{
"name": "Shield Strike",
"cost": 1,
"cooldown": 8,
"explanation": "Deal ??? P.DMG based off P.DEF to enemies in range and knock them back. Hit enemies have their DEF reduced by 30%. Upon blocking an attack, cooldown is reduced by 0.5 sec.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Decrease target's speed by 50%"
],
"perks": [
3,
"Target takes 25% increased P.DMG for 10 seconds",
"Stuns the enemy for 1 second"
]
},
{
"name": "Guardian Shield",
"cost": 2,
"cooldown": 12,
"explanation": "Increase P.DEF of all allies by ??? for 20 seconds. Also, reduce the possibility of being hit by critical by 30%.",
"attributes": [
"P.DEF increase rate is increased by 10%",
"P.DEF increase rate is increased by 15%",
"P.DEF increase rate is increased by 25%"
],
"perks": [
4,
"Defense increase rate is boosted by 40%",
"Receive 25% reduced P.DMG for the duration"
]
},
{
"name": "Vow of Knights",
"cost": -1,
"cooldown": 1,
"explanation": "Deal ??? P.DMG to the front after blocking, and decrease ATK of hit enemies by 20% for 8 secs. Recovers 300 mana after hitting target.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Increase DMG by 25%"
],
"perks": [
3,
"Casting time is greatly boosted",
"Reduce an additional 10% ATK"
]
}
],
"uw": {
"name": "The Guardian, Exian",
"explanation": "When HP is reduced to below 35% of max HP, increase all allies P.DMG reduction by {1}. Also, gain Attack equal to {2}% of P.DEF and gain immunity to status effects.",
"thumbnail": "http://krw-img.s3.amazonaws.com/GuardianExian.png",
"effects": [
[200, 240, 280, 340, 410, 500],
[100, 120, 144, 173, 207, 250]
]
},
"perks": [
"ATK, DEF, HP +10% / P.Block +200",
"When an ally other than this hero is hit by an attack, increase all allies P.DEF by 20% and P.Crit Resist by 20%. (10 seconds cooldown)"
]
},
{
"name": "Demia",
"title": "Fortress of Steel",
"class": "Knight",
"position": "Front",
"type": "Physical",
"main stats" : {
"hp": 1354584,
"atk": 15712,
"pdef": 6984,
"mdef": 5432
},
"additional stats": {
"mp/atk": 300,
"crit": 50,
"cdmg": 0,
"penetration": 0,
"accuracy": 0,
"p.dodge": 0,
"m.dodge": 0,
"p.block": 200,
"m.block": 0,
"p.tough": 250,
"m.tough": 250,
"m.block def": 0,
"cc resist": 0
},
"thumbnail": "http://krw-img-thumb.s3.amazonaws.com/Demiaico.png/70px-Demiaico.png",
"skills": [
{
"name": "Penetration",
"cost": 2,
"cooldown": 9,
"explanation": "Deal ??? P.DMG to the farthest enemy, and pull towards the hero. Then, deliver ??? P.DMG to nearby enemies, and stun them.",
"attributes": [
"DMG is increased by 10%",
"DMG is increased by 15%",
"DMG is increased by 25%"
],
"perks": [
4,
"In exchange for 1 additional Mana Cost, pull in 2 enemies.",
"All pulled enemies take 25% increased DMG from all sources for 10 sec."
]
},
{
"name": "Will to Win",
"cost": 2,
"cooldown": 15,
"explanation": "Blocking DMG within 15 seconds will trigger a shockwave that deals ??? P.DMG to enemies in the vicinity and decrease their ATK by 20%.",
"attributes": [
"DMG is increased by 10%",
"DMG is increased by 15%",
"Enemy ATK reduction increase by 50%"
],
"perks": [
3,
"Deals extra P.DMG based on P.DEF.",
"Ally P.DEF is boosted by 20% for 10 sec after activation."
]
},
{
"name": "Steel Fortress",
"cost": 3,
"cooldown": 20,
"explanation": "Block all P.DMG attacks during casting. All enemies that dealt said P.DMG attacks are stunned and dealt ??? P.DMG. After casting is finished, jump into the air and deal ??? P.DMG and stun hit enemies for 4 sec. While this skill is in effect, gain immunity to status effects.",
"attributes": [
"DMG is increased by 10%",
"DMG is increased by 15%",
"DMG is increased by 25%"
],
"perks": [
4,
"Upon jumping into the air, charge at the target with highest ATK.",
"In exchange for 1 additional Mana Cost, upon using Steel Fortress, take 30% of all P.DMG dealt to allies instead while skill is in effect."
]
},
{
"name": "Spearhead",
"cost": -1,
"cooldown": -1,
"explanation": "Increase player party's Physical Defense by ??? and increase Physical Block rate by 250.",
"attributes": [
"Defense Boost is increased by 10%",
"Defense Boost is increased by 15%",
"Defense Boost is increased by 25%"
],
"perks": [
3,
"P.DEF is increased by 20% and P.Block is boosted by 50%.",
"Recovers HP equal to 40% of P.DEF upon blocking."
]
}
],
"uw": {
"name": "The Blue Light, Arpheus",
"explanation": "Upon blocking an enemy attack, there is a {0}% chance all skill cooldowns will be reduced by 1 second.",
"thumbnail": "http://krw-img.s3.amazonaws.com/Arpheus.png",
"effects": [
[10, 13, 16, 19, 22, 25]
]
},
"perks": [
"ATK, DEF, HP +10% / P. Block +200",
"At the beginning of every battle, for 10 sec, reduce the ATK of all enemies by 20%. This effect cannot be dispelled."
]
},
{
"name": "Phillop",
"title": "King of Dwarves",
"class": "Knight",
"position": "Front",
"type": "Physical",
"main stats" : {
"hp": 1354584,
"atk": 15712,
"pdef": 6984,
"mdef": 5432
},
"additional stats": {
"mp/atk": 275,
"crit": 50,
"cdmg": 0,
"penetration": 0,
"accuracy": 0,
"p.dodge": 0,
"m.dodge": 0,
"p.block": 200,
"m.block": 0,
"p.tough": 250,
"m.tough": 250,
"m.block def": 0,
"cc resist": 0
},
"thumbnail": "http://krw-img-thumb.s3.amazonaws.com/Phillopico.png/70px-Phillopico.png",
"skills": [
{
"name": "Collision",
"cost": 3,
"cooldown": 12,
"explanation": "Deal ??? P.DMG and knock down the enemy for 3 seconds.",
"attributes": [
"DMG is increased by 10%",
"DMG is increased by 15%",
"Decrease hit enemy's Phys Defense by 50% for 10 seconds"
],
"perks": [
4,
"Mana cost is reduced by 1",
"Cooldown is reduced by 10% per each enemies hit"
]
},
{
"name": "Headbutt",
"cost": 2,
"cooldown": 8,
"explanation": "Dash to the enemy and inflict ??? P.DMG. Reduce Attack Spd of damaged enemies by 20% for 10 sec.",
"attributes": [
"DMG is increased by 10%",
"DMG is increased by 15%",
"Reduce hit enemy's attack by 25%"
],
"perks": [
3,
"Deals extra P.DMG equal to 10% of max HP",
"Effect changes to a 3 sec Stun to nearby enemies"
]
},
{
"name": "Earth Incarnate",
"cost": 4,
"cooldown": 30,
"explanation": "Upon activation, increase DEF by ??? for 15 sec and gain status effect immunity. In addition, heal 15% HP.",
"attributes": [
"P.Def increase rate increases by 10%",
"P.Def increase rate increases by 15%",
"DMG Reduction increases by 25%"
],
"perks": [
4,
"Deals 1% of Max HP as DMG per sec to nearby enemies",
"Stuns nearby enemies for 3 sec"
]
},
{
"name": "Destroy Armor",
"cost": -1,
"cooldown": -1,
"explanation": "Upon attacking an enemy, weaken enemy P.DEF by ??? for 15 secs. Can be stacked up to 5 times max.",
"attributes": [
"Enemy P.DEF reduction rate increase by 10%",
"Enemy P.DEF reduction rate increase by 15%",
"Enemy P.Dodge is reduced by 10% per stack"
],
"perks": [
3,
"Enemies with 5 stacks take 1% extra P.DMG based off Max HP per attack",
"Upon attack, dispel all positive effects and target received 20% increased P.DMG for 20 sec. Has a cooldown of 20 sec"
]
}
],
"uw": {
"name": "Dragon's Ruins, Atein",
"explanation": "Upon receiving DMG, stacks Dragon Rage which lasts for 10 seconds. The Hero's ATK and Def rises by {0}%. Can be stacked up to 100 times max.",
"thumbnail": "http://krw-img.s3.amazonaws.com/Atein.png",
"effects": [
[0.8, 1, 1.2, 1.4, 1.7, 2]
]
},
"perks": [
"ATK, DEF, HP +10% / P.Block +200",
"When auto attacking, there is a 10% chance to Stun the target for 2 sec and deal extra DMG worth 10% of own HP"
]
},
{
"name": "Morrah",
"title": "Devil's Flame",
"class": "Knight",
"position": "Front",
"type": "Magical",
"main stats" : {
"hp": 1354584,
"atk": 15712,
"pdef": 6984,
"mdef": 5432
},
"additional stats": {
"mp/atk": 240,
"crit": 50,
"cdmg": 0,
"penetration": 0,
"accuracy": 0,
"p.dodge": 0,
"m.dodge": 0,
"p.block": 200,
"m.block": 0,
"p.tough": 250,
"m.tough": 250,
"m.block def": 0,
"cc resist": 0
},
"thumbnail": "http://krw-img-thumb.s3.amazonaws.com/Morrahico.png/70px-Morrahico.png",
"skills": [
{
"name": "Burning Power",
"cost": 2,
"cooldown": 6,
"explanation": "Inflict ??? M.DMG upon enemies in range and knock them down. Also, stack Flame 3 times. Afterwards, for 15 sec, auto-attacks deal ??? M.DMG and stack 1 Flame upon the enemy. Every stack of Flame increases Flame damage by 2%. Each Flame stack deals damage separately, and reduces Recovery by 1%.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Increase DMG by 25%"
],
"perks": [
4,
"ATK SPD is increased by 200 for 15 seconds",
"Reduces cooldown by 3% per each enemy hit (0.18s each)"
]
},
{
"name": "Hellfire",
"cost": 3,
"cooldown": 12,
"explanation": "Increases M.DEF of all allies by ???, and also increase M.Block chance by 250. Additionally, stack Flame on nearby enemies every 1 sec.",
"attributes": [
"M.DEF increase rate is increased by 20%",
"M.DEF increase rate is increased by 30%",
"M.Block Chance increase rate is increased by 50%"
],
"perks": [
3,
"M.Block rate is boosted by 20% (25%/75% -> 45%/95%)",
"When Hellfire is active, deal DMG base on own M.DEF to nearby enemies"
]
},
{
"name": "Lava Eruption",
"cost": 3,
"cooldown": 20,
"explanation": "Deal ??? M.DMG to enemies in range and inflict knock down. Damage is increased by 2% for each stack of Flame.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Increase DMG by 25%"
],
"perks": [
4,
"DMG is increased by 40% (10%/15%/25% -> 50%/55%/65%)",
"Heals HP equals to 40% of DMG dealt"
]
},
{
"name": "Fire Smash",
"cost": -1,
"cooldown": -1,
"explanation": "Upon block, deal ??? M.DMG to enemies in range for a 100% chance, and stack 1 Flame.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Increase DMG by 25%"
],
"perks": [
3,
"Increase own M.DEF by 5% for each block. Max stack is 10",
"Enemies with 100 Flame stacks take 25% increased M.DMG"
]
}
],
"uw": {
"name": "Flame of Victory, Carprain",
"explanation": "Every 10 seconds, inflict M.DMG {0}% of ATK upon enemies that have Flame stacks. Each stack of Flame increases DMG by 2%. There is also a {1}% chance that enemies with Flame stacks may be knocked down.",
"thumbnail": "http://krw-img.s3.amazonaws.com/Carprain.png",
"effects": [
[80, 96, 115, 138, 166, 200],
[14, 16, 20, 24, 29, 35]
]
},
"perks": [
"ATK, DEF, HP +10% / M.Block +200",
"When auto-attacking, there is a 30% chance to deal M.DMG equal to 20% of own M.DEF and stack 1 stack of Flame"
]
},
{
"name": "Jane",
"title": "Alabaster Corpse",
"class": "Knight",
"position": "Front",
"type": "Magical",
"main stats" : {
"hp": 1354584,
"atk": 15712,
"pdef": 6984,
"mdef": 5432
},
"additional stats": {
"mp/atk": 440,
"crit": 50,
"cdmg": 0,
"penetration": 0,
"accuracy": 0,
"p.dodge": 0,
"m.dodge": 0,
"p.block": 200,
"m.block": 0,
"p.tough": 250,
"m.tough": 250,
"m.block def": 0,
"cc resist": 0
},
"thumbnail": "http://krw-img-thumb.s3.amazonaws.com/Janeico.png/70px-Janeico.png",
"skills": [
{
"name": "Funeral Rites",
"cost": 2,
"cooldown": 8,
"explanation": "Deal ??? M.DMG to enemies in range, stunning them for 3 seconds.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Lengthen Stun duration for 2 Sec"
],
"perks": [
4,
"Target takes 25% increased M.DMG for 10 sec",
"In exchange for 1 additional Mana cost, the skill has a 50% chance to draw the target in"
]
},
{
"name": "Mark of Death",
"cost": 2,
"cooldown": 7.5,
"explanation": "Engrave a mark on every enemy for 30 seconds and constantly deal ??? M.DMG. The enemy receives 25% more M.DMG when afflicted by this mark.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Increase DMG by 25%"
],
"perks": [
3,
"Duration is reduce to 10 sec and DMG is boosted by 250%",
"Mana cost is reduced by 1"
]
},
{
"name": "Day of Ruin",
"cost": 3,
"cooldown": 12,
"explanation": "Inflicts ??? M.DMG upon enemies every 15 seconds, and heal own HP with 100% of DMG. Gain immunity to status effect. DMG is increased if enemies are marked.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Recover 1% MP"
],
"perks": [
4,
"DMG is increased by 40%",
"Has a 10% chance to Stun enemies for 1 sec"
]
},
{
"name": "Rest in Peace",
"cost": -1,
"cooldown": -1,
"explanation": "Upon taking fatal damage, Jane enter her coffin. Recovers ??? HP for 5 seconds. Immune to all DMG while inside coffin.",
"attributes": [
"Increase Recovery by 10%",
"Increase Recovery by 15%",
"Increase Recovery by 25%"
],
"perks": [
3,
"While inside the Coffin, deal DMG worth 5% of max HP to nearby enemies",
"Upon activation, stun all enemies for 3 sec"
]
}
],
"uw": {
"name": "Unchanging Mind, Erekura",
"explanation": "Every 4 seconds, deal M.DMG {0}% of ATK to nearby enemies and reduce their Attack by {1}%. When her passive activates, recover 30% Mana.",
"thumbnail": "http://krw-img.s3.amazonaws.com/Erekura.png",
"effects": [
[10, 12, 14, 17, 20, 25],
[10, 12, 14, 17, 20, 25]
]
},
"perks": [
"ATK, DEF, HP +10% / M.Block +200",
"Each hit of Jane's attacks increase her ATK and Recovery Rate by 1% each. (Maximum stack number is 50)"
]
},
{
"name": "Ricardo",
"title": "Lua's Judgment",
"class": "Knight",
"position": "Front",
"type": "Physical",
"main stats" : {
"hp": 1354584,
"atk": 15712,
"pdef": 6984,
"mdef": 5432
},
"additional stats": {
"mp/atk": 360,
"crit": 50,
"cdmg": 0,
"penetration": 0,
"accuracy": 0,
"p.dodge": 0,
"m.dodge": 0,
"p.block": 200,
"m.block": 0,
"p.tough": 250,
"m.tough": 250,
"m.block def": 0,
"cc resist": 0
},
"thumbnail": "http://krw-img-thumb.s3.amazonaws.com/Ricardoico.png/70px-Ricardoico.png",
"skills": [
{
"name": "Destruction",
"cost": 2,
"cooldown": 8,
"explanation": "Deals ??? P.DMG to frontal enemies and knocks them over for 3 sec.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Gain CC Immunity while in use"
],
"perks": [
4,
"Target receives 25% increased P.DMG for 10 sec.",
"Deals extra P .DMG equal to 200% of M.DEF"
]
},
{
"name": "Divine Protection",
"cost": 2,
"cooldown": 7.5,
"explanation": "Deals ??? P.DMG to nearby enemies. Also, increases own M.DEF by ??? for 10 sec, and recieves 80% of M.DMG inflicted to allies in their stead.",
"attributes": [
"Defense Boost is increased by 10%",
"Defense Boost is increased by 15%",
"Recover 1% of own HP per sec for 10 sec"
],
"perks": [
3,
"In exchange for 1 additional mana cost, Ricardo gains 30% DMG resistance to DMG taken due to covering for allies.",
"This skill's effect cannot be dispelled."
]
},
{
"name": "Divine Judgment",
"cost": 4,
"cooldown": 23,
"explanation": "Attacks frontal enemies 3 times. The first 2 attacks deal ??? P.DMG to enemies and stuns them for 4 sec each, and the last attack has a 20% wider range and deals ??? P.DMG to enemies while stunning them for 4 sec. Each attack has a 50% chance of removing positive effects from the enemy.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Blocks all DMG while this skill is in use"
],
"perks": [
4,
"Stun duration is increased by 2 sec.",
"Heals all allies by 20% of DMG."
]
},
{
"name": "Divine Blessing",
"cost": -1,
"cooldown": -1,
"explanation": "When any other ally takes M.DMG, increases their M.DEF by ??? for 5 sec. It can be stacked max 5 times and Ricardo is not subject to this effect.",
"attributes": [
"Defense Boost is increased by 10%",
"Defense Boost is increased by 10%",
"Duration is increased by 2 sec"
],
"perks": [
3,
"M.DEF increase rate is boosted by 40%.",
"Max stack count is boosted to 8."
]
}
],
"uw": {
"name": "Light of Judgment, Theoria",
"explanation": "When any other ally takes DMG, there is a {0}% chance to grant them a shield worth {1}% of Ricardo's ATK for 5 sec. This effect can only take place once every 5 sec.",
"thumbnail": "http://krw-img.s3.amazonaws.com/Theoria.png",
"effects": [
[10, 12, 14, 17, 20, 25],
[320, 384, 460, 552, 660, 800]
]
},
"perks": [
"ATK, DEF, HP +10% / P.Block +200",
"The last attack of auto-attacks deals 10% of max HP as extra DMG and has a 30% chance to stun the enemy for 2 sec."
]
},
{
"name": "Kasel",
"title": "Warrior of the Holy Sword",
"class": "Warrior",
"position": "Front",
"type": "Physical",
"main stats" : {
"hp": 1150488,
"atk": 17848,
"pdef": 5816,
"mdef": 6984
},
"additional stats": {
"mp/atk": 275,
"crit": 150,
"cdmg": 0,
"penetration": 150,
"accuracy": 100,
"p.dodge": 100,
"m.dodge": 100,
"p.block": 0,
"m.block": 0,
"p.tough": 100,
"m.tough": 100,
"m.block def": 0,
"cc resist": 150
},
"thumbnail": "http://krw-img-thumb.s3.amazonaws.com/Kaselico.png/70px-Kaselico.png",
"skills": [
{
"name": "Judgement Blade",
"cost": 3,
"cooldown": 12,
"explanation": "Deal ??? P.DMG to enemies in range, knocking them down for 2.5 seconds.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Increase DMG by 25%"
],
"perks": [
4,
"Mana cost is reduced by 1 (3 -> 2)",
"Ignores DEF if there is only 1 enemy"
]
},
{
"name": "Valiant Dash",
"cost": 2,
"cooldown": 8,
"explanation": "Deal ??? P.DMG to enemies in range.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Increase Crit Chance by 250"
],
"perks": [
3,
"Mana cost is reduced by 1.",
"Target takes 25% increased P.DMG."
]
},
{
"name": "Proxy of God",
"cost": 4,
"cooldown": 20,
"explanation": "Knock back nearby enemies and deal ??? P.DMG. Additionally, increase ATK by ??? for 20 sec, and increase Dodge rate by 250. Gain Immunity to CC. This status cannot be removed.",
"attributes": [
"Attack increase rate increases by 10%",
"Attack increase rate increases by 15%",
"Increase speed by 250 for duration"
],
"perks": [
4,
"Knock back effect is changed to 3 seconds stun.",
"ATK boost is increased by 40%."
]
},
{
"name": "Goddess Strike",
"cost": -1,
"cooldown": 3,
"explanation": "When dodging, deal ??? P.DMG to frontal enemies and reduce their ACC by 150 for 5 sec. After hitting the target, gain 300 mana.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Increase Crit Chance by 250"
],
"perks": [
3,
"ACC reduction rate is changed to 250.",
"Casting is boosted and cooldown is reduced by 1 second (3s -> 2s)"
]
}
],
"uw": {
"name": "The Holy Sword, Aea",
"explanation": "Each attack has a 25% chance to inflict P.DMG on enemy {0}% of ATK.",
"thumbnail": "http://krw-img.s3.amazonaws.com/Aea.png",
"effects": [
[160, 192, 230, 275, 331, 400]
]
},
"perks": [
"ATK, DEF, HP +10% / P.Dodge +100",
"Upon attacking, attack 1 extra time, dealing 40% of ATK as DMG"
]
},
{
"name": "Gau",
"title": "Barbarian of Frozen Lands",
"class": "Warrior",
"position": "Front",
"type": "Physical",
"main stats" : {
"hp": 1150488,
"atk": 17848,
"pdef": 5816,
"mdef": 6984
},
"additional stats": {
"mp/atk": 340,
"crit": 150,
"cdmg": 0,
"penetration": 150,
"accuracy": 100,
"p.dodge": 100,
"m.dodge": 100,
"p.block": 0,
"m.block": 0,
"p.tough": 100,
"m.tough": 100,
"m.block def": 0,
"cc resist": 150
},
"thumbnail": "http://krw-img-thumb.s3.amazonaws.com/Gauico.png/70px-Gauico.png",
"skills": [
{
"name": "Smash",
"cost": 2,
"cooldown": 8,
"explanation": "Deal ??? P.DMG to enemies in range, and the first attack knocks them down for 3 sec.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Increase DMG by 25%"
],
"perks": [
4,
"Mana cost is reduced by 1.",
"Each use increases DMG by 15%. Stacks up to 10 times max"
]
},
{
"name": "Battle Roar",
"cost": 2,
"cooldown": 15,
"explanation": "All allies gain ??? ATK for 15 sec. Upon activation, clear all negative effects from all allies.",
"attributes": [
"Attack increase rate increases by 10%",
"Attack increase rate increases by 15%",
"Attack increase rate increases by 25%%"
],
"perks": [
3,
"ATK boost is increased by 40%.",
"ATK SPD boost of 200 is added to the effect."
]
},
{
"name": "Vortex",
"cost": 4,
"cooldown": 20,
"explanation": "Inflict ??? P.DMG to all enemies in range. The last attack freezes enemies for 4 sec. Immune to all status effects while casting.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"While casting, gather all enemies within range"
],
"perks": [
4,
"Cooldown reduced by 3 sec.",
"Immune to all types of DMG while in use."
]
},
{
"name": "Enrage",
"cost": -1,
"cooldown": -1,
"explanation": "Upon attacking enemy, ATK increases by ??? for 5 sec. This can be stacked up to 10 times max.",
"attributes": [
"Attack rate increases by 10%",
"Attack rate increases by 15%",
"Debuff resistance increases by 5% with each stack"
],
"perks": [
3,
"ATK Boost is increased by 40%.",
"Takes 5% more damage per each stack, but gains a boost of 50 Crit Chance and Lifesteal per each stack as well."
]
}
],
"uw": {
"name": "Holy Bird, Numinu",
"explanation": "For every 1% of lost HP, Attack rises by {0}% of ATK and Attack Speed rises by {1}.",
"thumbnail": "http://krw-img.s3.amazonaws.com/Numinu.png",
"effects": [
[0.8, 1.0, 1.2, 1.4, 1.7, 2],
[8, 10, 12, 14, 17, 20]
]
},
"perks": [
"ATK, DEF, HP +10% / P. Block +200",
"Heals HP worth 10% of ATK every second, and every 1% of HP lost reduces damage received by 0.6%."
]
},
{
"name": "Naila",
"title": "Wind's Fighter",
"class": "Warrior",
"position": "Front",
"type": "Physical",
"main stats" : {
"hp": 1150488,
"atk": 17848,
"pdef": 5816,
"mdef": 6984
},
"additional stats": {
"mp/atk": 235,
"crit": 150,
"cdmg": 0,
"penetration": 150,
"accuracy": 100,
"p.dodge": 100,
"m.dodge": 100,
"p.block": 0,
"m.block": 0,
"p.tough": 100,
"m.tough": 100,
"m.block def": 0,
"cc resist": 150
},
"thumbnail": "http://krw-img-thumb.s3.amazonaws.com/Nailaico.png/70px-Nailaico.png",
"skills": [
{
"name": "Fierce Winds",
"cost": 2,
"cooldown": 8,
"explanation": "Dash towards the enemy 2 times, dealing ??? P.DMG to enemies within range, knocking them down for 3 sec.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Increase Crit Chance by 250"
],
"perks": [
4,
"DMG is increased by 40%.",
"In exchange for 1 additional mana cost, target changes to the enemy with the highest ATK."
]
},
{
"name": "Wind Reading",
"cost": 3,
"cooldown": 15,
"explanation": "P.Dodge Chance rises by 250 for 15 sec and ATK rises by ???.",
"attributes": [
"ATK increase rate is increased by 10%.",
"ATK increase rate is increased by 10%.",
"ATK increase rate is increased by 10%."
],
"perks": [
3,
"ATK boost is increased by 40%.",
"Increases own Crit Chance by 600."
]
},
{
"name": "Dive Bomb",
"cost": 3,
"cooldown": 12,
"explanation": "Fly high and strike the enemy below. Inflicts ??? P.DMG to enemies. 50% DMG increase to enemies that have been knocked down.",
"attributes": [
"Increase DMG by 10%",
"Increase DMG by 15%",
"Inflict DMG upon the enemy and stun them for 3 sec"
],
"perks": [
4,
"DMG is increased by 40%.",
"Reduces cooldown by 10% per each enemy that takes Critical DMG."
]
},
{
"name": "Tornado Strike",
"cost": -1,
"cooldown": 0.5,
"explanation": "Upon auto-attacking, the 5th hit of the combo has a 30% chance to inflict ??? additional P.DMG upon the enemy and knock them down.",
"attributes": [
"Increase DMG by 10%.",
"Increase DMG by 15%.",
"Increase DMG by 25%."
],
"perks": [
3,
"Activation chance is boosted by 10%.",
"Atk Spd is boosted by 300 when effect takes place."
]
}
],
"uw": {
"name": "Cursed Claws, Baroro",
"explanation": "Upon dealing a Critical Hit, deal constant P.DMG {0}% of ATK for 10 seconds. Enemy receives {1}% increased P.DMG for the duration.",
"thumbnail": "http://krw-img.s3.amazonaws.com/Baroru.png",
"effects": [
[100, 120, 144, 172, 207, 250],
[20, 24, 28, 34, 41, 50]
]
},
"perks": [
"ATK, DEF, HP+10% / P.Dodge +100",
"Upon dodging, All skill cooldowns are reduced by 2%. Also, ATK is boosted by 3%, and Atk Spd is boosted by 30. The ATK and Atk Spd boost can stack up to 10 times."
]
},
{
"name": "Viska",
"title": "Demon Eater",
"class": "Warrior",
"position": "Front",
"type": "Magical",
"main stats" : {
"hp": 1150488,
"atk": 17848,
"pdef": 5816,
"mdef": 6984
},
"additional stats": {
"mp/atk": 325,
"crit": 150,
"cdmg": 0,
"penetration": 150,
"accuracy": 100,
"p.dodge": 100,
"m.dodge": 100,
"p.block": 0,
"m.block": 0,
"p.tough": 100,
"m.tough": 100,
"m.block def": 0,
"cc resist": 150
},
"thumbnail": "http://krw-img-thumb.s3.amazonaws.com/Viskaico.png/70px-Viskaico.png",
"skills": [
{