-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcharacterClasses.json
More file actions
972 lines (972 loc) · 39.4 KB
/
characterClasses.json
File metadata and controls
972 lines (972 loc) · 39.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
[
{
"uuid": "rec4PD4L91OBjGA6W",
"id": 1,
"name": "Barbarian",
"link": "https://arken.gg/class/barbarian",
"parent": 104,
"characters": [],
"npcs": [],
"skills": [402, 403, 428],
"guilds": [10, 14, null],
"shortDescription": "HE_SHE is unequaled in close-quarters combat and mastery of weapons.",
"description": "Known best for their brutality and ruthlessness in combat, barbarians are both feared and admired across Haerra. Unlike other disciplines, few outsiders can “train” to become barbarians. Most barbarians are born, begotten by their tribe. The tribe serves as a central focus to barbarian life: a close-knit community dedicated to the preservation of their way of life and honoring their ancestors. Barbarians exist in almost all cultures and climates across Haerra, from the desert tribes of Kharsh to the Ovaraaks tribe in the Frostlands. No matter their origin, a single barbarian is often considered to be worth ten soldiers, and their fearlessness is envied by many.\n",
"buildInfo": "In Arken: Runic Raids, Barbarians will have highest yield, and highest rune exchange.",
"lore1": "FLAVOR TEXT\n\n**Example**:\n\"War horns sound, stones fly from catapults, and the thunder of a thousand booted feet echoes across the land as hobgoblins march to battle. Across the borderlands of civilization, settlements and settlers must contend with these aggressive humanoids, whose thirst for conquest is never satisfied.\"\n",
"lore2": "**ZEALOUS RAGE**\n\nAbove all else, barbarians are known for their ability to enter an animalistic frenzy. This mythical state allows barbarians to shrug off the deepest wounds, move faster and hit harder than normal warriors, and laugh in the face of fear itself. Such rage is a staple of the barbarian and it influences all of their martial abilities. All barbarians must learn to embrace this frenzy. Once mastered, a single barbarian can use their rage to cripple legions.\n",
"lore3": "**ANCESTRAL TIES**\n\nFamily plays a central role in barbarian tribes. Young barbarians pay homage to their elders by presenting gifts of the hunt and trophies of fallen enemies. In return elders grant wisdom, and thus the tribe lives on. Stories are passed down orally from generation to generation, and are used to instill the principles, values, and goals of the tribe. Even after death, barbarians believe that their ancestors watch over, protect, and guide them: be it on the battlefield or on the hunt.\n",
"lore4": "\n",
"images": [
"https://dl.airtable.com/.attachments/1ecf4623529c701d03e98e6d18239179/aedb7d12/barbarian.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=46693ac8158097b0"
],
"raidImage": "https://dl.airtable.com/.attachments/1ecf4623529c701d03e98e6d18239179/aedb7d12/barbarian.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=46693ac8158097b0",
"infiniteImage": "https://dl.airtable.com/.attachments/53e34e9b7b2ffee438eee8ddd6bdc8d7/65a70f1f/4444.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=46ff308885f9adcb",
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Fighter",
"role": "Damage",
"isPlayable": true
},
{
"uuid": "recBVyqQp3p6xITvA",
"id": 2,
"name": "Mage",
"link": "https://arken.gg/class/mage",
"characters": [],
"npcs": [],
"skills": [405, 406],
"guilds": [15],
"shortDescription": "HE_SHE has mastered the elemental magics -- fire, lightning, and ice.",
"description": "Whether by tireless study or natural talent, mages unlock the secrets of mana energy and manipulate it to serve any purpose. From creating simple illusions to tearing mountains from the earth, the extent of a mage’s power is determined by their keenness and dedication. With such power, however, there is a natural danger. There exists a voice in the mind of every mage, one which whispers promises of greater and greater power, threatening to consume the individual entirely. Only the bravest and wisest of souls can truly master the arcane without it turning against them.\n",
"buildInfo": "In Arken: Runic Raids, Mages will have the high yield, but highest burn, specializing in magic find and interesting time manipulation.",
"lore1": "FLAVOR TEXT\n",
"lore2": "**ARDENT STUDENTS**\n\nMastering the arcane requires patience and dedication. Without a good study habit; mages are doomed for failure. Mages are often depicted with books on their person, or reading from a book, or writing on a page: all for good reason. Much of a mage's life is dedicated to the tome, especially their spellbook--where their arcane knowledge is recorded and stored. Without proper study and care, a mage will never achieve greatness and--in some cases--might end up destroying themselves in the process.\n",
"lore3": "**INNOVATION AND CREATIVITY**\n\nMages are well-known to have the most versatile skillset. Need to get through a locked door? A wizard can use a ghostly chain to open the door from within. Want to trick your friends into thinking you're rich? A wizard can summon a pile of illusory gold and gems at your feet. Need to get somewhere quickly? A mage can open a portal to another realm. No matter the task, studied mages are experts at finding creative arcane solutions.\n",
"lore4": "\n",
"images": [
"https://dl.airtable.com/.attachments/1f4b2fa56732b07e2e6005f7f83d151f/1af0266a/sorceress.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=9f8af29ff6b55eab"
],
"raidImage": "https://dl.airtable.com/.attachments/1f4b2fa56732b07e2e6005f7f83d151f/1af0266a/sorceress.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=9f8af29ff6b55eab",
"infiniteImage": "https://dl.airtable.com/.attachments/4718c04635a6b25c65cccc84269b4313/a367a918/3333.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=db49dba6fb79dd0d",
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Damage",
"isPlayable": true
},
{
"uuid": "reclTDAPuz1kI0WRt",
"id": 3,
"name": "Ranger",
"link": "https://arken.gg/class/ranger",
"characters": [],
"npcs": [],
"skills": [410],
"guilds": [7, 12, null],
"shortDescription": "Skilled with spear and bow, HE_SHE is a very versatile fighter, tracker, and survivalist.",
"description": "Dwelling in secluded forests, highlands, and even deserts, the many rangers of Haerra share a similar purpose: to protect their people and lands from forces that seek to exploit them. As city borders creep larger and empires expand, these protectors of the wild stand stalwart against encroaching civilization. Rangers use their knowledge of their environment as a powerful tool in both combat and life, and are known to be expert archers, swordmasters, and trappers--of both monsters and humanoids. Although often kind and selfless if treated likewise, rangers make for formidable foes if threatened.\n",
"buildInfo": "In Arken: Runic Raids, Rangers will have medium yield, with highest chance of finding special pools (Hidden Pool, Nexus Pool, etc)",
"lore1": "FLAVOR TEXT\n",
"lore2": "**PROTECTORS OF NATURE**\n\nThough rangers come from all walks of life, they share a common goal: to protect their environments from the scourge of humanoids. Rangers live off the land and rove their habitat, looking for trespassers, animals in need of help or healing, and any corruption that stains their land. Whether by desert or forest or tundra, rangers will stop at nothing to ensure that natural order is maintained.\n",
"lore3": "**EXPERT SURVIVALISTS**\n\nRangers are masters of navigating their native terrain. Desert-bound rangers are able to pinpoint all the watering holes and oases within a hundred miles, while woodland rangers can quickly cut through dense undergrowth by using the local animal trails and river fords. No matter their favored terrain, however, all rangers have incredible instincts when it comes to understanding the land: whether reading the stars, tracking predators, or locating food where food is scarce.\n",
"lore4": "\n",
"images": [
"https://dl.airtable.com/.attachments/1da62a63c9a06dce2528192edf3d16dd/36f69f55/amazon.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=a16a8ab664ffab8e"
],
"raidImage": "https://dl.airtable.com/.attachments/1da62a63c9a06dce2528192edf3d16dd/36f69f55/amazon.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=a16a8ab664ffab8e",
"infiniteImage": "https://dl.airtable.com/.attachments/62bc922a41dc6fd7acb9c2b196d28250/4db0f9f9/7777.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=558926c688429726",
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Ranger",
"role": "Damage",
"isPlayable": true
},
{
"uuid": "recovJS9BtcF4Mzrp",
"id": 4,
"name": "Necromancer",
"link": "https://arken.gg/class/necromancer",
"characters": [],
"npcs": [],
"skills": [],
"guilds": [9, 15],
"shortDescription": "HIS_HER specialties include summoning undead minions, cursing enemies, and harnessing spirits.",
"description": "Contrary to popular belief, necromancers are not inherently evil. Although their power dabbles in forces too gruesome for many on Haerra, be it animating skeletons or communicating with dead ancestors, necromancers serve as watchers of the border between life and death. While some necromancers do utilize their ichor energy for selfish gain and power-mongering, others use their necromantic skills for good: disguised as healers and seers. Whether raising allies from the dead or ensuring them a smooth passage into death, necromancers face a tough question: can you do good in a world that despises you, or will you become the tyrant they assume you to be?\n",
"buildInfo": "In Arken: Runic Raids, Necromancers will have medium yield, and interesting tricks to manipulate yield or pools.",
"lore1": "FLAVOR TEXT\n",
"lore2": "**GUARDIANS AT THE VEIL**\n\nNecromancers stand at the gates which separate life and death. Though often associated with causing and undoing death, necromancers deal in many other disciplines. Some necromancers answer their calling in graveyards and on battlefields, ensuring peaceful and painless transitions into the land of the dead. Other necromancers focus their energy on the life-giving and healing aspects of necromancy, while others still serve as speakers of the spirit world. Yet there are also those who resist death altogether, using their necrotic powers to cheat death itself.\n",
"lore3": "**NECROTIC CORRUPTION**\n\nNo matter the necrotic discipline, all necromancers share a common struggle: the ichor energy which they harness always tends towards death. Tragedy often plagues the life of necromancers, degrading and corrupting the people and environment around them. As a result of this--and society's general distrust of necromancy--necromancers tend to live in isolation or with other necromancers. While some fear this corruption, others embrace it. Among others, the Forsaken Mancers exemplify the corruptive aspects of necromancy, harnessing it in their everyday lives.\n",
"lore4": "\n",
"images": [
"https://dl.airtable.com/.attachments/1cb92c9450a30c140b5ed169643b9fab/24f4c938/necromancer.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=065fd367e3e90548"
],
"raidImage": "https://dl.airtable.com/.attachments/1cb92c9450a30c140b5ed169643b9fab/24f4c938/necromancer.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=065fd367e3e90548",
"infiniteImage": "https://dl.airtable.com/.attachments/22450db5745f22f85851a15e84259338/65e1ac32/2222.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=5a7498246dd6424d",
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Support",
"isPlayable": true
},
{
"uuid": "rechNfTcSvFcyVBxW",
"id": 5,
"name": "Paladin",
"link": "https://arken.gg/class/paladin",
"characters": [],
"npcs": [],
"skills": [414],
"guilds": [11, 13, 15, null],
"shortDescription": "HE_SHE is a natural leader and blessed warrior, taking pride in discipline and devotion.",
"description": "Champions of justice and beacons of hope to their people, paladins dedicate themselves to a cause they consider upright. Whether a Valburn Corruptor dedicated to Azorag or a non-religious member of the Paladins of Ashyrah, the path of a paladin is a long and difficult one. Paladins must not only perfect their martial abilities, but also learn to heal and protect their allies: all within a strict code of conduct. Paladins are always watchful and prepared for adversity, and refuse to waver even in the face of their worst nightmares.\n",
"buildInfo": "In Arken: Runic Raids, Paladins will have the lowest yield, but highest fee reduction, specializing in finding guild tokens and providing guild buffs.",
"lore1": "FLAVOR TEXT\n",
"lore2": "**RIGHTEOUS FIGHTERS**\n\nWherever there is a strong belief in a higher principle: there are paladins. Paladins fight for a cause or oath that they consider righteous: be it under the banner of Eledon, Azorag, or an obscure philosophy. Paladins exist across the alignment spectrum, but they all share a stalwart and unbreaking resolve to carry out their purpose and mission without hesitation. Usually equipped with plate and blade, paladins wade into the thick of battle, heads high and voices thundering.\n",
"lore3": "**INSPIRING LEADERS**\n\nBy virtue of their stalwart faith in a cause, paladins make for natural leaders. Their courage is unwavering and their dedication enviable. Paladins are the first ones into a fight and the last ones out, and will not hesitate to sacrifice themselves for the cause--or an ally in need. Paladins stand tall and proud in even the most hopeless of slaughters, serving as beacons of light to their fellow soldiers. Whether by words or actions, paladins inspire their compatriots to overcome even the most daunting odds.\n",
"lore4": "\n",
"images": [
"https://dl.airtable.com/.attachments/53bdb6581fdbe97e4f6fb2e21b3a370b/331bdb08/paladin.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=a9a32c1a753002a8"
],
"raidImage": "https://dl.airtable.com/.attachments/53bdb6581fdbe97e4f6fb2e21b3a370b/331bdb08/paladin.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=a9a32c1a753002a8",
"infiniteImage": "https://dl.airtable.com/.attachments/289bbf02afb3ac6de456aff16d6947d9/ea65460a/classes111.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=60b1a466b6b6bf72",
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Tanker",
"role": "Support",
"isPlayable": true
},
{
"uuid": "recDmyKWNInQnwntl",
"id": 6,
"name": "Assassin",
"link": "https://arken.gg/class/assassin",
"parent": 107,
"characters": [],
"npcs": [],
"skills": [413, 430, 431, 434],
"guilds": [6],
"shortDescription": "Agile, cunning, and skilled with all manner of poisons and small weapons, HE_SHE makes for a deadly enemy.",
"description": "Born from all walks of life, assassins are familiar with the darkest corners of Haerra. Some assassins dwell in plain sight, utilizing undetected poisons and traps as their weapons, while others strike from the shadows with blade and bolt. No matter their method, assassins are feared by all: from lord to king to emperor, no one is ever truly safe from the silent blade. Not much is known about their organization or varied hierarchies, as few who investigate live to report their findings.\n",
"buildInfo": "Arken: Runic Raids: Assassins will have medium yield, and the highest burn protection, highest chance to find runewords, and specialize in dodging (avoiding burns, negating undesired random runes)\n\nInfinite: Aims to evade effectively while making the most of short opportunities to apply damage (DoT, Crit Chance)",
"lore1": "FLAVOR TEXT\n",
"lore2": "**MASTERS OF SHADOW**\n\nThe best assassins are able to seamlessly integrate into their environment. Whether it's looking perfectly plain in a crowd or just pompous enough to impersonate a respected lord, assassins must master both disguise and deceit to perfect their craft. Above all, assassins must learn to move silently in the dark: to use the cover of night and the vacuous shadows to hide their movements. Whether the blade falls or toxin is dripped into an evening wine, the hand of a master assassin is always drenched in shadow.\n",
"lore3": "**THE SILENT BLADE**\n\nThough often characterized as slitting throats in the night, assassins have many weapons and tools at their disposal. One of these is indeed the blade: often long knives which are easily concealed in the coat or boot. Assassins also employ the use of crossbows or bows in ranged missions, and even long rapiers if anticipating combat. But perhaps the most deadly weapons in the assassin's arsenal are their toxins and poisons. More silent than the blade and more dependable than the arrow, a simple poison can kill a king without ever needing to sneak past a guard.\n",
"lore4": "\n",
"images": [
"https://dl.airtable.com/.attachments/efa186598d88cd9092c568a7431566d7/b61a1ede/assassin.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=c2d2de830dfd02fc"
],
"raidImage": "https://dl.airtable.com/.attachments/efa186598d88cd9092c568a7431566d7/b61a1ede/assassin.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=c2d2de830dfd02fc",
"infiniteImage": "https://dl.airtable.com/.attachments/bbf1d58f65b69872cd43057afab267ae/0244607c/assassin.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=0278e7874072798b",
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Striker",
"role": "Damage",
"isPlayable": true
},
{
"uuid": "rec2L16wPBjYXTmBm",
"id": 7,
"name": "Druid",
"link": "https://arken.gg/class/druid",
"characters": [],
"npcs": [],
"skills": [],
"guilds": [8, 15],
"shortDescription": "Commanding the forces of nature, HE_SHE summons wild beasts and raging storms to HIS_HER side.",
"description": "Blessed of the earth and the chosen people of nature, druids seek balance above all else. Although often considered as simply guardians of forests and wildlife, druids serve the natural order of things. If a fire is needed to cleanse the forest, the druids aid in this process. If a predator grows too strong and threatens to drive others to extinction, the druids intervene. Where nature takes different forms--even those often considered twisted or evil--there exist druids to watch over it. From the Faytree to Hexwood, these guardians of nature will likely persist even as the buildings of Haerra rise and fall to dust.\n",
"buildInfo": "In Arken: Runic Raids, Druids will have medium yield, highest shard chance, and interesting pet tricks.",
"lore1": "FLAVOR TEXT\n",
"lore2": "**OF WOODS AND WILDFIRE**\n\nDruids maintain the natural order of the world, in all its peaceful rivers and violent maelstroms. Instead of resisting the destructive tendencies of nature, many druids embrace this process. Druids have been known to cause controlled fires if the forests grow too dense and destroy entire species if it disrupts the ecosystem. Each group of druids perceives the natural cycle in a different way, leading to a host of disagreements and even wars among the druids. Some druids even embrace undeath and aberrant nature as part of the natural order, defending this despised wildlife as their own.\n",
"lore3": "**BLESSED BY NATURE**\n\nThough their ranks house peoples of many races, druids are sometimes classified as a race unto themselves. After such extensive communion with nature, many druids develop a silvery-green sheen to their skin, alongside stranger characteristics. Though no druid is identical to another, some of the more common features include elk horns and hooves, while outliers--such as butterfly wings and appendages of twisting vines--are more rare to see. Each druid reveres these as 'blessings of nature,' often displaying them with great pride.\n",
"lore4": "\n",
"images": [
"https://dl.airtable.com/.attachments/401e3bfa4b43cf0b2d619556f3dcced6/2d239a49/druid.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=019d1b606209f1e3"
],
"raidImage": "https://dl.airtable.com/.attachments/401e3bfa4b43cf0b2d619556f3dcced6/2d239a49/druid.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=019d1b606209f1e3",
"infiniteImage": "https://dl.airtable.com/.attachments/6a5a236317a34d76a39747572dd70f72/e9b057cb/6666.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=570fd2314cbdf091",
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Support",
"isPlayable": true
},
{
"uuid": "recl6NbfShIUXXRFm",
"id": 8,
"name": "Bard",
"link": "https://arken.gg/class/bard",
"parent": 108,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"lore2": "\n",
"images": [
"https://dl.airtable.com/.attachments/a7b8531128add008ff8e4513a245dcd3/b353c402/Bard_Male_StockArt.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=46f8f39c2d05ab7c"
],
"raidImage": "https://dl.airtable.com/.attachments/a7b8531128add008ff8e4513a245dcd3/b353c402/Bard_Male_StockArt.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=46f8f39c2d05ab7c",
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Support",
"isPlayable": false
},
{
"uuid": "reck8gAQZJKswZowl",
"id": 9,
"name": "Knight",
"link": "https://arken.gg/class/knight",
"parent": 103,
"characters": [],
"npcs": [],
"skills": [401, 407],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [
"https://dl.airtable.com/.attachments/aba0af01714e166d413eac92b6b77171/4b817c06/Paladin_Female_StockArt.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=71fbf1e55f0d1fc3"
],
"raidImage": "https://dl.airtable.com/.attachments/aba0af01714e166d413eac92b6b77171/4b817c06/Paladin_Female_StockArt.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=71fbf1e55f0d1fc3",
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Striker",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "recAvBetnRs94WmZm",
"id": 10,
"name": "Warrior",
"link": "https://arken.gg/class/warrior",
"parent": 104,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"lore2": "\n",
"images": [
"https://dl.airtable.com/.attachments/316862a7df2a7d0d0dc53dc1b4ba8bae/0cad89cd/Warrior_Female_StockArt.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=6fd3ab45b2f898d2"
],
"raidImage": "https://dl.airtable.com/.attachments/316862a7df2a7d0d0dc53dc1b4ba8bae/0cad89cd/Warrior_Female_StockArt.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=6fd3ab45b2f898d2",
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Fighter",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "reclgo0DPGJTmr5QA",
"id": 11,
"name": "Monk",
"link": "https://arken.gg/class/monk",
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"lore2": "\n",
"images": [
"https://dl.airtable.com/.attachments/fdfc372ee20cd054fff104780a2575fb/38b03b21/Monk_Male_StockArt.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=61f233de95defd32"
],
"raidImage": "https://dl.airtable.com/.attachments/fdfc372ee20cd054fff104780a2575fb/38b03b21/Monk_Male_StockArt.png?ts=1661138228&userId=usrf0GZYc5zCl9Cv7&cs=61f233de95defd32",
"isPlayable": false
},
{
"uuid": "recr2NQzlFimhA79H",
"id": 12,
"name": "Arcane Archer",
"link": "https://arken.gg/class/arcane-archer",
"parent": 105,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"isPlayable": false
},
{
"uuid": "recsruF5rGUJxn72I",
"id": 13,
"name": "Skirmisher",
"link": "https://arken.gg/class/skirmisher",
"parent": 105,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"isPlayable": false
},
{
"uuid": "recBkKljn4RDCQBHE",
"id": 14,
"name": "Sniper",
"link": "https://arken.gg/class/sniper",
"parent": 105,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"buildInfo": "Maintains distance, using high damage skills that require high accuracy.",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Striker",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "recu5w8jSgzt4pXZd",
"id": 15,
"name": "Hunter",
"link": "https://arken.gg/class/hunter",
"parent": 105,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Ranger",
"role": "Versatile",
"isPlayable": false
},
{
"uuid": "recOdOGPUPDUOdQko",
"id": 56,
"name": "Amazon",
"link": "https://arken.gg/class/amazon",
"parent": 105,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"buildInfo": "Average mobility, average damage output, high DoT",
"images": [],
"gender": ["recpf8puiEqXbx0Pf"],
"archetype": "Kiter",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "recpMYTYWjvDn3J9N",
"id": 16,
"name": "Berserker",
"link": "https://arken.gg/class/berserker",
"parent": 104,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Fighter",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "recTjMkooXTyoMGbV",
"id": 17,
"name": "Warrior",
"link": "https://arken.gg/class/warrior",
"parent": 104,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Fighter",
"role": "Versatile",
"isPlayable": false
},
{
"uuid": "rec8UScmUF2DldvSV",
"id": 53,
"name": "Executioner",
"link": "https://arken.gg/class/executioner",
"parent": 104,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Striker",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "rec68byq2mauRAexa",
"id": 18,
"name": "Named",
"link": "https://arken.gg/class/named",
"parent": 104,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Tanker",
"role": "Support",
"isPlayable": false
},
{
"uuid": "recZDUj4KrvpvegNa",
"id": 62,
"name": "Bounty Hunter",
"link": "https://arken.gg/class/bounty-hunter",
"parent": 107,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Fighter",
"role": "Support",
"isPlayable": false
},
{
"uuid": "recjX9StAXtugtQnx",
"id": 19,
"name": "Soul Knife",
"link": "https://arken.gg/class/soul-knife",
"parent": 107,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "recmSjjyUxn3lATm3",
"id": 20,
"name": "Swashbuckler",
"link": "https://arken.gg/class/swashbuckler",
"parent": 107,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"buildInfo": "Applies movement speed/accuracy debuffs with attacks and lifts own to stay more mobile than enemies, also applying DoT. Proficient in applying damage to a single target",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Kiter",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "recPzG6Hsy0Up1QTO",
"id": 21,
"name": "Thief",
"link": "https://arken.gg/class/thief",
"parent": 107,
"characters": [],
"npcs": [],
"skills": [436],
"guilds": [],
"shortDescription": "",
"description": "",
"buildInfo": "Sacrifices damage output for mobility and reward emphasis. Applies status ailments(blind, silent) to avoid damage. Most damage through DoT",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Kiter",
"role": "Support",
"isPlayable": false
},
{
"uuid": "reczNiWpeALS0JKhG",
"id": 22,
"name": "Mirage Dancer",
"link": "https://arken.gg/class/mirage-dancer",
"parent": 107,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"buildInfo": "Uses illusion-based skills to avoid and deal damage",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Support",
"isPlayable": false
},
{
"uuid": "reczgc1NHTONDrlSu",
"id": 23,
"name": "Conduit",
"link": "https://arken.gg/class/conduit",
"parent": 101,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "Conduits are often born with an innate talent to channel substantial amounts of magical energy, but have considerable difficulty limiting their release.\n",
"buildInfo": "Use wide-ranging Magical AoE attacks that are difficult to dodge but require more energy.",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "recjpMAnHrP5j3gNp",
"id": 24,
"name": "Chronomancer",
"link": "https://arken.gg/class/chronomancer",
"parent": 101,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Versatile",
"isPlayable": false
},
{
"uuid": "recQksJiI8khrjrYT",
"id": 25,
"name": "Elemancer",
"link": "https://arken.gg/class/elemancer",
"parent": 101,
"characters": [],
"npcs": [],
"skills": [412],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "recFzDs3TWC0MmoFy",
"id": 26,
"name": "Witch/Warlock",
"link": "https://arken.gg/class/witch/warlock",
"parent": 101,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "recKAdv0C53U5wjJS",
"id": 27,
"name": "Archon",
"link": "https://arken.gg/class/archon",
"parent": 101,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Versatile",
"isPlayable": false
},
{
"uuid": "rec5xhJHuaZ86avgl",
"id": 28,
"name": "Zealot",
"link": "https://arken.gg/class/zealot",
"parent": 101,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Tanker",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "recGb31DQfby3Q9BP",
"id": 29,
"name": "Priest",
"link": "https://arken.gg/class/priest",
"parent": 103,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "\n",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Support",
"isPlayable": false
},
{
"uuid": "recrhN9ZZet1xiMuO",
"id": 30,
"name": "Fallen",
"link": "https://arken.gg/class/fallen",
"parent": 103,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Fighter",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "reck8SqsQMHYeVRYf",
"id": 31,
"name": "Sage",
"link": "https://arken.gg/class/sage",
"parent": 106,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Summons",
"isPlayable": false
},
{
"uuid": "recjdXLqp3JYFtbTN",
"id": 59,
"name": "Shaman",
"link": "https://arken.gg/class/shaman",
"parent": 106,
"characters": [],
"npcs": [],
"skills": [437],
"guilds": [],
"shortDescription": "",
"description": "",
"buildInfo": "Summons, controls and buffs animals, applying nature-based debuffs to enemy",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Summons",
"isPlayable": false
},
{
"uuid": "rec7NjE9DK9tc6lRu",
"id": 32,
"name": "Enchanter",
"link": "https://arken.gg/class/enchanter",
"parent": 106,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"buildInfo": "Uses totems, auras and other buffs/debuffs to change the tide of battle.",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Kiter",
"role": "Support",
"isPlayable": false
},
{
"uuid": "reczQG4rWkC7wVa6D",
"id": 33,
"name": "Shifter",
"link": "https://arken.gg/class/shifter",
"parent": 106,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"buildInfo": "Shapeshifts into animal forms that allow them to step into different roles during the match",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Versatile",
"isPlayable": false
},
{
"uuid": "rec12HWTvh1WpIjHj",
"id": 34,
"name": "Hexgard",
"link": "https://arken.gg/class/hexgard",
"parent": 106,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Support",
"isPlayable": false
},
{
"uuid": "receIZxZjh5NOCyus",
"id": 35,
"name": "Summoner",
"link": "https://arken.gg/class/summoner",
"parent": 102,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Summons",
"isPlayable": false
},
{
"uuid": "recEUDH42vjEDRfqF",
"id": 36,
"name": "Witch Hunter",
"link": "https://arken.gg/class/witch-hunter",
"parent": 102,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "Master of swords, bows and debuffs",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Striker",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "recxENsUcJrOui2VI",
"id": 37,
"name": "Bloodmage",
"link": "https://arken.gg/class/bloodmage",
"parent": 102,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Healing",
"isPlayable": false
},
{
"uuid": "recYEpic01C4dZhkg",
"id": 38,
"name": "Daemonbinder",
"link": "https://arken.gg/class/daemonbinder",
"parent": 102,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "Use the power of Evil against itself at an unholy cost",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Support",
"isPlayable": false
},
{
"uuid": "recnyJXlnWqgIU9dl",
"id": 39,
"name": "Hexer",
"link": "https://arken.gg/class/hexer",
"parent": 102,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Kiter",
"role": "Support",
"isPlayable": false
},
{
"uuid": "recIxuy7nsvQUrNdd",
"id": 40,
"name": "Musician",
"link": "https://arken.gg/class/musician",
"parent": 101,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "reco1gptV7ZDMQgsW",
"id": 41,
"name": "Lorekeeper",
"link": "https://arken.gg/class/lorekeeper",
"parent": 101,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Support",
"isPlayable": false
},
{
"uuid": "rec0l92yKR7KGYiJz",
"id": 42,
"name": "Voice",
"link": "https://arken.gg/class/voice",
"parent": 101,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"buildInfo": "Uses words of power to compel and damage enemies",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Damage",
"isPlayable": false
},
{
"uuid": "recm5DsFJYGgFVzuY",
"id": 43,
"name": "Merciful Soul",
"link": "https://arken.gg/class/merciful-soul",
"parent": 101,
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Healer",
"role": "Support",
"isPlayable": false
},
{
"uuid": "recwMEvq12vjF6RIt",
"id": 44,
"name": "Infused Soul",
"link": "https://arken.gg/class/infused-soul",
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Fighter",
"role": "Support",
"isPlayable": false
},
{
"uuid": "recF09tl7VeD5UVnk",
"id": 45,
"name": "Ignited Soul",
"link": "https://arken.gg/class/ignited-soul",
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Caster",
"role": "Versatile",
"isPlayable": false
},
{
"uuid": "rec0gcME1AMS4wO5p",
"id": 46,
"name": "Intangible Soul",
"link": "https://arken.gg/class/intangible-soul",
"characters": [],
"npcs": [],
"skills": [],
"guilds": [],
"shortDescription": "",
"description": "",
"images": [],
"gender": ["recyW51pMlP9TKWF4"],
"archetype": "Tanker",
"role": "Defense",
"isPlayable": false
}
]