-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheroes.json
11620 lines (11620 loc) · 558 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
{
"leon": {
"faction": "Grancia Empire",
"type": "Legendary",
"class": "Warrior",
"skillName": "Call of Holy Sword",
"passiveSkillName": "Ultimate Holy Sword",
"skillDescription": "Summons Holy Sword that deals physical damage equal to (80/180/340)% of hero's attack power based on chain length.",
"form": [
{
"name": "Leon",
"star": 1,
"level": 10,
"atkPower": [23.9],
"hp": [656.9],
"critChance": [0.115],
"armor": [115.1],
"resistance": [21],
"critDamage": [0.5],
"accuracy": [0],
"evasion": [0],
"background": "Leon has just started his adventure and he has no idea what he's doing. He spends more time cleaning up his messes than saving damsels.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Ancient Dungeon: Clear Reward!"
]
},
{
"name": "Skilled Leon",
"star": 2,
"level": 20,
"atkPower": [46.7, 51.4],
"hp": [1040.7, 1144.8],
"critChance": [0.115, 0.115],
"armor": [165.9, 182.5],
"resistance": [29.9, 32.8],
"critDamage": [0.5, 0.5],
"accuracy": [0, 0],
"evasion": [0, 0],
"background": "Leon has learned from his mistakes (and his scrapes and bruises) and has become a competent if not spectacular hero.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Famous Leon",
"star": 3,
"level": 30,
"atkPower": [112.7, 124, 135.2],
"hp": [1773.2, 1950.5, 2127.8],
"critChance": [0.115, 0.115, 0.115],
"armor": [216.7, 238.4, 260.1],
"resistance": [38.7, 42.6, 46.5],
"critDamage": [0.5, 0.5, 0.5],
"accuracy": [0, 0, 0],
"evasion": [0, 0, 0],
"background": "Leon's famous now and he lets it get to his head. He draws his pen faster to sign autographs than he draws his sword for combat.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Leon of Destiny",
"star": 4,
"level": 40,
"atkPower": [180, 198, 216, 234],
"hp": [2739.3, 3013.2, 3287.1, 3561.1],
"critChance": [0.115, 0.115, 0.115, 0.115],
"armor": [267.6, 294.4, 321.2, 347.9],
"resistance": [47.8, 52.6, 57.3, 62.1],
"critDamage": [0.5, 0.5, 0.5, 0.5],
"accuracy": [0, 0, 0, 0],
"evasion": [0, 0, 0, 0],
"background": "Leon's big shot attitude almost cost him his life and the lives of those he had sworn to protect. He realizes now that he set out to become a hero to save people, not to be rewarded with fame and fortune.",
"skill": {
"level": 2,
"passive": "Summons the ultimate Holy Sword every 4 blocks. Deals physical damage equal to 380% of attack power and ignores target's armor equal to 50% of own armor."
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Leon of Fate",
"star": 5,
"level": 50,
"atkPower": [305.9, 336.5, 367.1, 397.7, 428.3],
"hp": [4184.3, 4602.7, 5021.1, 5439.5, 5858],
"critChance": [0.115, 0.115, 0.115, 0.115, 0.115],
"armor": [318.4, 350.2, 382.1, 413.9, 445.7],
"resistance": [57, 62.7, 68.4, 74.1, 79.8],
"critDamage": [0.5, 0.5, 0.5, 0.5, 0.5],
"accuracy": [0, 0, 0, 0, 0],
"evasion": [0, 0, 0, 0, 0],
"background": "Leon has been charged by the goddesses to save the world. Finally, he can put all that adventuring to good use!",
"skill": {
"level": 2,
"passive": "Summons the ultimate Holy Sword every 4 blocks. Deals physical damage equal to 380% of attack power and ignores target's armor equal to 50% of own armor."
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Leon of Light",
"star": 6,
"level": 60,
"atkPower": [459.3, 505.2, 551.1, 597.1, 643, 688.9, 863.9],
"hp": [6082.3, 6690.5, 7298.7, 7906.9, 8515.2, 9123.4, 12194.4],
"critChance": [0.115, 0.115, 0.115, 0.115, 0.115, 0.115, 0.242],
"armor": [369.3, 406.2, 443.1, 480.1, 517, 553.9, 932.9],
"resistance": [65.8, 72.4, 79, 85.6, 92.1, 98.7, 165.7],
"critDamage": [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 1],
"accuracy": [0, 0, 0, 0, 0, 0, 0.15],
"evasion": [0, 0, 0, 0, 0, 0, 0.15],
"background": "Every time Leon fights against evil, dazzling lights cover his entire body, radiating an unbreachable energy. The monsters tremble at his sight, let them fall to Leon of Light",
"skill": {
"level": 3,
"passive": "Summons Ultimate Holy Sword whenever the hero uses a chain-3 skill, that deals physical damage equal to 380% of the hero's attack power and also deals extra physical damage equal to 10% of the hero's HP. The bonus damage ignores enemy's armor equal to 100% of the hero's armor."
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
}
]
},
"rochefort": {
"faction": "Southwestern Alliance",
"type": "Legendary",
"class": "Warrior",
"skillName": "Hawk Feather",
"passiveSkillName": "Hawk Flight",
"skillDescription": "When a skill block is used it deals physical damage equal to (100/150/250)% according to the chain length, and provides a (25/50/75)% chance of blocking up to 10 attacks for the next 5 secs.",
"form": [
{
"name": "Rochefort",
"star": 1,
"level": 10,
"atkPower": [32.2],
"hp": [593.6],
"critChance": [0.2],
"armor": [88.5],
"resistance": [16.1],
"critDamage": [0.5],
"accuracy": [0],
"evasion": [0],
"background": "Rochefort was a simple fencing instructor until he was drafted into the Tristan army.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Ancient Dungeon: Clear Reward!"
]
},
{
"name": "Libertine Rochefort",
"star": 2,
"level": 20,
"atkPower": [57.5, 63.3],
"hp": [907, 997.7],
"critChance": [0.2, 0.2],
"armor": [127.7, 140.5],
"resistance": [23, 25.3],
"critDamage": [0.5, 0.5],
"accuracy": [0, 0],
"evasion": [0, 0],
"background": "Rochefort became so sick of his life that he illegally escaped from the army seeking freedom and beautiful women.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Romantic Rochefort",
"star": 3,
"level": 30,
"atkPower": [125.4, 138, 150.5],
"hp": [1545.5, 1700.1, 1854.6],
"critChance": [0.2, 0.2, 0.2],
"armor": [166.8, 183.5, 200.2],
"resistance": [30, 33, 36],
"critDamage": [0.5, 0.5, 0.5],
"accuracy": [0, 0, 0],
"evasion": [0, 0, 0],
"background": "As Rochefort entered the war with the Neth Empire, he encountered D'artagnan and fell in love. He lost an eye while trying to protect her in a fierce battle.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "One-Eyed Rochefort",
"star": 4,
"level": 40,
"atkPower": [209.6, 230.6, 251.6, 272.5],
"hp": [2387.5, 2626.3, 2865, 3103.8],
"critChance": [0.2, 0.2, 0.2, 0.2],
"armor": [206, 226.6, 247.2, 267.8],
"resistance": [36.9, 40.5, 44.2, 47.9],
"critDamage": [0.5, 0.5, 0.5, 0.5],
"accuracy": [0, 0, 0, 0],
"evasion": [0, 0, 0, 0],
"background": "Rochefort announced his desire to join the Musketeers. His request is denied, but he continued to train.",
"skill": {
"level": 2,
"passive": "If an attack is blocked, the Hero immediately counterattacks dealing physical damage equal to 100% of the Hero's defense. When a skill block is used after the counterattack, the Hero counterattacks 3 additional times. (Activates once every second)"
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Musketeer Rochefort",
"star": 5,
"level": 50,
"atkPower": [361.3, 397.4, 433.5, 469.7, 505.8],
"hp": [3646.7, 4011.4, 4376.1, 4740.7, 5105.4],
"critChance": [0.2, 0.2, 0.2, 0.2, 0.2],
"armor": [244.9, 269.4, 293.9, 318.3, 342.8],
"resistance": [43.8, 48.1, 52.5, 56.9, 61.3],
"critDamage": [0.5, 0.5, 0.5, 0.5, 0.5],
"accuracy": [0, 0, 0, 0, 0],
"evasion": [0, 0, 0, 0, 0],
"background": "Rochefort's exploits could no longer be ignored, and he was allowed admission into the Musketeers.",
"skill": {
"level": 2,
"passive": "If an attack is blocked, the Hero immediately counterattacks dealing physical damage equal to 100% of the Hero's defense. When a skill block is used after the counterattack, the Hero counterattacks 3 additional times. (Activates once every second)"
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Victor Rochefort",
"star": 6,
"level": 60,
"atkPower": [551.3, 606.5, 661.6, 716.7, 771.8, 827, 1007],
"hp": [5301.1, 5831.2, 6361.3, 6891.4, 7421.5, 7951.6, 10559.6],
"critChance": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.383],
"armor": [284.3, 312.7, 341.2, 369.6, 398, 426.5, 754.5],
"resistance": [50.5, 55.5, 60.6, 65.6, 70.7, 75.7, 133.7],
"critDamage": [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 1],
"accuracy": [0, 0, 0, 0, 0, 0, 0.14],
"evasion": [0, 0, 0, 0, 0, 0, 0.1],
"background": "His name became a symbol of victory in Trista, and his legend grew among the people. However, his heart belonged to a single person.",
"skill": {
"level": 3,
"passive": "If an attack is blocked, the Hero immediately counterattacks dealing physical damage equal to 200% of the Hero's defense. When a skill block is used after the counterattack, the Hero counterattacks 3 additional times. When the counterattack is a critical hit, the Hero immediately generates a block of its own. (Activates once every second)"
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
}
]
},
"kriemhild": {
"faction": "Unknown",
"type": "Legendary",
"class": "Paladin",
"skillName": "Flamespout",
"passiveSkillName": "Ultimate Flamespout",
"skillDescription": "Explodes with the energy of the earth, dealing physical damage equal to (50/142/322)% of attack power based on the chain number.",
"form": [
{
"name": "Kriemhild",
"star": 1,
"level": 10,
"atkPower": [34.4],
"hp": [547.4],
"critChance": [0.115],
"armor": [16.1],
"resistance": [88.5],
"critDamage": [0.5],
"accuracy": [0],
"evasion": [0],
"background": "A female knight of a tribe known for fighting demons. The most skillful knights of this tribe are Kriemhild and Siegried. People think there's a lot of chemistry going on between those two.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Ancient Dungeon: Clear Reward!"
]
},
{
"name": "Cursed Kriemhild",
"star": 2,
"level": 20,
"atkPower": [61.2, 67.3],
"hp": [871, 958.1],
"critChance": [0.115, 0.115],
"armor": [23, 25.3],
"resistance": [127.7, 140.5],
"critDamage": [0.5, 0.5],
"accuracy": [0, 0],
"evasion": [0, 0],
"background": "A demon slaying knight who was cursed by a powerful demon to sleep forever.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Kriemhild of Misfortune",
"star": 3,
"level": 30,
"atkPower": [129.6, 142.6, 155.6],
"hp": [1464.4, 1610.9, 1757.3],
"critChance": [0.115, 0.115, 0.115],
"armor": [30, 33, 36],
"resistance": [166.8, 183.5, 200.2],
"critDamage": [0.5, 0.5, 0.5],
"accuracy": [0, 0, 0],
"evasion": [0, 0, 0],
"background": "To save Kriemhild from the cruse, her lover, Siegfried, uses a forbidden tribal spell to undertake Kriemhild's curse for himself. When Kriemhild awakens and learns what happened, she is overwhelmed with grief and is unable to leave her lover's side.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Kriemhild of Massacre",
"star": 4,
"level": 40,
"atkPower": [217.4, 239.1, 260.8, 282.6],
"hp": [2261.8, 2487.9, 2714.1, 2940.3],
"critChance": [0.115, 0.115, 0.115, 0.115],
"armor": [36.9, 40.5, 44.2, 47.9],
"resistance": [206, 226.6, 247.2, 267.8],
"critDamage": [0.5, 0.5, 0.5, 0.5],
"accuracy": [0, 0, 0, 0],
"evasion": [0, 0, 0, 0],
"background": "Not long after Kriemhild lost her lover, demons come looking for Siegfried's soul. Kriemhild's sorrow turns to rage, slaughtering all the demons that approach Siegfried.",
"skill": {
"level": 2,
"passive": "When a chain-3 skill is used, auto attacks for the next 2 seconds deal physical damage equal to 380% of the hero's attack power and activate the ultimate Flamespout that stuns enemies for 0.75 seconds (max 2 times). This effect cannot be canceled and is not enhanced by buffs."
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Kriemhild of Protection",
"star": 5,
"level": 50,
"atkPower": [376.8, 414.5, 452.2, 489.9, 527.6],
"hp": [3469.9, 3816.8, 4163.8, 4510.8, 4857.8],
"critChance": [0.115, 0.115, 0.115, 0.115, 0.115],
"armor": [43.8, 48.1, 52.5, 56.9, 61.3],
"resistance": [244.9, 269.4, 293.9, 318.3, 342.8],
"critDamage": [0.5, 0.5, 0.5, 0.5, 0.5],
"accuracy": [0, 0, 0, 0, 0],
"evasion": [0, 0, 0, 0, 0],
"background": "The only way for Siegfried can wake is for him to find an exit in his dream world. It is an endless wait for Kriemhild, but she has faith in him. She makes a resolution not to leave his side until he wakes up.",
"skill": {
"level": 2,
"passive": "When a chain-3 skill is used, auto attacks for the next 2 seconds deal physical damage equal to 380% of the hero's attack power and activate the ultimate Flamespout that stuns enemies for 0.75 seconds (max 2 times). This effect cannot be canceled and is not enhanced by buffs."
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Kriemhild of Oath",
"star": 6,
"level": 60,
"atkPower": [574, 631.4, 688.8, 746.2, 803.6, 861, 1035],
"hp": [5037.2, 5541, 6044.7, 6548.4, 7052.1, 7555.8, 10286.8],
"critChance": [0.115, 0.115, 0.115, 0.115, 0.115, 0.115, 0.242],
"armor": [50.5, 55.5, 60.6, 65.6, 70.7, 75.7, 133.7],
"resistance": [284.3, 312.7, 341.2, 369.6, 398, 426.5, 754.5],
"critDamage": [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 1.15],
"accuracy": [0, 0, 0, 0, 0, 0, 0.2],
"evasion": [0, 0, 0, 0, 0, 0, 0.1],
"background": "A Goddess appears before her as she is protecting Siegfried. The Goddess offers her help to awaken him, and in return asks Kriemhild to help them save the world from danger when the time comes. For her lover, she makes an oath to do so.",
"skill": {
"level": 3,
"passive": "When a chain-3 skill is used, auto attacks for the next 5 seconds deal physical damage equal to 380% of the hero's attack power and activate the ultimate Flamespout that stuns enemies for 0.75 seconds (max 4 times). This effect cannot be canceled and is not enhanced by buffs."
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
}
]
},
"roland": {
"faction": "Unknown",
"type": "Legendary",
"class": "Paladin",
"skillName": "Guardian of Light",
"passiveSkillName": "Brilliant Flash",
"skillDescription": "When a skill block is used, the Hero deals physical damage equal to (50/100/175)% of the hero's resistance according to the chain length and the Hero's defense increases by 25% of hero's resistance for 5 secs.",
"form": [
{
"name": "Roland",
"star": 1,
"level": 10,
"atkPower": [19.8],
"hp": [977.5],
"critChance": [0.115],
"armor": [16.1],
"resistance": [88.5],
"critDamage": [0.5],
"accuracy": [0],
"evasion": [0],
"background": "An orphan who became an apprentice monk in service to the Goddesses.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Ancient Dungeon: Clear Reward!"
]
},
{
"name": "Strong Roland",
"star": 2,
"level": 20,
"atkPower": [35.3, 38.9],
"hp": [1555.2, 1710.7],
"critChance": [0.115, 0.115],
"armor": [23, 25.3],
"resistance": [127.7, 140.5],
"critDamage": [0.5, 0.5],
"accuracy": [0, 0],
"evasion": [0, 0],
"background": "Roland was very strong, showing brilliant talents in physical activities rather than practicing asceticism. At first he was a troublemaker but he gained the trust of the people after he successfully took on the village thugs.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Monk Roland",
"star": 3,
"level": 30,
"atkPower": [74.8, 82.3, 89.8],
"hp": [2615.1, 2876.7, 3138.2],
"critChance": [0.115, 0.115, 0.115],
"armor": [30, 33, 36],
"resistance": [166.8, 183.5, 200.2],
"critDamage": [0.5, 0.5, 0.5],
"accuracy": [0, 0, 0],
"evasion": [0, 0, 0],
"background": "Roland begins to agonize about his future. During his slump, he met Maria. After that, Roland starts his training to become a true monk so that he can be with Maria.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Shining Roland",
"star": 4,
"level": 40,
"atkPower": [133.9, 147.3, 160.7, 174.1],
"hp": [3877.9, 4265.7, 4653.5, 5041.3],
"critChance": [0.115, 0.115, 0.115, 0.115],
"armor": [36.9, 40.5, 44.2, 47.9],
"resistance": [206, 226.6, 247.2, 267.8],
"critDamage": [0.5, 0.5, 0.5, 0.5],
"accuracy": [0, 0, 0, 0],
"evasion": [0, 0, 0, 0],
"background": "Roland's efforts did not go unnoticed, and he is offered a position with the Paladins of the Goddesses.",
"skill": {
"level": 2,
"passive": "After the hero's skill block is used, the hero heals the entire party for 40% of the hero's attack power every time the hero is attacked by an enemy for the next 5 secs."
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Roland of Justice",
"star": 5,
"level": 50,
"atkPower": [231.8, 255, 278.2, 301.3, 324.5],
"hp": [5947.8, 6542.6, 7137.3, 7732.1, 8326.9],
"critChance": [0.115, 0.115, 0.115, 0.115, 0.115],
"armor": [43.8, 48.1, 52.5, 56.9, 61.3],
"resistance": [244.9, 269.4, 293.9, 318.3, 342.8],
"critDamage": [0.5, 0.5, 0.5, 0.5, 0.5],
"accuracy": [0, 0, 0, 0, 0],
"evasion": [0, 0, 0, 0, 0],
"background": "Roland dedicated his life as a paladin to defending Maria.",
"skill": {
"level": 2,
"passive": "After the hero's skill block is used, the hero heals the entire party for 40% of the hero's attack power every time the hero is attacked by an enemy for the next 5 secs."
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Roland of Honor",
"star": 6,
"level": 60,
"atkPower": [353.3, 388.6, 424, 459.3, 494.6, 530, 629],
"hp": [8636.2, 9499.9, 10363.5, 11227.1, 12090.7, 12954.3, 18430.3],
"critChance": [0.115, 0.115, 0.115, 0.115, 0.115, 0.115, 0.242],
"armor": [50.5, 55.5, 60.6, 65.6, 70.7, 75.7, 133.7],
"resistance": [284.3, 312.7, 341.2, 369.6, 398, 426.5, 754.5],
"critDamage": [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 1.04],
"accuracy": [0, 0, 0, 0, 0, 0, 0.15],
"evasion": [0, 0, 0, 0, 0, 0, 0.15],
"background": "Roland guarded Maria with all his might, and his skill and prowess were legendary throughout the world.",
"skill": {
"level": 3,
"passive": "After a skill block is used, the hero heals the entire party for 60% of the hero's attack power every time the hero is attacked by an enemy for the next 5 secs (5 times max). After the 8th healing, the hero stuns all enemies for 2 secs and generates a block of his own (once every 3 secs)."
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
}
]
},
"sigruna": {
"faction": "Unknown",
"type": "Legendary",
"class": "Archer",
"skillName": "Driving Feathers",
"passiveSkillName": "Fluttering Arrow Feathers",
"skillDescription": "Shoots feathers that attack the enemies in back, dealing magic damage equal to (10/25/52)% of the hero's attack power based on chain length.",
"form": [
{
"name": "Sigruna",
"star": 1,
"level": 10,
"atkPower": [40.3],
"hp": [540.5],
"critChance": [0.173],
"armor": [51.7],
"resistance": [51.7],
"critDamage": [0.5],
"accuracy": [0],
"evasion": [0],
"background": "Sigruna is a member of the Silver Elf clan. She lives a very tough life because she is from the lowest caste in the elves' caste-based society.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Ancient Dungeon: Clear Reward!"
]
},
{
"name": "Sigruna of Endeavor",
"star": 2,
"level": 20,
"atkPower": [73.2, 80.5],
"hp": [858.3, 944.2],
"critChance": [0.173, 0.173],
"armor": [74.8, 82.3],
"resistance": [74.8, 82.3],
"critDamage": [0.5, 0.5],
"accuracy": [0, 0],
"evasion": [0, 0],
"background": "One day, her parents were attacked by monsters. In order to support her family, she tries to climb the social ladder at all costs. There is only one way to do this: join the King's Elite Guard. To make it, Sigruna trains whenever possible.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Sigruna of Spirit",
"star": 3,
"level": 30,
"atkPower": [157.1, 172.8, 188.5],
"hp": [1442.3, 1586.5, 1730.7],
"critChance": [0.173, 0.173, 0.173],
"armor": [97.8, 107.6, 117.3],
"resistance": [97.8, 107.6, 117.3],
"critDamage": [0.5, 0.5, 0.5],
"accuracy": [0, 0, 0],
"evasion": [0, 0, 0],
"background": "After failing her 7th examination, she gives up on her hopes and dreams. Her parents, who have recovered from the attack, encouraged her to go on. Now Sigruna feels unstoppable.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Expert Archer Sigruna",
"star": 4,
"level": 40,
"atkPower": [261.8, 288, 314.2, 340.4],
"hp": [2230.1, 2453.1, 2676.1, 2899.2],
"critChance": [0.173, 0.173, 0.173, 0.173],
"armor": [120.9, 133, 145.1, 157.2],
"resistance": [120.9, 133, 145.1, 157.2],
"critDamage": [0.5, 0.5, 0.5, 0.5],
"accuracy": [0, 0, 0, 0],
"evasion": [0, 0, 0, 0],
"background": "Sigruna's efforts finally pay off. With her excellent archery skills, she joins the Elite Guard and is now an expert archer.",
"skill": {
"level": 2,
"passive": "Using chain-3 skill activates 4 magic arrows that deal magic damage equal to 70% of the hero's attack power."
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "God Archer Sigruna",
"star": 5,
"level": 50,
"atkPower": [452.7, 498, 543.2, 588.5, 633],
"hp": [3437.8, 3781.6, 4125.3, 4469.1, 4812.9],
"critChance": [0.173, 0.173, 0.173, 0.173, 0.173],
"armor": [143.6, 157.9, 172.3, 186.7, 201],
"resistance": [143.6, 157.9, 172.3, 186.7, 201],
"critDamage": [0.5, 0.5, 0.5, 0.5, 0.5],
"accuracy": [0, 0, 0, 0, 0],
"evasion": [0, 0, 0, 0, 0],
"background": "Sigruna continues to train, even after joining the Elite Guard. Her humble beginnings lead her to conserve everything, always making sure not to waste a single arrow. Elven tradition dictates that trees are sacred, so Sigruna's act of not wasting arrows made from trees has made her a role model for others. She is now known as the \"Archer God\".",
"skill": {
"level": 2,
"passive": "Using chain-3 skill activates 4 magic arrows that deal magic damage equal to 70% of the hero's attack power."
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Demon Archer Sigruna",
"star": 6,
"level": 60,
"atkPower": [689.4, 758.3, 827.3, 896.2, 965.2, 1034.1, 1264.1],
"hp": [4992.5, 5491.8, 5991, 6490.3, 6989.5, 7488.8, 9427.8],
"critChance": [0.173, 0.173, 0.173, 0.173, 0.173, 0.173, 0.345],
"armor": [166.6, 183.3, 199.9, 216.6, 233.2, 249.9, 374.9],
"resistance": [166.6, 183.3, 199.9, 216.6, 233.2, 249.9, 374.9],
"critDamage": [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 1],
"accuracy": [0, 0, 0, 0, 0, 0, 0.13],
"evasion": [0, 0, 0, 0, 0, 0, 0.1],
"background": "One day, demons had attacked the clan, and Sigruna shoots down countless numbers of them. She draws her bow as if she was born to hunt down the demons. Afterward, a Goddess appears asking her to use that power to save the world.",
"skill": {
"level": 3,
"passive": "Using chain-3 skill activates 4 magic arrows that deal magic damage equal to 100% of the hero's attack power. These arrows have an additional 25% chance to crit."
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
}
]
},
"demona": {
"faction": "Unknown",
"type": "Legendary",
"class": "Archer",
"skillName": "Thorns of Hell",
"passiveSkillName": "Hellfire Arrow",
"skillDescription": "Shoots thorns of hell to an enemy in the rear and deals magic damage equal to (50/120/250)% of the Hero's attack power. A flame stack will pile up equal to (1/2/3).",
"form": [
{
"name": "Demona",
"star": 1,
"level": 10,
"atkPower": [40.3],
"hp": [485.9],
"critChance": [0.25],
"armor": [51.7],
"resistance": [51.7],
"critDamage": [0.5],
"accuracy": [0],
"evasion": [0],
"background": "Centuries ago, the Apostles brought demons from another dimension to destroy Hasla, and those demons wrecked havoc using humans as hosts. Demona was one of these human hosts.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Ancient Dungeon: Clear Reward!"
]
},
{
"name": "Demona the Fiend",
"star": 2,
"level": 20,
"atkPower": [73.2, 80.5],
"hp": [771.5, 848.7],
"critChance": [0.25, 0.25],
"armor": [74.8, 82.3],
"resistance": [74.8, 82.3],
"critDamage": [0.5, 0.5],
"accuracy": [0, 0],
"evasion": [0, 0],
"background": "Demona battled against the evil inside of her, until one day, a saintess exorcised the demon from her, leaving only the power behind. This was the birth of the first devil.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Demona of the Pit",
"star": 3,
"level": 30,
"atkPower": [157.1, 172.8, 188.5],
"hp": [1296.4, 1426.1, 1555.7],
"critChance": [0.25, 0.25, 0.25],
"armor": [97.8, 107.6, 117.3],
"critDamage": [0.5, 0.5, 0.5],
"resistance": [97.8, 107.6, 117.3],
"accuracy": [0, 0, 0],
"evasion": [0, 0, 0],
"background": "Humans associated the demons with evil. Demona fought a lonely fight against humanity. However, more and more demons were born, and Demona gathered them together.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Demona of Revenge",
"star": 4,
"level": 40,
"atkPower": [261.8, 288, 314.2, 340.4],
"hp": [2004.7, 2205.2, 2405.6, 2606.1],
"critChance": [0.25, 0.25, 0.25, 0.25],
"armor": [120.9, 133, 145.1, 157.2],
"resistance": [120.9, 133, 145.1, 157.2],
"critDamage": [0.5, 0.5, 0.5, 0.5],
"accuracy": [0, 0, 0, 0],
"evasion": [0, 0, 0, 0],
"background": "After the war with the Apostles, the Goddesses started to hunt the Demons for their crimes. Demona summoned the Demons together and began a war against the Goddesses.",
"skill": {
"level": 2,
"passive": "An enemy damaged by Thorns of Hell is lit on fire and receives neutral damage equal to 50% of the Hero's Attack Power. When this effect is stacked 4 times, the hero shoots a flame arrow that deals magic damage equal to 350% of the Hero's Attack Power. (Activates once every 3 seconds)"
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Demona of Dawn",
"star": 5,
"level": 50,
"atkPower": [452.7, 498, 543.2, 588.5, 633.8],
"hp": [3089.9, 3398.9, 3707.9, 4016.9, 4325.8],
"critChance": [0.25, 0.25, 0.25, 0.25, 0.25],
"armor": [143.6, 157.9, 172.3, 186.7, 201],
"resistance": [143.6, 157.9, 172.3, 186.7, 201],
"critDamage": [0.5, 0.5, 0.5, 0.5, 0.5],
"accuracy": [0, 0, 0, 0, 0],
"evasion": [0, 0, 0, 0, 0],
"background": "Demona grew weary of the constant persecution of the demons, and decided to lead them to a new land. This marked the beginning of a new dawn for the demons.",
"skill": {
"level": 2,
"passive": "An enemy damaged by Thorns of Hell is lit on fire and receives neutral damage equal to 50% of the Hero's Attack Power. When this effect is stacked 4 times, the hero shoots a flame arrow that deals magic damage equal to 350% of the Hero's Attack Power. (Activates once every 3 seconds)"
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Demona of the Red Lotus",
"star": 6,
"level": 60,
"atkPower": [689.4, 758.3, 827.3, 896.2, 925.2, 1034.1, 1264.1],
"hp": [4488, 4936.9, 5385.7, 5834.5, 6283.3, 6732.1, 8458.1],
"critChance": [0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.37],
"armor": [166.6, 183.3, 199.9, 216.6, 233.2, 249.9, 374.9],
"resistance": [166.6, 183.3, 199.9, 216.6, 233.2, 249.9, 374.9],
"critDamage": [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 1.01],
"accuracy": [0, 0, 0, 0, 0, 0, 0.12],
"evasion": [0, 0, 0, 0, 0, 0, 0.11],
"background": "The demons that remained in Hasla were hunted down as the Order of the Goddesses grew, and Demona knew she had to return. She entered the Primal mountain and awakened the power of the Red Lotus.",
"skill": {
"level": 3,
"passive": "An enemy damaged by Thorns of Hell is lit on fire and receives neutral damage equal to 50% of the Hero's Attack Power. When this effect is stacked 4 times, the hero shoots the ultimate flame arrow that deals 150% neutral damage and 350% magic damage. (Activates once every 3 seconds)"
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
}
]
},
"d'artagnan": {
"faction": "Southwestern Alliance",
"type": "Legendary",
"class": "Hunter",
"skillName": "Consecutive Fire",
"passiveSkillName": "Concentrated Shot",
"skillDescription": "Fires consecutive bullets, dealing physical damage equal to (81/297/540)% of attack power based on the chain number.",
"form": [
{
"name": "D'Artagnan",
"star": 1,
"level": 10,
"atkPower": [41.3],
"hp": [441],
"critChance": [0.23],
"armor": [88.2],
"resistance": [21],
"critDamage": [0.5],
"accuracy": [0],
"evasion": [0],
"background": "A new gunman in the desert area. Despite not used to using a gun she still dreams of becoming a sheriff one day.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Ancient Dungeon: Clear Reward!"
]
},
{
"name": "Hunter D'Artagnan",
"star": 2,
"level": 20,
"atkPower": [78.5, 86.4],
"hp": [700.6, 770.7],
"critChance": [0.23, 0.23],
"armor": [127, 139.8],
"resistance": [29.9, 32.8],
"critDamage": [0.5, 0.5],
"accuracy": [0, 0],
"evasion": [0, 0],
"background": "A women who has fully mastered the gun through endless training. She's well known for arresting countless outlaws.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "Musketeer D'Artagnan",
"star": 3,
"level": 30,
"atkPower": [176.8, 194.5, 212.2],
"hp": [1176.9, 1294.6, 1412.3],
"critChance": [0.23, 0.23, 0.23],
"armor": [165.8, 182.4, 199],
"resistance": [38.7, 42.6, 46.5],
"critDamage": [0.5, 0.5, 0.5],
"accuracy": [0, 0, 0],
"evasion": [0, 0, 0],
"background": "Highly skilled at capturing outlaws and a master of weaponry. D'Artagnan fights in the war between the Neth Empire and the Western Country. Her prowess on the battlefield earns her the attention of the Musketeers. She joins the Musketeers and although they are few in number, they are a powerful force in the Western Country.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "D'Artagnan of Loyalty",
"star": 4,
"level": 40,
"atkPower": [300.4, 330.4, 360.5, 390.5],
"hp": [1820, 2002, 2184, 2366],
"critChance": [0.23, 0.23, 0.23, 0.23],
"armor": [205, 225.5, 246, 266.5],
"resistance": [47.8, 52.6, 57.3, 62.1],
"critDamage": [0.5, 0.5, 0.5, 0.5],
"accuracy": [0, 0, 0, 0],
"evasion": [0, 0, 0, 0],
"background": "During the war, the forces of the Neth Empire marched callously past even their own injured soldiers, but D'Artagnan remained to protect her own. Thus she became a symbol of compassion and justice.",
"skill": {
"level": 2,
"passive": "Whenever this Hero is healed or uses a skill block, it has a 50% chance to immediately use a chain-3 Consecutive Fire. (Activates once every 3 seconds.)"
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "D'Artagnan of Faith",
"star": 5,
"level": 50,
"atkPower": [528.9, 581.8, 634.7, 687.6, 740.5],
"hp": [2805, 3085.5, 3366, 3646.5, 3927],
"critChance": [0.23, 0.23, 0.23, 0.23, 0.23],
"armor": [243.7, 268.1, 292.4, 316.8, 341.2],
"resistance": [57, 62.7, 68.4, 74.1, 79.8],
"critDamage": [0.5, 0.5, 0.5, 0.5, 0.5],
"accuracy": [0, 0, 0, 0, 0],
"evasion": [0, 0, 0, 0, 0],
"background": "Having survived many battles without losing faith, she has become a symbol of faith to the people. her popularity is widespread throughout the land.",
"skill": {
"level": 2,
"passive": "Whenever this Hero is healed or uses a skill block, it has a 50% chance to immediately use a chain-3 Consecutive Fire. (Activates once every 3 seconds.)"
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
},
{
"name": "D'Artagnan of Iron Will",
"star": 6,
"level": 60,
"atkPower": [812.7, 894, 975.3, 1056.5, 1137.8, 1219.1, 1424.1],
"hp": [4074.4, 4481.9, 4889.3, 5296.8, 5704.2, 6111.7, 7701.7],
"critChance": [0.23, 0.23, 0.23, 0.23, 0.23, 0.23, 0.335],
"armor": [282.6, 310.8, 339.1, 367.3, 395.6, 423.9, 564.9],
"resistance": [65.8, 72.4, 79, 85.6, 92.1, 98.7, 131.7],
"critDamage": [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 1],
"accuracy": [0, 0, 0, 0, 0, 0, 0.17],
"evasion": [0, 0, 0, 0, 0, 0, 0.1],
"background": "She never gives up and her tenacity is legendary. She is the envy of every man in the Western Country.",
"skill": {
"level": 3,
"passive": "Whenever this Hero is healed or uses a skill block, it has a 75% chance to immediately use a chain-3 Consecutive Fire. (Activates once every 3 seconds.)"
},
"howToGet": [
"Promote Hero: Promoting Heroes!"
]
}
]
},
"teresa": {
"faction": "Pumpkin City",
"type": "Legendary",
"class": "Hunter",
"skillName": "The Last Light",
"passiveSkillName": "Artillery of Light",
"skillDescription": "Shoots a magic beam dealing magical damage equal to (75/150/275)% of the Hero's attack power according to the chain length and leaves the Mark of Light on the eenmy of 5 secs.",
"form": [
{
"name": "Teresa",
"star": 1,
"level": 10,
"atkPower": [53.1],
"hp": [389.2],
"critChance": [0.23],
"armor": [67.8],
"resistance": [16.1],
"critDamage": [0.5],
"accuracy": [0],
"evasion": [0],
"background": "Born in a slum in Trista. She made her living by stealing and begging, but she was quick-witted and dexterous. People say that her father used to be a legendary hunter.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [
"Ancient Dungeon: Clear Reward!"
]
},
{
"name": "Poor Teresa",
"star": 2,
"level": 20,
"atkPower": [96.6, 106.2],
"hp": [618.2, 680],
"critChance": [0.23, 0.23],
"armor": [97.8, 107.6],
"resistance": [23, 25.3],
"critDamage": [0.5, 0.5],
"accuracy": [0, 0],
"evasion": [0, 0],
"background": "Teresa got caught stealing from a Western outlaw. She tried to escape by grabbing the outlaw's weapon but accidently shot him.",
"skill": {
"level": 1,
"passive": ""
},
"howToGet": [