-
Notifications
You must be signed in to change notification settings - Fork 10
/
heros.json
895 lines (895 loc) · 24.3 KB
/
heros.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
[
{
"id": "H015",
"name": "Lyrio Farn",
"heroClass": "Sniper",
"mainstat": "AGI",
"color": "A2F76F",
"icon": "SniperIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Bow)"
],
"role": [
"Long-range Burst DPS"
],
"description": [
"Long-range damage dealer.",
"Has good mobility."
],
"spec": [
"Soulstalker - Cursed Arrow",
"Soulbane - Cursed Arrow",
"Agnitus, the Bow of Divine Fury - Arrow of Judgment",
"Divine Vein - Divine Arrow"
]
},
{
"id": "H008",
"name": "Stella Livve",
"heroClass": "Soul Weaver",
"mainstat": "INT",
"color": "3A8732",
"icon": "SoulWeaverIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)"
],
"role": [
"Buffer/Debuffer"
],
"description": [
"Supporter. Focused on debuffs and utility skills."
],
"spec": [
"No Specs!"
]
},
{
"id": "H01I",
"name": "Elric",
"heroClass": "Alchemist",
"mainstat": "INT",
"color": "C4C099",
"icon": "AlchemistIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)",
"Weapon (Melee)"
],
"role": [
"Versatile Invoker. Has DPS, DoT, Support, Buffs, Debuffs"
],
"description": [
"Ranged damage dealer. Focused on casting skills.",
"Requires more control compared to other characters, and skill combos are long."
],
"spec": [
"Potion of Corruption - Mad Alchemist",
"Benziena, the Rod of Earth - Enhanced Conjure Golem",
"Benziena, the Earthen Pillar - Enhanced Conjure Golem",
"Benziena, the Earthen Soul - Enhanced Conjure Golem",
"Benziena, the Earthen Heart - Enhanced Conjure Golem",
"Harmonia, the Sparkle of Life - Enhanced Conjure Golem"
]
},
{
"id": "H00J",
"name": "Haran Tenebras",
"heroClass": "Warlock",
"mainstat": "INT",
"color": "C3C3E1",
"icon": "WarlockIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)",
"Weapon (Melee)"
],
"role": [
"DoT/DPS"
],
"description": [
"Ranged damage dealer. Good at burst damage."
],
"spec": [
"Soul Eater - Soul Devour"
]
},
{
"id": "H02M",
"name": "Loriro Livve",
"heroClass": "Blood Weaver",
"mainstat": "INT",
"secondary": ["STR"],
"color": "FF6666",
"icon": "BloodWeaverIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)",
"Weapon (Melee)"
],
"role": [
"Sustain/DoT/Tank"
],
"description": [
"Melee damage dealer. Uses a good mix of auto attacks and skill casts.",
"Uses HP as resource to cast skills. Has excellent mobility."
],
"spec": [
"Teperua, the Ring of Blood - Blood Shield",
"Trueblood Ring - Blood Shield"
]
},
{
"id": "H005",
"name": "Rin T.",
"heroClass": "Fire Mage",
"mainstat": "INT",
"color": "E4AFAF",
"icon": "FireMageIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)",
"Weapon (Melee)"
],
"role": [
"Combo Burster"
],
"description": [
"Ranged damage dealer. Has high burst damage."
],
"spec": [
"No Specs!"
]
},
{
"id": "H00K",
"name": "Rainbow R.",
"heroClass": "Shooter",
"mainstat": "AGI",
"secondary": ["INT"],
"color": "99FFDD",
"icon": "ShooterIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Gun)"
],
"role": [
"AGI: DPS with medium healing",
"INT: Support/Healer with medium damage"
],
"description": [
"Ranged damage dealer.",
"If setup around INT-based items/stats, can also be utilized as a healer that excels in small parties."
],
"spec": [
"Red Cross - Bloody Protection",
"Crimson Cross - Bloody Protection",
"Crimson Star - Crimson Star",
"Cosmic Star - Cosmic Star",
"Abyss Fall - Abyss Fall",
"Water Cannon - Purging Water",
"Hydro Buster - Purging Water",
"Rainmaker - Purging Water",
"Devil Chaser - Evil Chaser",
"Fiend Chaser - Evil Chaser",
"Chrono Chaser - Evil Chaser",
"Dante's Inferno - Abandon All Hope",
"Punisher - Abandon All Hope",
"Last Word - Abandon All Hope",
"Final Omen - Abandon All Hope"
]
},
{
"id": "H04R",
"name": "Shiro",
"heroClass": "Sword Enchanter",
"mainstat": "AGI",
"color": "DFDFDF",
"icon": "SwordEnchanterIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)"
],
"role": [
"Pure DoT/Slight Debuffer"
],
"description": [
"Melee damage dealer. Focused on auto-attacks.",
"Playstyle is simple compared to most other characters."
],
"spec": [
"No Specs!"
]
},
{
"id": "H05B",
"name": "Lucicree",
"heroClass": "Gunner",
"mainstat": "AGI",
"color": "DFBE9F",
"icon": "GunnerIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Gun)"
],
"role": [
"High Mobility with mid-ranged DoT DPS"
],
"description": [
"Ranged damage dealer. Uses a good mix of auto attacks and skill casts."
],
"spec": [
"Dante's Inferno - Abandon All Hope",
"Punisher - Abandon All Hope",
"Last Word - Abandon All Hope",
"Final Omen - Abandon All Hope"
]
},
{
"id": "H001",
"name": "Louis Arcienne",
"heroClass": "Swordsman",
"mainstat": "AGI",
"color": "869DD2",
"icon": "SwordsmanIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)"
],
"role": [
"High sustained damage (DoT dps), and strong stunner"
],
"description": [
"Melee damage dealer. Focused on casting skills, but it weaves auto-attacks in between skill casts."
],
"spec": [
"No Specs!"
]
},
{
"id": "H009",
"name": "Dorothy de Merrian",
"heroClass": "Elementalist",
"mainstat": "INT",
"color": "FF69B4",
"icon": "ElementalistIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)"
],
"role": [
"Summoner: Tank/Support/Debuff"
],
"description": [
"Ranged damage dealer & support. Focused on summons."
],
"spec": [
"Ripple Snow - Water Mastery",
"Twin Snow - Water Mastery",
"Triple Snow - Water Mastery",
"Endless Snow - Water Mastery",
"Benziena, the Earthen Pillar - Earth Mastery",
"Benziena, the Earthen Soul - Earth Mastery",
"Benziena, the Earthen Heart - Earth Mastery",
"Harmonia, the Sparkle of Life - Earth Mastery"
]
},
{
"id": "H021",
"name": "Sasuke",
"heroClass": "Lightning Mage",
"mainstat": "INT",
"color": "B9F9F8",
"icon": "LightningMageIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)",
"Weapon (Melee)"
],
"role": [
"Melee to Mid-ranged Burst DPS"
],
"description": [
"Melee damaged dealer. Requires precision with casting skills."
],
"spec": [
"Spiritus, the Sword of Elements - Spirits",
"Spirit Dagger - Spirits"
]
},
{
"id": "H01V",
"name": "Astarte",
"heroClass": "Crusader",
"mainstat": "STR",
"color": "F7FC98",
"icon": "CrusaderIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)"
],
"role": [
"Survivability/DPS"
],
"description": [
"Melee damage dealer. Focused on casting skills.",
"Has good survivability and offensive support for allies."
],
"spec": [
"Bahanar, the Sword of Illusion - Sword of Illusion",
"Bahanar, the True Sword of Illusion - Sword of Illusion",
"Meacronacer, the Sword of Thousand Illusions - Sword of Thousand Illusions",
"Astra, the Sword of Moonlight - Flash of Moonlight"
]
},
{
"id": "H00E",
"name": "Kenneth Deracoon",
"heroClass": "Martial Artist",
"mainstat": "AGI",
"color": "C0C0C0",
"icon": "MartialArtistIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)"
],
"role": [
"Close-range burst DPS, decent DoT dps"
],
"description": [
"Melee damage dealer. Focused HEAVILY on auto attacks, and has almost no skill casts.",
"Playstyle is simple compared to most other characters."
],
"spec": [
"Wanderer's Cape - Wanderer",
"Wings of Phoenix - Phoenix",
"Wings of Flame Lord - Phoenix",
"Guardian Vest - Nature's Protection",
"Grandine, the Plates of Wraith - Wraith Possession",
"Athanasia, the Armor of the Reaper - Reaper Possession",
"Exitium, the Armor of Ruin - Bringer of Ruin"
]
},
{
"id": "Hblm",
"name": "Naomi Mercedes",
"heroClass": "Lancer",
"mainstat": "STR",
"color": "84F9D2",
"icon": "LancerIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)"
],
"role": [
"Shield Breaker/DPS/Medium survival"
],
"description": [
"Melee damage dealer. Focused on skill casts.",
"Provides a bit of offensive support."
],
"spec": [
"No Specs!"
]
},
{
"id": "H04S",
"name": "Aurelia",
"heroClass": "Reaper",
"mainstat": "AGI",
"color": "FF9999",
"icon": "ReaperIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)"
],
"role": [
"Burst DPS"
],
"description": [
"Melee damage dealer. Focused on skill casts.",
"Skill combos are more complex compared to other characters."
],
"spec": [
"No Specs!"
]
},
{
"id": "H004",
"name": "Ayame",
"heroClass": "Assassin",
"mainstat": "AGI",
"color": "ffff80",
"icon": "AssassinIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)"
],
"role": [
"Short Burst Melee DPS"
],
"description": [
"Melee damage dealer. Focused on casting skills.",
"Has stealth abilities."
],
"spec": [
"No Specs!"
]
},
{
"id": "H01N",
"name": "Aisha",
"heroClass": "Wind Mage",
"mainstat": "INT",
"color": "caffca",
"icon": "WindMageIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)"
],
"role": [
"AOE Healer"
],
"description": [
"Supporter. Has various healing and supportive abilities."
],
"spec": [
"Fairy Garment - Fairy Blessing",
"Diana, the Robe of Holy Maiden - Maiden's Blessing",
"Crown of Serenity - Protector of Wind",
"Crown of Cleansing - Protector of Wind"
]
},
{
"id": "H04Q",
"name": "Catherine Yoi",
"heroClass": "Merchant",
"mainstat": "STR",
"color": "c3c388",
"icon": "MerchantIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)",
"Weapon (Bag)"
],
"role": [
"Tank Support"
],
"description": [
"Supporter. Excels in adventurous parties where deaths are frequent."
],
"spec": [
"Bag of Strength - Heavy Bag",
"Bag of Mighty Strength - Heavy Bag",
"Bag of Mighty Strength +1 - Heavy Bag",
"Bag of Hell - Very Heavy Bag",
"Bag of Corruption - Very Heavy Bag",
"Bag of Destruction - Very Heavy Bag",
"Bag of Demise - Very Heavy Bag",
"Bag of All Evils - Very Heavy Bag",
"Bag of Explosion - Dangerous Bag",
"Bag of Despair - Dangerous Bag",
"Fruit-filled Bag - Light Bag",
"Candy-filled Bag - Light Bag",
"Candy-filled Bag +1 - Light Bag",
"Bag of Heaven - Very Light Bag",
"Bag of Life - Very Light Bag",
"Bag of Mother Nature - Very Light Bag",
"Bag of Universe - Very Light Bag"
]
},
{
"id": "H01H",
"name": "Esteria",
"heroClass": "Thunderer",
"mainstat": "AGI",
"color": "fe2101",
"icon": "ThundererIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)"
],
"role": [
"Shield Breaker/DoT DPS with small Burst DPS"
],
"description": [
"Melee damage dealer. Focused on auto-attacks."
],
"spec": [
"Guardian of the Skies - Improved Magnetic Field",
"Ruler of the Skies - Improved Magnetic Field"
]
},
{
"id": "H00H",
"name": "Elena",
"heroClass": "Berserker",
"mainstat": "STR",
"color": "f75b40",
"icon": "BerserkerIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)"
],
"role": [
"DPS/Survivability"
],
"description": [
"Melee damage dealer. Focused on auto attacks.",
"Instead of MP, she uses HP to cast skills."
],
"spec": [
"No Specs!"
]
},
{
"id": "H00Z",
"name": "Iris Millen",
"heroClass": "Bow Master",
"mainstat": "AGI",
"color": "d9bfa8",
"icon": "BowMasterIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Bow)"
],
"role": [
"Burst DPS, with small support"
],
"description": [
"Ranged damage dealer.",
"Provides some support for allies."
],
"spec": [
"Stalker - Improved Arrow Rain",
"Heartseeker - Heartseeker",
"Frostbane - Improved Freezing Shot",
"Everfrostbane - Improved Freezing Shot",
"Soulbane - Improved Freezing Shot",
"Divine Vein - Improved Freezing Shot"
]
},
{
"id": "H000",
"name": "Isabelle che Nyderre",
"heroClass": "Knight",
"mainstat": "STR",
"secondary": ["INT"],
"color": "87cefa",
"icon": "KnightIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)"
],
"role": [
"Shield Breaker/Sustain/DoT/Tank"
],
"description": [
"Melee all-rounder class. Quite tanky.Has supportive abilities such as moving/breaking monsters or providing shields to allies."
],
"spec": [
"Winter's Heart - Absolute Zero",
"Eternal Winter - Absolute Zero",
"Guardian Ring - Improved Seal of Mana",
"True Guardian Ring - Improved Seal of Mana",
"Ispion, the Runed Ring - Improved Seal of Mana",
"Heirloom of Lazarus - Improved Seal of Mana"
]
},
{
"id": "Hmkg",
"name": "Karad Erin",
"heroClass": "Dark Knight",
"mainstat": "STR",
"secondary": ["INT"],
"color": "bc8bf1",
"icon": "DarkKnightIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)",
"Weapon (Melee)"
],
"role": [
"STR: Burst DPS",
"INT: Support Utility and AoE Healer"
],
"description": [
"Melee damage dealer. Focused on skill casts."
],
"spec": [
"Seal of Deceiver - Power of Inversion"
]
},
{
"id": "H006",
"name": "Eustia",
"heroClass": "Arcane Mage",
"mainstat": "INT",
"color": "f9cdfe",
"icon": "ArcaneMageIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)"
],
"role": [
"Burst DPS/Semi-support"
],
"description": [
"Ranged damage dealer. Has high burst damage but skill combo is complex."
],
"spec": [
"No Specs!"
]
},
{
"id": "H002",
"name": "Sherry P.",
"heroClass": "Water Mage",
"mainstat": "INT",
"color": "bec6fa",
"icon": "WaterMageIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)"
],
"role": [
"Support with Burst Capabilities"
],
"description": [
"Ranged damage dealer & support. Good with CC effects."
],
"spec": [
"Frozen Robe - Improved Frozen Emotion",
"Winter Robe - Improved Frozen Emotion",
"Frost Herald's Garment - Improved Frozen Emotion"
]
},
{
"id": "H007",
"name": "Alice Dorneea",
"heroClass": "Priest",
"mainstat": "INT",
"color": "fffacd",
"icon": "PriestIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)"
],
"role": [
"Support/Healer"
],
"description": [
"Supporter. Focused on healing skills. Excels in large parties."
],
"spec": [
"Ring of Deep Darkness - Transmission of Darkness",
"Grimoire of Darkness - Transmission of Darkness",
"Seed of Malice - Transmission of Darkness"
]
},
{
"id": "H003",
"name": "Frederic Kassia",
"heroClass": "Paladin",
"mainstat": "STR",
"color": "7b68ee",
"icon": "PaladinIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)",
"Weapon (Melee)"
],
"role": [
"DPS/Semi-Support"
],
"description": [
"Melee damage dealer. Focused on casting skills.",
"Has good mobility and support for allies."
],
"spec": [
"Ruinbringer - Darkened Light",
"Calamity - Darkened Light",
"Visvire, the Hammer of Storm - Improved Genesis",
"Blazing Soul - Improved Genesis",
"Blazing Heart - Improved Genesis",
"Heaven's Fist - Summary Judgment",
"Demonic Fist - Demon's Grasp"
]
},
{
"id": "H05T",
"name": "Harang",
"heroClass": "Phantom Blade",
"mainstat": "AGI",
"color": "99ffbb",
"icon": "PhantomBladeIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)"
],
"role": [
"DoT/DPS"
],
"description": [
"Ranged damage dealer. Focused on skill casts.",
"Requires constant input of keys; not recommended if you have a bad wrist."
],
"spec": [
"No Specs!"
]
},
{
"id": "H065",
"name": "The Nameless One",
"heroClass": "Hermit",
"mainstat": "AGI",
"secondary": ["STR", "INT"],
"color": "4faaae",
"icon": "HermitIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)",
"Weapon (Melee)",
"Weapon (Bag)"
],
"role": [
"Shield Breaker/DPS/Support depends on stat"
],
"description": [
"Supporter. Focused on healing skills."
],
"spec": [
"No Specs!"
]
},
{
"id": "H066",
"name": "Yue Tenebras",
"heroClass": "Witch",
"mainstat": "INT",
"color": "b1a6d2",
"icon": "WitchIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)"
],
"role": [
"Shield Breaker/DPS/Support"
],
"description": [
"Supporter. Focused on utility skills."
],
"spec": [
"No Specs!"
]
},
{
"id": "H076",
"name": "Noface",
"heroClass": "Fighter",
"mainstat": "STR",
"color": "995c00",
"icon": "FighterIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)"
],
"role": [
"Pure DPS"
],
"description": [
"Melee damage dealer. Focused on skill casts, and relies heavily on combos.",
"Requires constant input of keys; not recommended if you have a bad wrist."
],
"spec": [
"No Specs!"
]
},
{
"id": "H07X",
"name": "Luk",
"heroClass": "Trickster",
"mainstat": "AGI",
"color": "39ac73",
"icon": "TricksterIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)"
],
"role": [
"Pure DPS"
],
"description": [
"Melee damage dealer. Difficult as it requires controlling two characters at once."
],
"spec": [
"No Specs!"
]
},
{
"id": "H08G",
"name": "Mina",
"heroClass": "Shrine Priestess",
"mainstat": "INT",
"color": "d3f9f8",
"icon": "ShrinePriestessIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Staff)"
],
"role": [
"DPS",
"Semi-support"
],
"description": [
"Ranged damage dealer. Has some supportive abilities."
],
"spec": [
"No Specs!"
]
},
{
"id": "H09M",
"name": "Maru",
"heroClass": "Lightseeker",
"mainstat": "STR",
"color": "f2f7b9",
"icon": "LightseekerIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)"
],
"role": [
"DPS"
],
"description": [
"Damage dealer. Relies on numerous skill casts."
],
"spec": [
"No Specs!"
]
},
{
"id": "H09N",
"name": "Yuzuka",
"heroClass": "Blaster",
"mainstat": "STR",
"color": "c57372",
"icon": "BlasterIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Gun)"
],
"role": [
"DPS"
],
"description": [
"Ranged damage dealer. Relies greatly on attacks."
],
"spec": [
"No Specs!"
]
},
{
"id": "H019",
"name": "Celeste",
"heroClass": "Sword Saint",
"mainstat": "STR",
"color": "e1c4ed",
"icon": "SwordSaintIcon",
"wearable": [
"Weapon (Shared)",
"Weapon (Melee)"
],
"role": [
"DPS"
],
"description": [
"Melee damage dealer. Unleashes fast combos using her sword and arcane magic."
],
"spec": [
"No Specs!"
]
}
]