-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGameData.py
1262 lines (1240 loc) · 105 KB
/
GameData.py
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
from typing import Dict, Any
Alignments = [
'Hero',
'Villain',
'Vigilante',
'Rogue',
'Resistance',
'Loyalist',
]
Origins = ['Magic','Mutation','Natural','Science','Technology']
Archetypes: Dict[Any, Any] = {
'Arachnos Soldier': {
'Faction': 'V',
'Epic': {
'Leviathan Mastery' : [ 'Spirit Shark', 'School of Sharks', 'Arctic Breath', 'Bile Spray', 'Summon Guardian', ],
'Mace Mastery' : [ 'Mace Blast', 'Web Envelope', 'Disruptor Blast', 'Shatter Armor', 'Summon Blaster', ],
'Mu Mastery' : [ 'Mu Lightning', 'Electrifying Fences', 'Ball Lightning', 'Static Discharge', 'Summon Striker', ],
'Soul Mastery' : [ 'Gloom', 'Soul Tentacles', 'Darkest Night', 'Dark Obliteration', 'Summon Widow', ],
},
'Primary': {
'Crab Spider Soldier' : [ 'Single Shot', 'Pummel', 'Burst', 'Wide Area Web Grenade', 'Heavy Burst', 'Bayonet', 'Venom Grenade', 'Frag Grenade',
'Channelgun', 'Slice', 'Longfang', 'Aim', 'Suppression', 'Arm Lash', 'Venom Grenade', 'Frag Grenade', 'Frenzy', 'Omega Maneuver', ],
'Bane Spider Soldier' : [ 'Single Shot', 'Pummel', 'Burst', 'Wide Area Web Grenade', 'Heavy Burst', 'Bayonet', 'Venom Grenade', 'Frag Grenade',
'Bash', 'Mace Beam', 'Mace Beam Blast', 'Build Up', 'Mace Beam Volley', 'Poisonous Ray', 'Pulverize', 'Shatter', 'Placate', 'Crowd Control', ],
},
'Secondary': {
'Crab Spider Training' : [ 'Wolf Spider Armor', 'Combat Training: Defensive', 'Combat Training: Offensive', 'Tactical Training: Maneuvers',
'Tactical Training: Assault', 'Tactical Training: Leadership', 'Mental Training', 'Call Reinforcements',
'Crab Spider Armor Upgrade', 'Fortification', 'Serum', 'Summon Spiderlings', ],
'Bane Spider Training' : [ 'Wolf Spider Armor', 'Combat Training: Defensive', 'Combat Training: Offensive', 'Tactical Training: Maneuvers',
'Tactical Training: Assault', 'Tactical Training: Leadership', 'Mental Training', 'Call Reinforcements',
'Bane Spider Armor Upgrade', 'Cloaking Device', 'Surveillance', 'Web Cocoon', ],
},
},
'Arachnos Widow': {
'Faction': 'V',
'Epic': {
'Leviathan Mastery' : [ 'Spirit Shark', 'School of Sharks', 'Arctic Breath', 'Bile Spray', 'Summon Guardian', ],
'Mace Mastery' : [ 'Mace Blast', 'Web Envelope', 'Disruptor Blast', 'Shatter Armor', 'Summon Blaster', ],
'Mu Mastery' : [ 'Mu Lightning', 'Electrifying Fences', 'Ball Lightning', 'Static Discharge', 'Summon Striker', ],
'Soul Mastery' : [ 'Gloom', 'Soul Tentacles', 'Darkest Night', 'Dark Obliteration', 'Summon Widow', ],
},
'Primary': {
'Night Widow Training' : [ 'Poison Dart', 'Swipe', 'Strike', 'Dart Burst', 'Follow Up', 'Spin', 'Lunge', 'Confront',
'Mental Blast', 'Build Up', 'Smoke Grenade', 'Slash', 'Eviscerate', 'Psychic Scream', ],
'Fortunata Training' : [ 'Poison Dart', 'Swipe', 'Strike', 'Dart Burst', 'Follow Up', 'Spin', 'Lunge', 'Confront',
'Mental Blast', 'Telekinetic Blast', 'Subdue', 'Aim', 'Psychic Scream', 'Dominate',
'Psionic Tornado', 'Scramble Thoughts', 'Total Domination', 'Psychic Wail', ],
},
'Secondary': {
'Widow Teamwork' : [ 'Combat Training: Defensive', 'Combat Training: Offensive', 'Tactical Training: Maneuvers', 'Indomitable Will',
'Tactical Training: Assault', 'Tactical Training: Leadership', 'Foresight',
'Mask Presence', 'Mental Training', 'Mind Link', 'Placate', 'Tactical Training: Vengeance', 'Elude', ],
'Fortunata Teamwork' : [ 'Combat Training: Defensive', 'Combat Training: Offensive', 'Tactical Training: Maneuvers', 'Indomitable Will',
'Tactical Training: Assault', 'Tactical Training: Leadership', 'Foresight',
'Mask Presence', 'Mind Link', 'Confuse', 'Tactical Training: Vengeance', 'Aura of Confusion', ],
},
},
'Blaster': {
'Faction': 'H',
'Epic': {
'Ice Mastery' : [ 'Snow Storm', 'Flash Freeze', 'Frozen Armor', 'Hoarfrost', 'Hibernate', ],
'Dark Mastery' : [ 'Murky Cloud', 'Fearsome Stare', 'Possess', 'Black Hole', 'Soul Consumption', ],
'Electricity Mastery' : [ 'Static Discharge', 'Shocking Bolt', 'Charged Armor', 'Surge of Power', 'EM Pulse', ],
'Fire Mastery' : [ 'Bonfire', 'Char', 'Fire Shield', 'Melt Armor', 'Rise of the Phoenix', ],
'Force Mastery' : [ 'Personal Force Field', 'Repulsion Field', 'Force Bomb', 'Temp Invulnerability', 'Force of Nature', ],
'Arsenal Mastery' : [ 'Body Armor', 'Cryo Freeze Ray', 'Sleep Grenade', 'Surveillance', 'LRM Rocket', ],
'Leviathan Mastery' : [ 'School of Sharks', 'Bile Spray', 'Knockout Blow', 'Shark Skin', 'Spirit Shark Jaws', ],
'Mace Mastery' : [ 'Web Envelope', 'Scorpion Shield', 'Mace Beam Volley', 'Summon Spiderlings', 'Web Cocoon', ],
'Mu Mastery' : [ 'Static Discharge', 'Charged Armor', 'Electrifying Fences', 'Summon Adept', 'Electric Shackles', ],
'Soul Mastery' : [ 'Night Fall', 'Dark Embrace', 'Oppressive Gloom', 'Soul Tentacles', 'Soul Storm', ],
},
'Primary': {
'Archery' : [ 'Snap Shot', 'Aimed Shot', 'Fistful of Arrows', 'Blazing Arrow', 'Aim', 'Explosive Arrow', 'Ranged Shot', 'Stunning Shot', 'Rain of Arrows', ],
'Assault Rifle' : [ 'Burst', 'Slug', 'Buckshot', 'M30 Grenade', 'Beanbag', 'Sniper Rifle', 'Flamethrower', 'Ignite', 'Full Auto', ],
'Beam Rifle' : [ 'Single Shot', 'Charged Shot', 'Cutting Beam', 'Disintegrate', 'Aim', 'Lancer Shot', 'Penetrating Ray', 'Piercing Beam', 'Overcharge', ],
'Dark Blast' : [ 'Dark Blast', 'Gloom', 'Umbral Torrent', 'Aim', 'Moonbeam', 'Tenebrous Tentacles', 'Abyssal Gaze', 'Life Drain', 'Blackstar', ],
'Dual Pistols' : [ 'Pistols', 'Dual Wield', 'Empty Clips', 'Swap Ammo', 'Bullet Rain', 'Suppressive Fire', 'Executioner\'s Shot', 'Piercing Rounds', 'Hail of Bullets',
'Cryo Ammunition', 'Incendiary Ammunition', 'Chemical Ammunition', ],
'Electrical Blast' : [ 'Charged Bolts', 'Lightning Bolt', 'Ball Lightning', 'Short Circuit', 'Charge Up', 'Zapp', 'Tesla Cage', 'Voltaic Sentinel', 'Thunderous Blast', ],
'Energy Blast' : [ 'Power Bolt', 'Power Blast', 'Energy Torrent', 'Power Burst', 'Sniper Blast', 'Aim', 'Power Push', 'Explosive Blast', 'Nova', ],
'Fire Blast' : [ 'Flares', 'Fire Blast', 'Fire Ball', 'Rain of Fire', 'Fire Breath', 'Aim', 'Blaze', 'Blazing Bolt', 'Inferno', ],
'Ice Blast' : [ 'Ice Bolt', 'Ice Blast', 'Frost Breath', 'Aim', 'Freeze Ray', 'Ice Storm', 'Bitter Ice Blast', 'Bitter Freeze Ray', 'Blizzard', ],
'Psychic Blast' : [ 'Psionic Dart', 'Mental Blast', 'Telekinetic Blast', 'Psychic Focus', 'Will Domination', 'Psionic Lance', 'Psionic Tornado', 'Scramble Thoughts', 'Psychic Wail', ],
'Radiation Blast' : [ 'Neutrino Bolt', 'X-Ray Beam', 'Irradiate', 'Electron Haze', 'Aim', 'Proton Volley', 'Cosmic Burst', 'Neutron Bomb', 'Atomic Blast', ],
'Seismic Blast' : [ 'Encase', 'Shatter', 'Rock Shards', 'Entomb', 'Seismic Force', 'Upthrust', 'Tombstone', 'Stalagmite', 'Meteor', ],
'Sonic Attack' : [ 'Shriek', 'Scream', 'Howl', 'Shockwave', 'Shout', 'Amplify', 'Siren\'s Song', 'Screech', 'Dreadful Wail', ],
'Storm Blast' : [ 'Gust', 'Hailstones', 'Jet Stream', 'Storm Cell', 'Intensify', 'Direct Strike', 'Chain Lightning', 'Cloudburst', 'Category Five', ],
'Water Blast' : [ 'Aqua Bolt', 'Hydro Blast', 'Water Burst', 'Whirlpool', 'Tidal Forces', 'Dehydrate', 'Water Jet', 'Steam Spray', 'Geyser', ],
},
'Secondary': {
'Atomic Manipulation' : [ 'Electron Shackles', 'Negatron Slam', 'Positron Cell', 'Ionize', 'Beta Decay', 'Metabolic Acceleration', 'Atom Smasher', 'Radioactive Cloud', 'Positronic Fist', ],
'Darkness Manipulation' : [ 'Penumbral Grasp', 'Smite', 'Death Shroud', 'Shadow Maul', 'Soul Drain', 'Touch of the Beyond', 'Dark Consumption', 'Dark Pit', 'Midnight Grasp' ],
'Devices' : [ 'Toxic Web Grenade', 'Caltrops', 'Taser', 'Targeting Drone', 'Smoke Grenade', 'Field Operative', 'Trip Mine', 'Remote Bomb', 'Gun Drone', ],
'Earth Manipulation' : [ 'Stone Prison', 'Heavy Mallet', 'Salt Crystals', 'Build Up', 'Tremor', 'Mud Bath', 'Beryl Crystals', 'Fracture', 'Seismic Smash', ],
'Electricity Manipulation' : [ 'Electric Fence', 'Charged Brawl', 'Build Up', 'Havoc Punch', 'Thunder Strike', 'Dynamo', 'Power Sink', 'Force of Thunder', 'Shocking Grasp', ],
'Energy Manipulation' : [ 'Power Thrust', 'Energy Punch', 'Build Up', 'Bone Smasher', 'Energize', 'Stun', 'Power Boost', 'Boost Range', 'Total Focus', ],
'Fire Manipulation' : [ 'Ring of Fire', 'Fire Sword', 'Combustion', 'Fire Sword Circle', 'Build Up', 'Cauterizing Aura', 'Consume', 'Burn', 'Hot Feet', ],
'Ice Manipulation' : [ 'Chilblain', 'Frozen Fists', 'Ice Sword', 'Frigid Protection', 'Build Up', 'Ice Patch', 'Shiver', 'Freezing Touch', 'Frozen Aura', ],
'Martial Combat' : [ 'Ki Push', 'Storm Kick', 'Reach for the Limit', 'Burst of Speed', 'Dragon\'s Tail', 'Reaction Time', 'Inner Will', 'Throw Sand', 'Eagles Claw', ],
'Mental Manipulation' : [ 'Subdual', 'Mind Probe', 'World of Confusion', 'Psychic Scream', 'Concentration', 'Drain Psyche', 'Scare', 'Psychic Shockwave', 'Telekinetic Thrust', ],
'Ninja Training' : [ 'Immobilizing Dart', 'Sting of the Wasp', 'Choking Powder', 'Shinobi', 'The Lotus Drops', 'Kuji-In Toh', 'Smoke Flash', 'Blinding Powder', 'Golden Dragonfly', ],
'Plant Manipulation' : [ 'Entangle', 'Skewer', 'Strangler', 'Toxins', 'Spore Cloud', 'Wild Fortress', 'Ripper', 'Vines', 'Thorn Burst', ],
'Sonic Manipulation' : [ 'Sonic Thrust', 'Strident Echo', 'Echo Chamber', 'Sound Booster', 'Deafening Wave', 'Sound Barrier', 'Disruption Aura', 'Sound Cannon', 'Earsplitter', ],
'Tactical Arrow' : [ 'Electrified Net Arrow', 'Glue Arrow', 'Ice Arrow', 'Upshot', 'Flash Arrow', 'Eagle Eye', 'Gymnastics', 'ESD Arrow', 'Oil Slick Arrow', ],
'Temporal Manipulation' : [ 'Time Wall', 'Aging Touch', 'Time Stop', 'Chronos', 'End of Time', 'Temporal Healing', 'Future Pain', 'Time Shift', 'Time Lord', ],
},
},
'Brute': {
'Faction': 'V',
'Epic': {
'Ice Mastery' : [ 'Chillblain', 'Block of Ice', 'Ice Blast', 'Shiver', 'Ice Storm', ],
'Dark Mastery' : [ 'Penumbral Grasp', 'Petrifying Gaze', 'Dark Blast', 'Night Fall', 'Tar Patch', ],
'Earth Mastery' : [ 'Stone Prison', 'Salt Crystals', 'Fossilize', 'Quicksand', 'Stalagmites', ],
'Energy Mastery' : [ 'Superior Conditioning', 'Focused Accuracy', 'Laser Beam Eyes', 'Physical Perfection', 'Energy Torrent', ],
'Psionic Mastery' : [ 'Mesmerize', 'Dominate', 'Harmonic Mind', 'Mental Blast', 'Psionic Tornado', ],
'Fire Mastery' : [ 'Ring of Fire', 'Char', 'Fire Blast', 'Melt Armor', 'Fire Ball', ],
'Leviathan Mastery' : [ 'Spirit Shark', 'School of Sharks', 'Arctic Breath', 'Bile Spray', 'Summon Guardian', ],
'Mace Mastery' : [ 'Mace Blast', 'Web Envelope', 'Disruptor Blast', 'Focused Accuracy', 'Summon Blaster', ],
'Mu Mastery' : [ 'Mu Lightning', 'Electrifying Fences', 'Ball Lightning', 'Static Discharge', 'Summon Striker', ],
'Soul Mastery' : [ 'Gloom', 'Soul Tentacles', 'Darkest Night', 'Dark Obliteration', 'Summon Widow', ],
},
'Primary': {
'Battle Axe' : [ 'Beheader', 'Chop', 'Gash', 'Build Up', 'Pendulum', 'Taunt', 'Swoop', 'Axe Cyclone', 'Cleave', ],
'Broad Sword' : [ 'Hack', 'Slash', 'Slice', 'Build Up', 'Parry', 'Taunt', 'Whirling Sword', 'Disembowel', 'Head Splitter', ],
'Claws' : [ 'Swipe', 'Strike', 'Slash', 'Spin', 'Follow Up', 'Taunt', 'Focus', 'Eviscerate', 'Shockwave', ],
'Dark Melee' : [ 'Shadow Punch', 'Smite', 'Shadow Maul', 'Touch of Fear', 'Siphon Life', 'Taunt', 'Dark Consumption', 'Soul Drain', 'Midnight Grasp', ],
'Dual Blades' : [ 'Nimble Slash', 'Power Slice', 'Ablating Strike', 'Typhoon\'s Edge', 'Blinding Feint', 'Taunt', 'Vengeful Slice', 'Sweeping Strike', 'One Thousand Cuts', ],
'Electrical Melee' : [ 'Charged Brawl', 'Havoc Punch', 'Jacobs Ladder', 'Build Up', 'Thunder Strike', 'Taunt', 'Chain Induction', 'Lightning Clap', 'Lightning Rod', ],
'Energy Melee' : [ 'Barrage', 'Energy Punch', 'Bone Smasher', 'Build Up', 'Whirling Hands', 'Taunt', 'Total Focus', 'Power Crash', 'Energy Transfer', ],
'Fiery Melee' : [ 'Scorch', 'Fire Sword', 'Cremate', 'Build Up', 'Incinerate', 'Taunt', 'Breath of Fire', 'Fire Sword Circle', 'Greater Fire Sword', ],
'Ice Melee' : [ 'Frozen Fists', 'Ice Sword', 'Frost', 'Build Up', 'Ice Patch', 'Taunt', 'Greater Ice Sword', 'Freezing Touch', 'Frozen Aura',],
'Katana' : [ 'Sting of the Wasp', 'Gambler\'s Cut', 'Flashing Steel', 'Build Up', 'Divine Avalanche', 'Dragon\'s Roar', 'The Lotus Drops', 'Soaring Dragon', 'Golden Dragonfly', ],
'Kinetic Melee' : [ 'Quick Strike', 'Body Blow', 'Smashing Blow', 'Power Siphon', 'Repulsing Torrent', 'Taunt', 'Burst', 'Focused Burst', 'Concentrated Strike', ],
'Martial Arts' : [ 'Thunder Kick', 'Storm Kick', 'Cobra Strike', 'Focus Chi', 'Crane Kick', 'Warrior\'s Provocation', 'Crippling Axe Kick', 'Dragon\'s Tail', 'Eagle\'s Claw', ],
'Psionic Melee' : [ 'Mental Strike', 'Psi Blade', 'Telekinetic Blow', 'Concentration', 'Psi Blade Sweep', 'Taunt', 'Boggle', 'Greater Psi Blade', 'Mass Levitate', ],
'Radiation Melee' : [ 'Contaminated Strike', 'Radioactive Smash', 'Proton Sweep', 'Fusion', 'Radiation Siphon', 'Taunt', 'Irradiated Ground', 'Devastating Blow', 'Atom Smasher', ],
'Savage Melee' : [ 'Savage Strike', 'Maiming Slash', 'Shred', 'Blood Thirst', 'Vicious Slash', 'Taunt', 'Rending Flurry', 'Hemorrhage', 'Savage Leap', ],
'Spines' : [ 'Barb Swipe', 'Lunge', 'Spine Burst', 'Build Up', 'Impale', 'Taunt', 'Quills', 'Ripper', 'Throw Spines', ],
'Staff Fighting' : [ 'Mercurial Blow', 'Precise Strike', 'Guarded Spin', 'Eye of the Storm', 'Staff Mastery', 'Taunt', 'Serpent\'s Reach', 'Innocuous Strikes', 'Sky Splitter', 'Form of the Body', 'Form of the Mind', 'Form of the Soul', ],
'Stone Melee' : [ 'Stone Fist', 'Stone Mallet', 'Heavy Mallet', 'Build Up', 'Fault', 'Taunt', 'Seismic Smash', 'Hurl Boulder', 'Tremor', ],
'Street Justice' : [ 'Initial Strike', 'Heavy Blow', 'Sweeping Cross', 'Combat Readiness', 'Rib Cracker', 'Taunt', 'Spinning Strike', 'Shin Breaker', 'Crushing Uppercut', ],
'Super Strength' : [ 'Jab', 'Punch', 'Haymaker', 'Hand Clap', 'Knockout Blow', 'Taunt', 'Rage', 'Hurl', 'Foot Stomp', ],
'Titan Weapons' : [ 'Defensive Sweep', 'Crushing Blow', 'Titan Sweep', 'Build Momentum', 'Follow Through', 'Taunt', 'Rend Armor', 'Whirling Smash', 'Arc of Destruction', ],
'War Mace' : [ 'Bash', 'Pulverize', 'Jawbreaker', 'Build Up', 'Clobber', 'Taunt', 'Whirling Mace', 'Shatter', 'Crowd Control', ],
},
'Secondary': {
'Bio Armor' : [ 'Hardened Carapace', 'Inexhaustible', 'Environmental Modification', 'Adaptation', 'Ablative Carapace', 'Evolving Armor', 'DNA Siphon', 'Genetic Contamination', 'Parasitic Aura', 'Efficient Adaptation', 'Defensive Adaptation', 'Offensive Adaptation', ],
'Dark Armor' : [ 'Dark Embrace', 'Death Shroud', 'Murky Cloud', 'Obsidian Shield', 'Dark Regeneration', 'Cloak of Darkness', 'Cloak of Fear', 'Oppressive Gloom', 'Soul Transfer', ],
'Electric Armor' : [ 'Charged Armor', 'Lightning Field', 'Conductive Shield', 'Static Shield', 'Grounded', 'Lightning Reflexes', 'Energize', 'Power Sink', 'Power Surge ', ],
'Energy Aura' : [ 'Kinetic Shield', 'Dampening Field', 'Power Shield', 'Entropic Aura', 'Energy Protection', 'Energy Cloak', 'Energy Drain', 'Energize', 'Overload', ],
'Fiery Aura' : [ 'Fire Shield', 'Blazing Aura', 'Healing Flames', 'Temperature Protection', 'Plasma Shield', 'Consume', 'Burn', 'Fiery Embrace', 'Phoenix Rising', ],
'Ice Armor' : [ 'Frozen Armor', 'Hoarfrost', 'Chilling Embrace', 'Wet Ice', 'Glacial Armor', 'Energy Absorption', 'Permafrost', 'Icicles', 'Hibernate', ],
'Invulnerability' : [ 'Resist Physical Damage', 'Temp Invulnerability', 'Dull Pain', 'Resist Elements', 'Unyielding', 'Resist Energies', 'Invincibility', 'Tough Hide', 'Unstoppable', ],
'Radiation Armor' : [ 'Alpha Barrier', 'Gamma Boost', 'Proton Armor', 'Fallout Shelter', 'Radiation Therapy', 'Beta Decay', 'Particle Shielding', 'Ground Zero', 'Meltdown', ],
'Regeneration' : [ 'Fast Healing', 'Reconstruction', 'Quick Recovery', 'Dull Pain', 'Integration', 'Resilience', 'Instant Healing', 'Revive', 'Moment of Glory', ],
'Shield Defense' : [ 'Deflection', 'Battle Agility', 'True Grit', 'Active Defense', 'Against All Odds', 'Phalanx Fighting', 'Grant Cover', 'Shield Charge', 'One with the Shield', ],
'Stone Armor' : [ 'Rock Armor', 'Stone Skin', 'Earth\'s Embrace', 'Mud Pots', 'Rooted', 'Brimstone Armor', 'Crystal Armor', 'Minerals', 'Granite Armor', ],
'Super Reflexes' : [ 'Focused Fighting', 'Focused Senses', 'Agile', 'Practiced Brawler', 'Dodge', 'Evasion', 'Lucky', 'Quickness', 'Elude', ],
'Willpower' : [ 'High Pain Tolerance', 'Mind Over Body', 'Fast Healing', 'Indomitable Will', 'Rise to the Challenge', 'Quick Recovery', 'Heightened Senses', 'Resurgence', 'Strength of Will', ],
},
},
'Controller': {
'Faction': 'H',
'Epic': {
'Dark Mastery' : [ 'Murky Cloud', 'Dark Blast', 'Umbral Torrent', 'Midnight Grasp', 'Soul Consumption' ],
'Fire Mastery' : [ 'Fire Blast', 'Fire Ball', 'Fire Shield', 'Rise of the Phoenix', 'Consume', ],
'Ice Mastery' : [ 'Ice Blast', 'Hibernate', 'Frozen Armor', 'Frost Breath', 'Ice Storm', ],
'Energy Mastery' : [ 'Power Blast', 'Conserve Power', 'Temp Invulnerability', 'Energy Torrent', 'Power Boost', ],
'Psionic Mastery' : [ 'Mental Blast', 'Indomitable Will', 'Mind Over Body', 'World of Confusion', 'Psionic Tornado', ],
'Earth Mastery' : [ 'Hurl Boulder', 'Fissure', 'Rock Armor', 'Seismic Smash', 'Earth\'s Embrace', ],
'Leviathan Mastery' : [ 'Water Spout', 'Bile Spray', 'Hibernate', 'Shark Skin', 'Summon Coralax', ],
'Mace Mastery' : [ 'Poisonous Ray', 'Scorpion Shield', 'Disruptor Blast', 'Focused Accuracy', 'Summon Tarantula', ],
'Mu Mastery' : [ 'Power Sink', 'Charged Armor', 'Ball Lightning', 'Surge of Power', 'Summon Guardian', ],
'Soul Mastery' : [ 'Dark Consumption', 'Dark Embrace', 'Dark Obliteration', 'Soul Drain', 'Summon Seer', ]
},
'Primary': {
'Arsenal Control' : [ 'Tranquilizer', 'Cryo Freeze Ray', 'Sleep Grenade', 'Liquid Nitrogen', 'Cloaking Device', 'Smoke Canister', 'Flash Bang', 'Tear Gas', 'Tri-Cannon', ],
'Darkness Control' : [ 'Shadowy Binds', 'Dark Grasp', 'Living Shadows', 'Possess', 'Fearsome Stare', 'Heart of Darkness', 'Haunt', 'Shadow Field', 'Umbra Beast', ],
'Earth Control' : [ 'Stone Prison', 'Fossilize', 'Stone Cages', 'Quicksand', 'Salt Crystals', 'Stalagmites', 'Earthquake', 'Volcanic Gasses', 'Animate Stone', ],
'Electric Control' : [ 'Electric Fence', 'Tesla Cage', 'Chain Fences', 'Jolting Chain', 'Conductive Aura', 'Static Field', 'Paralyzing Blast', 'Synaptic Overload', 'Gremlins', ],
'Fire Control' : [ 'Ring of Fire', 'Char', 'Fire Cages', 'Smoke', 'Hot Feet', 'Flashfire', 'Cinders', 'Bonfire', 'Fire Imps', ],
'Gravity Control' : [ 'Crush', 'Lift', 'Gravity Distortion', 'Propel', 'Crushing Field', 'Dimension Shift', 'Gravity Distortion Field', 'Wormhole', 'Singularity', ],
'Ice Control' : [ 'Chilblain', 'Block of Ice', 'Frostbite', 'Arctic Air', 'Cold Snap', 'Ice Slick', 'Flash Freeze', 'Glacier', 'Jack Frost', ],
'Illusion Control' : [ 'Spectral Wounds', 'Blind', 'Deceive', 'Flash', 'Superior Invisibility', 'Group Invisibility', 'Phantom Army', 'Spectral Terror', 'Phantasm', ],
'Mind Control' : [ 'Mesmerize', 'Levitate', 'Dominate', 'Confuse', 'Mass Hypnosis', 'Telekinesis', 'Total Domination', 'Terrify', 'Mass Confusion', ],
'Plant Control' : [ 'Entangle', 'Strangler', 'Roots', 'Spore Burst', 'Seeds of Confusion', 'Spirit Tree', 'Vines', 'Carrion Creepers', 'Fly Trap', ],
'Symphony Control' : [ 'Melodic Binding', 'Hymn of Dissonance', 'Aria of Stasis', 'Impassioned Serenade', 'Dreadful Discord', 'Enfeebling Lullaby', 'Confounding Chant', 'Chords of Despair', 'Reverberant', ],
# 'Wind Control' : [ 'Updraft', 'Downdraft', 'Breathless', 'Wind Shear', 'Thundergust', 'Microburst', 'Keening Winds', 'Vacuum', 'Vortex', ],
},
'Secondary': {
'Cold Domination' : [ 'Infrigidate', 'Ice Shield', 'Snow Storm', 'Glacial Shield', 'Frostwork', 'Arctic Fog', 'Benumb', 'Sleet', 'Heat Loss', ],
'Darkness Affinity' : [ 'Twilight Grasp', 'Tar Patch', 'Darkest Night', 'Howling Twilight', 'Shadow Fall', 'Fade', 'Soul Absorption', 'Black Hole', 'Dark Servant', ],
'Electrical Affinity' : [ 'Shock', 'Rejuvenating Circuit', 'Galvanic Sentinel', 'Energizing Circuit', 'Faraday Cage', 'Empowering Circuit', 'Defibrillate', 'Insulating Circuit', 'Amp Up', ],
'Empathy' : [ 'Healing Aura', 'Heal Other', 'Absorb Pain', 'Resurrect', 'Clear Mind', 'Fortitude', 'Recovery Aura', 'Regeneration Aura', 'Adrenalin Boost', ],
'Force Field' : [ 'Personal Force Field', 'Deflection Shield', 'Repulsion Bolt', 'Insulation Shield', 'Detention Field', 'Dispersion Bubble', 'Repulsion Field', 'Force Bomb', 'Damping Bubble', ],
'Kinetics' : [ 'Transfusion', 'Siphon Power', 'Repel', 'Siphon Speed', 'Increase Density', 'Speed Boost', 'Inertial Reduction', 'Transference', 'Fulcrum Shift', ],
'Marine Affinity' : [ 'Shoal Rush', 'Soothing Wave', 'Toroidal Bubble', 'Whitecap', 'Tide Pool', 'Brine', 'Shifting Tides', 'Barrier Reef', 'Power of the Depths', ],
'Nature Affinity' : [ 'Corrosive Enzymes', 'Regrowth', 'Wild Growth', 'Spore Cloud', 'Lifegiving Spores', 'Wild Bastion', 'Rebirth', 'Entangling Aura', 'Overgrowth', ],
'Pain Domination' : [ 'Nullify Pain', 'Soothe', 'Share Pain', 'Conduit of Pain', 'Enforced Morale', 'Soothing Aura', 'World of Pain', 'Anguishing Cry', 'Painbringer', ],
'Poison' : [ 'Alkaloid', 'Envenom', 'Weaken', 'Neurotoxic Breath', 'Elixir of Life', 'Antidote', 'Paralytic Poison', 'Poison Trap', 'Venomous Gas', ],
'Radiation Emission' : [ 'Radiant Aura', 'Radiation Infection', 'Accelerate Metabolism', 'Enervating Field', 'Mutation', 'Lingering Radiation', 'Choking Cloud', 'Fallout', 'EM Pulse', ],
'Sonic Resonance' : [ 'Sonic Siphon', 'Sonic Barrier', 'Sonic Haven', 'Sonic Cage', 'Disruption Field', 'Sonic Dispersion', 'Sonic Repulsion', 'Clarity', 'Liquefy', ],
'Storm Summoning' : [ 'Gale', 'O2 Boost', 'Snow Storm', 'Steamy Mist', 'Freezing Rain', 'Hurricane', 'Thunder Clap', 'Tornado', 'Lightning Storm', ],
'Thermal Radiation' : [ 'Warmth', 'Thermal Shield', 'Cauterize', 'Plasma Shield', 'Power of the Phoenix', 'Thaw', 'Forge', 'Heat Exhaustion', 'Melt Armor', ],
'Time Manipulation' : [ 'Time Crawl', 'Temporal Mending', 'Time\'s Juncture', 'Temporal Selection', 'Distortion Field', 'Time Stop', 'Farsight', 'Slowed Response', 'Chrono Shift', ],
'Traps' : [ 'Web Grenade', 'Caltrops', 'Triage Beacon', 'Acid Mortar', 'Force Field Generator', 'Poison Trap', 'Seeker Drones', 'Trip Mine', 'Temporal Bomb', ],
'Trick Arrow' : [ 'Entangling Arrow', 'Flash Arrow', 'Glue Arrow', 'Ice Arrow', 'Poison Gas Arrow', 'Acid Arrow', 'Disruption Arrow', 'Oil Slick Arrow', 'EMP Arrow', ],
},
},
'Corruptor': {
'Faction': 'V',
'Epic': {
'Dark Mastery' : [ 'Oppressive Gloom', 'Dark Consumption', 'Dark Embrace', 'Soul Transfer', 'Spirit Drain', ],
'Electricity Mastery' : [ 'Electric Fence', 'Thunder Strike', 'Charged Armor', 'Shocking Bolt', 'Power Sink', ],
'Ice Mastery' : [ 'Frozen Armor', 'Flash Freeze', 'Hoarfrost', 'Build Up', 'Ice Elemental', ],
'Energy Mastery' : [ 'Conserve Power', 'Power Build Up', 'Temp Invulnerability', 'Force of Nature', 'Total Focus', ],
'Psionic Mastery' : [ 'Dominate', 'Mass Hypnosis', 'Mind Over Body', 'World of Confusion', 'Telekinesis', ],
'Fire Mastery' : [ 'Consume', 'Char', 'Fire Shield', 'Rise of the Phoenix', 'Greater Fire Sword', ],
'Leviathan Mastery' : [ 'School of Sharks', 'Shark Skin', 'Hibernate', 'Spirit Shark Jaws', 'Summon Coralax', ],
'Mace Mastery' : [ 'Web Envelope', 'Scorpion Shield', 'Focused Accuracy', 'Web Cocoon', 'Summon Disruptor', ],
'Mu Mastery' : [ 'Power Sink', 'Charged Armor', 'Conserve Power', 'Electric Shackles', 'Summon Adept', ],
'Soul Mastery' : [ 'Soul Drain', 'Dark Embrace', 'Power Boost', 'Soul Storm', 'Summon Mistress', ],
},
'Primary': {
'Archery' : [ 'Snap Shot', 'Aimed Shot', 'Fistful of Arrows', 'Blazing Arrow', 'Aim', 'Explosive Arrow', 'Ranged Shot', 'Stunning Shot', 'Rain of Arrows', ],
'Assault Rifle' : [ 'Burst', 'Slug', 'Buckshot', 'M30 Grenade', 'Beanbag', 'Sniper Rifle', 'Flamethrower', 'Ignite', 'Full Auto', ],
'Beam Rifle' : [ 'Single Shot', 'Charged Shot', 'Cutting Beam', 'Disintegrate', 'Aim', 'Lancer Shot', 'Penetrating Ray', 'Piercing Beam', 'Overcharge', ],
'Dark Blast' : [ 'Dark Blast', 'Gloom', 'Moonbeam', 'Dark Pit', 'Tenebrous Tentacles', 'Night Fall', 'Torrent', 'Life Drain', 'Blackstar', ],
'Dual Pistols' : [ 'Pistols', 'Dual Wield', 'Empty Clips', 'Swap Ammo', 'Bullet Rain', 'Suppressive Fire', 'Executioner\'s Shot', 'Piercing Rounds', 'Hail of Bullets',
'Cryo Ammunition', 'Incendiary Ammunition', 'Chemical Ammunition', ],
'Electrical Blast' : [ 'Charged Bolts', 'Lightning Bolt', 'Ball Lightning', 'Short Circuit', 'Charge Up', 'Zapp', 'Tesla Cage', 'Voltaic Sentinel', 'Thunderous Blast', ],
'Energy Blast' : [ 'Power Bolt', 'Power Blast', 'Energy Torrent', 'Power Burst', 'Sniper Blast', 'Aim', 'Power Push', 'Explosive Blast', 'Nova', ],
'Fire Blast' : [ 'Flares', 'Fire Blast', 'Fire Ball', 'Rain of Fire', 'Fire Breath', 'Aim', 'Blaze', 'Blazing Bolt', 'Inferno', ],
'Ice Blast' : [ 'Ice Bolt', 'Ice Blast', 'Frost Breath', 'Aim', 'Freeze Ray', 'Ice Storm', 'Bitter Ice Blast', 'Bitter Freeze Ray', 'Blizzard', ],
'Psychic Blast' : [ 'Psionic Dart', 'Mental Blast', 'Telekinetic Blast', 'Psychic Focus', 'Will Domination', 'Psionic Lance', 'Psionic Tornado', 'Scramble Thoughts', 'Psychic Wail', ],
'Radiation Blast' : [ 'Neutrino Bolt', 'X-Ray Beam', 'Irradiate', 'Electron Haze', 'Proton Volley', 'Aim', 'Cosmic Burst', 'Neutron Bomb', 'Atomic Blast', ],
'Sonic Attack' : [ 'Shriek', 'Scream', 'Howl', 'Shockwave', 'Shout', 'Amplify', 'Siren\'s Song', 'Screech', 'Dreadful Wail', ],
'Storm Blast' : [ 'Gust', 'Hailstones', 'Jet Stream', 'Storm Cell', 'Intensify', 'Direct Strike', 'Chain Lightning', 'Cloudburst', 'Category Five', ],
'Water Blast' : [ 'Aqua Bolt', 'Hydro Blast', 'Water Burst', 'Whirlpool', 'Tidal Forces', 'Dehydrate', 'Water Jet', 'Steam Spray', 'Geyser', ],
},
'Secondary': {
'Cold Domination' : [ 'Infrigidate', 'Ice Shield', 'Snow Storm', 'Glacial Shield', 'Frostwork', 'Arctic Fog', 'Benumb', 'Sleet', 'Heat Loss', ],
'Dark Miasma' : [ 'Twilight Grasp', 'Tar Patch', 'Darkest Night', 'Howling Twilight', 'Shadow Fall', 'Fearsome Stare', 'Petrifying Gaze', 'Black Hole', 'Dark Servant', ],
'Electrical Affinity' : [ 'Shock', 'Rejuvenating Circuit', 'Galvanic Sentinel', 'Energizing Circuit', 'Faraday Cage', 'Empowering Circuit', 'Defibrillate', 'Insulating Circuit', 'Amp Up', ],
'Empathy' : [ 'Healing Aura', 'Heal Other', 'Absorb Pain', 'Resurrect', 'Clear Mind', 'Fortitude', 'Recovery Aura', 'Regeneration Aura', 'Adrenalin Boost', ],
'Force Field' : [ 'Personal Force Field', 'Deflection Shield', 'Repulsion Bolt', 'Insulation Shield', 'Detention Field', 'Dispersion Bubble', 'Repulsion Field', 'Force Bomb', 'Damping Bubble', ],
'Kinetics' : [ 'Transfusion', 'Siphon Power', 'Repel', 'Siphon Speed', 'Increase Density', 'Speed Boost', 'Inertial Reduction', 'Transference', 'Fulcrum Shift', ],
'Marine Affinity' : [ 'Shoal Rush', 'Soothing Wave', 'Toroidal Bubble', 'Whitecap', 'Tide Pool', 'Brine', 'Shifting Tides', 'Barrier Reef', 'Power of the Depths', ],
'Nature Affinity' : [ 'Corrosive Enzymes', 'Regrowth', 'Wild Growth', 'Spore Cloud', 'Lifegiving Spores', 'Wild Bastion', 'Rebirth', 'Entangling Aura', 'Overgrowth', ],
'Pain Domination' : [ 'Nullify Pain', 'Soothe', 'Share Pain', 'Conduit of Pain', 'Enforced Morale', 'Soothing Aura', 'World of Pain', 'Anguishing Cry', 'Painbringer', ],
'Poison' : [ 'Alkaloid', 'Envenom', 'Weaken', 'Neurotoxic Breath', 'Elixir of Life', 'Antidote', 'Paralytic Poison', 'Poison Trap', 'Venomous Gas', ],
'Radiation Emission' : [ 'Radiant Aura', 'Radiation Infection', 'Accelerate Metabolism', 'Enervating Field', 'Mutation', 'Lingering Radiation', 'Choking Cloud', 'Fallout', 'EM Pulse', ],
'Sonic Resonance' : [ 'Sonic Siphon', 'Sonic Barrier', 'Sonic Haven', 'Sonic Cage', 'Disruption Field', 'Sonic Dispersion', 'Sonic Repulsion', 'Clarity', 'Liquefy', ],
'Storm Summoning' : [ 'Gale', 'O2 Boost', 'Snow Storm', 'Steamy Mist', 'Freezing Rain', 'Hurricane', 'Thunder Clap', 'Tornado', 'Lightning Storm', ],
'Thermal Radiation' : [ 'Warmth', 'Fire Shield', 'Cauterize', 'Plasma Shield', 'Power of the Phoenix', 'Thaw', 'Forge', 'Heat Exhaustion', 'Melt Armor', ],
'Time Manipulation' : [ 'Time Crawl', 'Temporal Mending', 'Time\'s Juncture', 'Temporal Selection', 'Distortion Field', 'Time Stop', 'Farsight', 'Slowed Response', 'Chrono Shift', ],
'Traps' : [ 'Web Grenade', 'Caltrops', 'Triage Beacon', 'Acid Mortar', 'Force Field Generator', 'Poison Trap', 'Seeker Drones', 'Trip Mine', 'Temporal Bomb', ],
'Trick Arrow' : [ 'Entangling Arrow', 'Flash Arrow', 'Glue Arrow', 'Ice Arrow', 'Poison Gas Arrow', 'Acid Arrow', 'Disruption Arrow', 'Oil Slick Arrow', 'EMP Arrow', ],
},
},
'Defender': {
'Faction': 'H',
'Epic': {
'Dark Mastery' : [ 'Oppressive Gloom', 'Dark Consumption', 'Dark Embrace', 'Soul Transfer', 'Spirit Drain', ],
'Electricity Mastery' : [ 'Electric Fence', 'Thunder Strike', 'Charged Armor', 'Shocking Bolt', 'Power Sink', ],
'Ice Mastery' : [ 'Frozen Armor', 'Flash Freeze', 'Hoarfrost', 'Build Up', 'Ice Elemental', ],
'Energy Mastery' : [ 'Conserve Power', 'Power Build Up', 'Temp Invulnerability', 'Force of Nature', 'Total Focus', ],
'Psionic Mastery' : [ 'Dominate', 'Mass Hypnosis', 'Mind Over Body', 'World of Confusion', 'Telekinesis', ],
'Fire Mastery' : [ 'Consume', 'Char', 'Fire Shield', 'Rise of the Phoenix', 'Greater Fire Sword', ],
'Leviathan Mastery' : [ 'School of Sharks', 'Shark Skin', 'Hibernate', 'Spirit Shark Jaws', 'Summon Coralax', ],
'Mace Mastery' : [ 'Web Envelope', 'Scorpion Shield', 'Focused Accuracy', 'Web Cocoon', 'Summon Disruptor', ],
'Mu Mastery' : [ 'Power Sink', 'Charged Armor', 'Conserve Power', 'Electric Shackles', 'Summon Adept', ],
'Soul Mastery' : [ 'Soul Drain', 'Dark Embrace', 'Power Boost', 'Soul Storm', 'Summon Mistress', ],
},
'Primary': {
'Cold Domination' : [ 'Infrigidate', 'Ice Shield', 'Snow Storm', 'Glacial Shield', 'Frostwork', 'Arctic Fog', 'Benumb', 'Sleet', 'Heat Loss', ],
'Dark Miasma' : [ 'Twilight Grasp', 'Tar Patch', 'Darkest Night', 'Howling Twilight', 'Shadow Fall', 'Fearsome Stare', 'Petrifying Gaze', 'Black Hole', 'Dark Servant', ],
'Electrical Affinity' : [ 'Shock', 'Rejuvenating Circuit', 'Galvanic Sentinel', 'Energizing Circuit', 'Faraday Cage', 'Empowering Circuit', 'Defibrillate', 'Insulating Circuit', 'Amp Up', ],
'Empathy' : [ 'Healing Aura', 'Heal Other', 'Absorb Pain', 'Resurrect', 'Clear Mind', 'Fortitude', 'Recovery Aura', 'Adrenalin Boost', 'Regeneration Aura', ],
'Force Field' : [ 'Personal Force Field', 'Deflection Shield', 'Repulsion Bolt', 'Insulation Shield', 'Detention Field', 'Dispersion Bubble', 'Repulsion Field', 'Force Bomb', 'Damping Bubble', ],
'Kinetics' : [ 'Transfusion', 'Siphon Power', 'Repel', 'Siphon Speed', 'Increase Density', 'Speed Boost', 'Inertial Reduction', 'Transference', 'Fulcrum Shift', ],
'Marine Affinity' : [ 'Shoal Rush', 'Soothing Wave', 'Toroidal Bubble', 'Whitecap', 'Tide Pool', 'Brine', 'Shifting Tides', 'Barrier Reef', 'Power of the Depths', ],
'Nature Affinity' : [ 'Corrosive Enzymes', 'Regrowth', 'Wild Growth', 'Spore Cloud', 'Lifegiving Spores', 'Wild Bastion', 'Rebirth', 'Entangling Aura', 'Overgrowth', ],
'Pain Domination' : [ 'Nullify Pain', 'Soothe', 'Share Pain', 'Conduit of Pain', 'Enforced Morale', 'Soothing Aura', 'World of Pain', 'Anguishing Cry', 'Painbringer', ],
'Poison' : [ 'Alkaloid', 'Envenom', 'Weaken', 'Neurotoxic Breath', 'Elixir of Life', 'Antidote', 'Paralytic Poison', 'Poison Trap', 'Venomous Gas', ],
'Radiation Emission' : [ 'Radiant Aura', 'Radiation Infection', 'Accelerate Metabolism', 'Enervating Field', 'Mutation', 'Lingering Radiation', 'Choking Cloud', 'Fallout', 'EM Pulse', ],
'Sonic Resonance' : [ 'Sonic Siphon', 'Sonic Barrier', 'Sonic Haven', 'Sonic Cage', 'Disruption Field', 'Sonic Dispersion', 'Sonic Repulsion', 'Clarity', 'Liquefy', ],
'Storm Summoning' : [ 'Gale', 'O2 Boost', 'Snow Storm', 'Steamy Mist', 'Freezing Rain', 'Hurricane', 'Thunder Clap', 'Tornado', 'Lightning Storm', ],
'Thermal Radiation' : [ 'Warmth', 'Fire Shield', 'Cauterize', 'Plasma Shield', 'Power of the Phoenix', 'Thaw', 'Forge', 'Heat Exhaustion', 'Melt Armor', ],
'Time Manipulation' : [ 'Time Crawl', 'Temporal Mending', 'Time\'s Juncture', 'Temporal Selection', 'Distortion Field', 'Time Stop', 'Farsight', 'Slowed Response', 'Chrono Shift', ],
'Traps' : [ 'Web Grenade', 'Caltrops', 'Triage Beacon', 'Acid Mortar', 'Force Field Generator', 'Poison Trap', 'Seeker Drones', 'Trip Mine', 'Temporal Bomb', ],
'Trick Arrow' : [ 'Entangling Arrow', 'Flash Arrow', 'Glue Arrow', 'Ice Arrow', 'Poison Gas Arrow', 'Acid Arrow', 'Disruption Arrow', 'Oil Slick Arrow', 'EMP Arrow', ],
},
'Secondary': {
'Archery' : [ 'Snap Shot', 'Aimed Shot', 'Fistful of Arrows', 'Blazing Arrow', 'Aim', 'Explosive Arrow', 'Ranged Shot', 'Stunning Shot', 'Rain of Arrows', ],
'Assault Rifle' : [ 'Burst', 'Slug', 'Buckshot', 'M30 Grenade', 'Beanbag', 'Sniper Rifle', 'Flamethrower', 'Ignite', 'Full Auto', ],
'Beam Rifle' : [ 'Single Shot', 'Charged Shot', 'Cutting Beam', 'Disintegrate', 'Aim', 'Lancer Shot', 'Penetrating Ray', 'Piercing Beam', 'Overcharge', ],
'Dark Blast' : [ 'Dark Blast', 'Gloom', 'Moonbeam', 'Dark Pit', 'Tenebrous Tentacles', 'Night Fall', 'Torrent', 'Life Drain', 'Blackstar', ],
'Dual Pistols' : [ 'Pistols', 'Dual Wield', 'Empty Clips', 'Swap Ammo', 'Bullet Rain', 'Suppressive Fire', 'Executioner\'s Shot', 'Piercing Rounds', 'Hail of Bullets',
'Cryo Ammunition', 'Incendiary Ammunition', 'Chemical Ammunition', ],
'Electrical Blast' : [ 'Charged Bolts', 'Lightning Bolt', 'Ball Lightning', 'Short Circuit', 'Charge Up', 'Zapp', 'Tesla Cage', 'Voltaic Sentinel', 'Thunderous Blast', ],
'Energy Blast' : [ 'Power Bolt', 'Power Blast', 'Energy Torrent', 'Power Burst', 'Sniper Blast', 'Aim', 'Power Push', 'Explosive Blast', 'Nova', ],
'Fire Blast' : [ 'Flares', 'Fire Blast', 'Fire Ball', 'Rain of Fire', 'Fire Breath', 'Aim', 'Blaze', 'Blazing Bolt', 'Inferno', ],
'Ice Blast' : [ 'Ice Bolt', 'Ice Blast', 'Frost Breath', 'Aim', 'Freeze Ray', 'Ice Storm', 'Bitter Ice Blast', 'Bitter Freeze Ray', 'Blizzard', ],
'Psychic Blast' : [ 'Psionic Dart', 'Mental Blast', 'Telekinetic Blast', 'Psychic Focus', 'Will Domination', 'Psionic Lance', 'Psionic Tornado', 'Scramble Thoughts', 'Psychic Wail', ],
'Radiation Blast' : [ 'Neutrino Bolt', 'X-Ray Beam', 'Irradiate', 'Electron Haze', 'Proton Volley', 'Aim', 'Cosmic Burst', 'Neutron Bomb', 'Atomic Blast', ],
'Seismic Blast' : [ 'Encase', 'Shatter', 'Rock Shards', 'Entomb', 'Seismic Force', 'Upthrust', 'Tombstone', 'Stalagmite', 'Meteor', ],
'Sonic Attack' : [ 'Shriek', 'Scream', 'Howl', 'Shockwave', 'Shout', 'Amplify', 'Siren\'s Song', 'Screech', 'Dreadful Wail', ],
'Storm Blast' : [ 'Gust', 'Hailstones', 'Jet Stream', 'Storm Cell', 'Intensify', 'Direct Strike', 'Chain Lightning', 'Cloudburst', 'Category Five', ],
'Water Blast' : [ 'Aqua Bolt', 'Hydro Blast', 'Water Burst', 'Whirlpool', 'Tidal Forces', 'Dehydrate', 'Water Jet', 'Steam Spray', 'Geyser', ],
},
},
'Dominator': {
'Faction': 'V',
'Epic': {
'Dark Mastery' : [ 'Murky Cloud', 'Tar Patch', 'Darkest Night', 'Umbral Torrent', 'Soul Consumption', ],
'Fire Mastery' : [ 'Rain of Fire', 'Fire Ball', 'Fire Shield', 'Rise of the Phoenix', 'Melt Armor', ],
'Ice Mastery' : [ 'Sleet', 'Hibernate', 'Frozen Armor', 'Hoarfrost', 'Ice Storm', ],
'Energy Mastery' : [ 'Energy Transfer', 'Conserve Power', 'Temp Invulnerability', 'Energy Torrent', 'Explosive Blast', ],
'Psionic Mastery' : [ 'Link Minds', 'Indomitable Will', 'Mind Over Body', 'World of Confusion', 'Psionic Tornado', ],
'Leviathan Mastery' : [ 'Water Spout', 'Bile Spray', 'Hibernate', 'Shark Skin', 'Summon Coralax', ],
'Mace Mastery' : [ 'Poisonous Ray', 'Scorpion Shield', 'Disruptor Blast', 'Personal Force Field', 'Summon Tarantula', ],
'Mu Mastery' : [ 'Power Sink', 'Charged Armor', 'Ball Lightning', 'Surge of Power', 'Summon Guardian', ],
'Soul Mastery' : [ 'Dark Consumption', 'Dark Embrace', 'Dark Obliteration', 'Soul Drain', 'Summon Seer', ]
},
'Primary': {
'Arsenal Control' : [ 'Tranquilizer', 'Cryo Freeze Ray', 'Sleep Grenade', 'Liquid Nitrogen', 'Cloaking Device', 'Smoke Canister', 'Flash Bang', 'Tear Gas', 'Tri-Cannon', ],
'Darkness Control' : [ 'Shadowy Binds', 'Dark Grasp', 'Living Shadows', 'Possess', 'Fearsome Stare', 'Heart of Darkness', 'Haunt', 'Shadow Field', 'Umbra Beast', ],
'Earth Control' : [ 'Stone Prison', 'Fossilize', 'Stone Cages', 'Quicksand', 'Salt Crystals', 'Stalagmites', 'Earthquake', 'Volcanic Gasses', 'Animate Stone', ],
'Electric Control' : [ 'Electric Fence', 'Tesla Cage', 'Chain Fences', 'Jolting Chain', 'Conductive Aura', 'Static Field', 'Paralyzing Blast', 'Synaptic Overload', 'Gremlins', ],
'Fire Control' : [ 'Ring of Fire', 'Char', 'Fire Cages', 'Smoke', 'Hot Feet', 'Flashfire', 'Cinders', 'Bonfire', 'Fire Imps', ],
'Gravity Control' : [ 'Crush', 'Lift', 'Gravity Distortion', 'Propel', 'Crushing Field', 'Dimension Shift', 'Gravity Distortion Field', 'Wormhole', 'Singularity', ],
'Ice Control' : [ 'Chilblain', 'Block of Ice', 'Frostbite', 'Arctic Air', 'Cold Snap', 'Ice Slick', 'Flash Freeze', 'Glacier', 'Jack Frost', ],
'Illusion Control' : [ 'Blind', 'Spectral Wall', 'Deceive', 'Spectral Terror', 'Superior Invisibility', 'Gleam', 'Phantom Army', 'Flash', 'Phantasm' ],
'Mind Control' : [ 'Mesmerize', 'Levitate', 'Dominate', 'Confuse', 'Mass Hypnosis', 'Telekinesis', 'Total Domination', 'Terrify', 'Mass Confusion', ],
'Plant Control' : [ 'Entangle', 'Strangler', 'Roots', 'Spore Burst', 'Seeds of Confusion', 'Spirit Tree', 'Vines', 'Carrion Creepers', 'Fly Trap', ],
'Symphony Control' : [ 'Melodic Binding', 'Hymn of Dissonance', 'Aria of Stasis', 'Impassioned Serenade', 'Dreadful Discord', 'Enfeebling Lullaby', 'Confounding Chant', 'Chords of Despair', 'Reverberant', ],
# 'Wind Control' : [ 'Updraft', 'Downdraft', 'Breathless', 'Wind Shear', 'Thundergust', 'Microburst', 'Keening Winds', 'Vacuum', 'Vortex', ],
},
'Secondary': {
'Arsenal Assault' : [ 'Burst', 'Buttstroke', 'Buckshot', 'Elbow Strike', 'Power Up', 'Trip Mine', 'Targeting Drone', 'Sniper Rifle', 'Ignite', ],
'Dark Assault' : [ 'Dark Blast', 'Smite', 'Gloom', 'Night Fall', 'Gather Shadows', 'Engulfing Darkness', 'Life Drain', 'Moon Beam', 'Midnight Grasp', ],
'Earth Assault' : [ 'Stone Spears', 'Stone Mallet', 'Tremor', 'Hurl Boulder', 'Power Up', 'Heavy Mallet', 'Seismic Smash', 'Mud Pots', 'Fissure', ],
'Electricity Assault' : [ 'Charged Bolts', 'Charged Brawl', 'Lightning Bolt', 'Havoc Punch', 'Build Up', 'Zapp', 'Static Discharge', 'Thunder Strike', 'Voltaic Sentinel', ],
'Energy Assault' : [ 'Power Bolt', 'Bone Smasher', 'Power Push', 'Power Blast', 'Power Up', 'Whirling Hands', 'Total Focus', 'Sniper Blast', 'Power Burst', ],
'Fiery Assault' : [ 'Flares', 'Incinerate', 'Fire Breath', 'Fire Blast', 'Embrace of Fire', 'Combustion', 'Consume', 'Blazing Bolt', 'Blaze', ],
'Icy Assault' : [ 'Ice Bolt', 'Ice Sword', 'Ice Sword Circle', 'Ice Blast', 'Power Up', 'Frost Breath', 'Chilling Embrace', 'Ice Slash', 'Bitter Ice Blast', ],
'Martial Assault' : [ 'Shuriken Throw', 'Thunder Kick', 'Trick Shot', 'Spinning Kick', 'Envenomed Blades', 'Dragon\'s Tail', 'Caltrops', 'Masterful Throw', 'Explosive Shuriken', ],
'Psionic Assault' : [ 'Psionic Dart', 'Mind Probe', 'Telekinetic Thrust', 'Mental Blast', 'Psychic Scream', 'Drain Psyche', 'Subdue', 'Psionic Lance', 'Psychic Shockwave', ],
'Radioactive Assault' : [ 'Neutrino Bolt', 'Contaminated Strike', 'X-Ray Beam', 'Electron Haze', 'Fusion', 'Radiation Siphon', 'Atom Smasher', 'Proton Volley', 'Devastating Blow', ],
'Savage Assault' : [ 'Call Swarm', 'Maiming Slash', 'Vicious Slash', 'Unkindness', 'Spot Prey', 'Rending Flurry', 'Blood Craze', 'Call Hawk', 'Feral Charge', ],
'Sonic Assault' : [ 'Shriek', 'Strident Echo', 'Scream', 'Shockwave', 'Bass Boost', 'Deafening Wave', 'Disruption Aura', 'Shout', 'Earsplitter', ],
'Thorny Assault' : [ 'Thorny Darts', 'Skewer', 'Fling Thorns', 'Impale', 'Build Up', 'Thorn Burst', 'Thorntrops', 'Ripper', 'Thorn Barrage', ],
},
},
'Mastermind': {
'Faction': 'V',
'Epic': {
'Ice Mastery' : [ 'Ice Blast', 'Flash Freeze', 'Hoarfrost', 'Frozen Armor', 'Hibernate', ],
'Electricity Mastery' : [ 'Static Discharge', 'Electric Shackles', 'Thunder Strike', 'Surge of Power', 'EM Pulse', ],
'Dark Mastery' : [ 'Murky Cloud', 'Shadowy Binds', 'Dark Pit', 'Possess', 'Soul Consumption', ],
'Fire Mastery' : [ 'Bonfire', 'Fire Blast', 'Fire Ball', 'Char', 'Rise of the Phoenix', ],
'Field Mastery' : [ 'Temp Invulnerability', 'Power Blast', 'Energy Torrent', 'Explosive Blast', 'Force of Nature', ],
'Leviathan Mastery' : [ 'School of Sharks', 'Bile Spray', 'Knockout Blow', 'Shark Skin', 'Spirit Shark Jaws', ],
'Mace Mastery' : [ 'Web Envelope', 'Scorpion Shield', 'Mace Beam Volley', 'Power Boost', 'Web Cocoon', ],
'Mu Mastery' : [ 'Static Discharge', 'Charged Armor', 'Electrifying Fences', 'Thunder Strike', 'Electric Shackles', ],
'Soul Mastery' : [ 'Night Fall', 'Dark Embrace', 'Oppressive Gloom', 'Soul Tentacles', 'Soul Storm', ],
},
'Primary': {
'Beast Mastery' : [ 'Call Swarm', 'Summon Wolves', 'Call Hawk', 'Train Beasts', 'Call Ravens', 'Summon Lions', 'Fortify Pack', 'Summon Dire Wolf', 'Tame Beasts', ],
'Demon Summoning' : [ 'Corruption', 'Summon Demonlings', 'Lash', 'Enchant Demon', 'Crack Whip', 'Summon Demons', 'Hell on Earth', 'Summon Demon Prince', 'Abyssal Empowerment', ],
'Mercenaries' : [ 'Burst', 'Soldiers', 'Slug', 'Equip Mercenary', 'M30 Grenade', 'Spec Ops', 'Serum', 'Commando', 'Tactical Upgrade', ],
'Necromancy' : [ 'Dark Blast', 'Zombie Horde', 'Gloom', 'Enchant Undead', 'Life Drain', 'Grave Knight', 'Soul Extraction', 'Lich', 'Dark Empowerment', ],
'Ninjas' : [ 'Snap Shot', 'Call Genin', 'Aimed Shot', 'Train Ninjas', 'Fistful of Arrows', 'Call Jounin', 'Smoke Flash', 'Oni', 'Kuji-In Sha', ],
'Robotics' : [ 'Pulse Rifle Blast', 'Battle Drones', 'Pulse Rifle Burst', 'Equip Robot', 'Photon Grenade', 'Protector Bots', 'Maintenance Drone', 'Assault Bot', 'Upgrade Robot', ],
'Thugs' : [ 'Pistols', 'Call Thugs', 'Dual Wield', 'Equip Thugs', 'Empty Clips', 'Call Enforcer', 'Gang War', 'Call Bruiser', 'Upgrade Equipment', ],
},
'Secondary': {
'Cold Domination' : [ 'Infrigidate', 'Ice Shield', 'Snow Storm', 'Glacial Shield', 'Frostwork', 'Arctic Fog', 'Benumb', 'Sleet', 'Heat Loss', ],
'Dark Miasma' : [ 'Twilight Grasp', 'Tar Patch', 'Darkest Night', 'Howling Twilight', 'Shadow Fall', 'Fearsome Stare', 'Petrifying Gaze', 'Black Hole', 'Dark Servant', ],
'Electrical Affinity' : [ 'Shock', 'Rejuvenating Circuit', 'Discharge', 'Energizing Circuit', 'Faraday Cage', 'Empowering Circuit', 'Defibrillate', 'Insulating Circuit', 'Amp Up', ],
'Empathy' : [ 'Healing Aura', 'Heal Other', 'Absorb Pain', 'Resurrect', 'Clear Mind', 'Fortitude', 'Recovery Aura', 'Regeneration Aura', 'Adrenalin Boost', ],
'Force Field' : [ 'Repulsion Bolt', 'Deflection Shield', 'Insulation Shield', 'Detention Field', 'Personal Force Field', 'Dispersion Bubble', 'Repulsion Field', 'Force Bomb', 'Damping Bubble', ],
'Kinetics' : [ 'Transfusion', 'Siphon Power', 'Repel', 'Siphon Speed', 'Increase Density', 'Speed Boost', 'Inertial Reduction', 'Transference', 'Fulcrum Shift', ],
'Marine Affinity' : [ 'Shoal Rush', 'Soothing Wave', 'Toroidal Bubble', 'Whitecap', 'Tide Pool', 'Brine', 'Shifting Tides', 'Barrier Reef', 'Power of the Depths', ],
'Nature Affinity' : [ 'Corrosive Enzymes', 'Regrowth', 'Wild Growth', 'Spore Cloud', 'Lifegiving Spores', 'Wild Bastion', 'Rebirth', 'Entangling Aura', 'Overgrowth', ],
'Pain Domination' : [ 'Nullify Pain', 'Soothe', 'Share Pain', 'Conduit of Pain', 'Enforced Morale', 'Suppress Pain', 'World of Pain', 'Anguishing Cry', 'Painbringer', ],
'Poison' : [ 'Alkaloid', 'Envenom', 'Weaken', 'Neurotoxic Breath', 'Elixir of Life', 'Antidote', 'Paralytic Poison', 'Poison Trap', 'Noxious Gas', ],
'Radiation Emission' : [ 'Radiant Aura', 'Radiation Infection', 'Accelerate Metabolism', 'Enervating Field', 'Mutation', 'Lingering Radiation', 'Choking Cloud', 'Fallout', 'EM Pulse', ],
'Sonic Resonance' : [ 'Sonic Siphon', 'Sonic Barrier', 'Sonic Haven', 'Sonic Cage', 'Disruption Field', 'Sonic Dispersion', 'Sonic Repulsion', 'Clarity', 'Liquefy', ],
'Storm Summoning' : [ 'Gale', 'O2 Boost', 'Snow Storm', 'Steamy Mist', 'Freezing Rain', 'Hurricane', 'Thunder Clap', 'Tornado', 'Lightning Storm', ],
'Thermal Radiation' : [ 'Warmth', 'Fire Shield', 'Cauterize', 'Plasma Shield', 'Power of the Phoenix', 'Thaw', 'Forge', 'Heat Exhaustion', 'Melt Armor', ],
'Time Manipulation' : [ 'Time Crawl', 'Temporal Mending', 'Time\'s Juncture', 'Temporal Selection', 'Distortion Field', 'Time Stop', 'Farsight', 'Slowed Response', 'Chrono Shift', ],
'Traps' : [ 'Web Grenade', 'Caltrops', 'Triage Beacon', 'Acid Mortar', 'Force Field Generator', 'Poison Trap', 'Seeker Drones', 'Trip Mine', 'Detonator', ],
'Trick Arrow' : [ 'Entangling Arrow', 'Flash Arrow', 'Glue Arrow', 'Ice Arrow', 'Poison Gas Arrow', 'Acid Arrow', 'Disruption Arrow', 'Oil Slick Arrow', 'EMP Arrow', ],
},
},
'Peacebringer': {
'Faction': 'H',
'Epic': {},
'Dependent': {
'Bright Nova': [ 'Bright Nova Bolt', 'Bright Nova Blast', 'Bright Nova Scatter', 'Bright Nova Detonation', ],
'White Dwarf': [ 'White Dwarf Strike', 'White Dwarf Smite', 'White Dwarf Flare', 'White Dwarf Sublimation', 'White Dwarf Antagonize', 'White Dwarf Step', ],
},
'Inherent': {
'Inherent': [ 'Combat Flight', 'Energy Flight', 'Quantum Acceleration',],
},
'Primary': {
'Luminous Blast': [ 'Gleaming Bolt', 'Glinting Eye', 'Gleaming Blast', 'Bright Nova', 'Radiant Strike', 'Proton Scatter', 'Inner Light',
'Luminous Detonation', 'Incandescent Strike', 'Pulsar', 'Glowing Touch', 'Solar Flare', 'Dawn Strike', 'Photon Seekers',
'Bright Nova Bolt', 'Bright Nova Blast', 'Bright Nova Scatter', 'Bright Nova Detonation', ],
},
'Secondary': {
'Luminous Aura': [ 'Incandescence', 'Shining Shield', 'Essence Boost', 'Thermal Shield', 'Quantum Shield', 'Group Energy Flight', 'White Dwarf',
'Reform Essence', 'Conserve Energy', 'Quantum Maneuvers', 'Quantum Flight', 'Restore Essence', 'Light Form',
'White Dwarf Strike', 'White Dwarf Smite', 'White Dwarf Flare', 'White Dwarf Sublimation', 'White Dwarf Antagonize', 'White Dwarf Step', ],
},
},
'Scrapper': {
'Faction': 'H',
'Epic': {
'Fire Mastery' : [ 'Ring of Fire', 'Char', 'Fire Blast', 'Melt Armor', 'Fire Ball', ],
'Energy Mastery' : [ 'Conserve Power', 'Focused Accuracy', 'Laser Beam Eyes', 'Physical Perfection', 'Energy Torrent', ],
'Dark Mastery' : [ 'Torrent', 'Petrifying Gaze', 'Dark Blast', 'Night Fall', 'Tenebrous Tentacles', ],
'Ice Mastery' : [ 'Ice Bolt', 'Frozen Spear', 'Shiver', 'Frigid Wind', 'Ice Elemental', ],
'Psionic Mastery' : [ 'Mental Blast', 'Psionic Lance', 'Psychic Scream', 'Harmonic Mind', 'Psionic Nexus', ],
'Weapon Mastery' : [ 'Web Grenade', 'Caltrops', 'Shuriken', 'Targeting Drone', 'Exploding Shuriken', ],
'Leviathan Mastery' : [ 'Spirit Shark', 'Water Spout', 'Hibernate', 'Spirit Shark Jaws', 'Summon Guardian', ],
'Mace Mastery' : [ 'Mace Blast', 'Mace Beam', 'Disruptor Blast', 'Web Cocoon', 'Summon Spiderlings', ],
'Mu Mastery' : [ 'Mu Bolts', 'Zapp', 'Ball Lightning', 'Electric Shackles', 'Summon Adept', ],
'Soul Mastery' : [ 'Dark Blast', 'Moonbeam', 'Shadow Meld', 'Soul Storm', 'Summon Widow', ],
},
'Primary': {
'Battle Axe' : [ 'Beheader', 'Chop', 'Gash', 'Build Up', 'Pendulum', 'Confront', 'Swoop', 'Axe Cyclone', 'Cleave', ],
'Broad Sword' : [ 'Hack', 'Slash', 'Slice', 'Build Up', 'Parry', 'Confront', 'Whirling Sword', 'Disembowel', 'Head Splitter', ],
'Claws' : [ 'Swipe', 'Strike', 'Slash', 'Spin', 'Confront', 'Follow Up', 'Focus', 'Eviscerate', 'Shockwave', ],
'Dark Melee' : [ 'Shadow Punch', 'Smite', 'Shadow Maul', 'Touch of Fear', 'Siphon Life', 'Confront', 'Dark Consumption', 'Soul Drain', 'Midnight Grasp', ],
'Dual Blades' : [ 'Nimble Slash', 'Power Slice', 'Ablating Strike', 'Typhoon\'s Edge', 'Blinding Feint', 'Confront', 'Vengeful Slice', 'Sweeping Strike', 'One Thousand Cuts', ],
'Electrical Melee' : [ 'Charged Brawl', 'Havoc Punch', 'Jacobs Ladder', 'Build Up', 'Thunder Strike', 'Confront', 'Chain Induction', 'Lightning Clap', 'Lightning Rod', ],
'Energy Melee' : [ 'Barrage', 'Energy Punch', 'Bone Smasher', 'Build Up', 'Power Crash', 'Confront', 'Whirling Hands', 'Total Focus', 'Energy Transfer', ],
'Fiery Melee' : [ 'Scorch', 'Fire Sword', 'Cremate', 'Build Up', 'Breath of Fire', 'Confront', 'Fire Sword Circle', 'Incinerate', 'Greater Fire Sword', ],
'Ice Melee' : [ 'Frozen Fists', 'Ice Sword', 'Frost', 'Build Up', 'Ice Patch', 'Confront', 'Greater Ice Sword', 'Freezing Touch', 'Frozen Aura', ],
'Katana' : [ 'Sting of the Wasp', 'Gambler\'s Cut', 'Flashing Steel', 'Build Up', 'Divine Avalanche', 'Calling the Wolf', 'The Lotus Drops', 'Soaring Dragon', 'Golden Dragonfly', ],
'Kinetic Melee' : [ 'Quick Strike', 'Body Blow', 'Smashing Blow', 'Power Siphon', 'Repulsing Torrent', 'Confront', 'Burst', 'Focused Burst', 'Concentrated Strike', ],
'Martial Arts' : [ 'Thunder Kick', 'Storm Kick', 'Cobra Strike', 'Focus Chi', 'Crane Kick', 'Warrior\'s Challenge', 'Crippling Axe Kick', 'Dragon\'s Tail', 'Eagle\'s Claw', ],
'Psionic Melee' : [ 'Mental Strike', 'Psi Blade', 'Telekinetic Blow', 'Concentration', 'Psi Blade Sweep', 'Confront', 'Boggle', 'Greater Psi Blade', 'Mass Levitate', ],
'Radiation Melee' : [ 'Contaminated Strike', 'Radioactive Smash', 'Proton Sweep', 'Fusion', 'Radiation Siphon', 'Confront', 'Irradiated Ground', 'Devastating Blow', 'Atom Smasher', ],
'Savage Melee' : [ 'Maiming Slash', 'Savage Strike', 'Shred', 'Blood Thirst', 'Vicious Slash', 'Confront', 'Rending Flurry', 'Hemorrhage', 'Savage Leap', ],
'Spines' : [ 'Barb Swipe', 'Lunge', 'Spine Burst', 'Build Up', 'Impale', 'Confront', 'Quills', 'Ripper', 'Throw Spines', ],
'Staff Fighting' : [ 'Mercurial Blow', 'Precise Strike', 'Guarded Spin', 'Eye of the Storm', 'Staff Mastery', 'Confront', 'Serpent\'s Reach', 'Innocuous Strikes', 'Sky Splitter', 'Form of the Body', 'Form of the Mind', 'Form of the Soul', ],
'Stone Melee' : [ 'Stone Fist', 'Stone Mallet', 'Heavy Mallet', 'Build Up', 'Fault', 'Confront', 'Seismic Smash', 'Hurl Boulder', 'Tremor', ],
'Street Justice' : [ 'Initial Strike', 'Heavy Blow', 'Sweeping Cross', 'Combat Readiness', 'Rib Cracker', 'Confront', 'Spinning Strike', 'Shin Breaker', 'Crushing Uppercut', ],
'Titan Weapons' : [ 'Defensive Sweep', 'Crushing Blow', 'Titan Sweep', 'Follow Through', 'Build Momentum', 'Confront', 'Rend Armor', 'Whirling Smash', 'Arc of Destruction', ],
'War Mace' : [ 'Bash', 'Pulverize', 'Jawbreaker', 'Build Up', 'Clobber', 'Confront', 'Whirling Mace', 'Shatter', 'Crowd Control', ],
},
'Secondary': {
'Bio Armor' : [ 'Hardened Carapace', 'Inexhaustible', 'Environmental Modification', 'Adaptation', 'Ablative Carapace', 'Evolving Armor', 'DNA Siphon', 'Genetic Contamination', 'Parasitic Aura', 'Efficient Adaptation', 'Defensive Adaptation', 'Offensive Adaptation', ],
'Dark Armor' : [ 'Dark Embrace', 'Death Shroud', 'Murky Cloud', 'Obsidian Shield', 'Dark Regeneration', 'Cloak of Darkness', 'Cloak of Fear', 'Oppressive Gloom', 'Soul Transfer', ],
'Electric Armor' : [ 'Charged Armor', 'Lightning Field', 'Conductive Shield', 'Static Shield', 'Grounded', 'Energize', 'Lightning Reflexes', 'Power Sink', 'Power Surge', ],
'Energy Aura' : [ 'Kinetic Shield', 'Dampening Field', 'Power Shield', 'Entropic Aura', 'Energy Protection', 'Energy Cloak', 'Energize', 'Energy Drain', 'Overload', ],
'Fiery Aura' : [ 'Fire Shield', 'Blazing Aura', 'Healing Flames', 'Temperature Protection', 'Plasma Shield', 'Consume', 'Burn', 'Fiery Embrace', 'Phoenix Rising', ],
'Ice Armor' : [ 'Frozen Armor', 'Hoarfrost', 'Chilling Embrace', 'Wet Ice', 'Glacial Armor', 'Energy Absorption', 'Permafrost', 'Icicles', 'Icy Bastion', ],
'Invulnerability' : [ 'Resist Physical Damage', 'Temp Invulnerability', 'Dull Pain', 'Resist Elements', 'Unyielding', 'Resist Energies', 'Invincibility', 'Tough Hide', 'Unstoppable', ],
'Ninjitsu' : [ 'Hide', 'Ninja Reflexes', 'Danger Sense', 'Caltrops', 'Kuji-In Rin', 'Kuji-In Sha', 'Smoke Flash', 'Blinding Powder', 'Kuji-In Retsu', ],
'Radiation Armor' : [ 'Alpha Barrier', 'Gamma Boost', 'Proton Armor', 'Fallout Shelter', 'Radiation Therapy', 'Beta Decay', 'Particle Shielding', 'Ground Zero', 'Meltdown', ],
'Regeneration' : [ 'Fast Healing', 'Reconstruction', 'Quick Recovery', 'Dull Pain', 'Integration', 'Resilience', 'Instant Healing', 'Revive', 'Moment of Glory', ],
'Shield Defense' : [ 'Deflection', 'Battle Agility', 'True Grit', 'Active Defense', 'Against All Odds', 'Phalanx Fighting', 'Grant Cover', 'Shield Charge', 'One with the Shield', ],
'Stone Armor' : [ 'Rock Armor', 'Stone Skin', 'Earth\'s Embrace', 'Mud Pots', 'Rooted', 'Crystal Armor', 'Minerals', 'Brimstone Armor', 'Geode', ],
'Super Reflexes' : [ 'Focused Fighting', 'Focused Senses', 'Agile', 'Practiced Brawler', 'Dodge', 'Quickness', 'Lucky', 'Evasion', 'Elude', ],
'Willpower' : [ 'High Pain Tolerance', 'Mind Over Body', 'Fast Healing', 'Indomitable Will', 'Rise to the Challenge', 'Quick Recovery', 'Heightened Senses', 'Resurgence', 'Strength of Will', ],
},
},
'Sentinel': {
'Primary': {
'Archery' : [ 'Snap Shot', 'Aimed Shot', 'Fistful of Arrows', 'Stunning Shot', 'Aim', 'Explosive Arrow', 'Blazing Arrow', 'Perfect Shot', 'Rain of Arrows'],
'Assault Rifle' : [ 'Burst', 'Disorienting Shot', 'Buckshot', 'Slug', 'Aim', 'M30 Grenade', 'Flamethrower', 'Incinerator', 'Full Auto'],
'Beam Rifle' : [ 'Single Shot', 'Charged Shot', 'Cutting Beam', 'Disintegrate', 'Aim', 'Lancer Shot', 'Refractor Beam', 'Piercing Beam', 'Overcharge'],
'Dark Blast' : [ 'Dark Blast', 'Gloom', 'Umbral Torrent', 'Abyssal Gaze', 'Aim', 'Dark Obliteration', 'Antumbral Beam', 'Life Drain', 'Blackstar'],
'Dual Pistols' : [ 'Pistols', 'Dual Wield', 'Empty Clips', 'Suppressive Fire', 'Swap Ammo', 'Bullet Rain', 'Executioner\'s Shot', 'Piercing Rounds', 'Hail of Bullets',
'Cryo Ammunition', 'Incendiary Ammunition', 'Chemical Ammunition'],
'Electrical Blast' : [ 'Charged Bolts', 'Lightning Bolt', 'Ball Lightning', 'Zapping Bolt', 'Charge Up', 'Tesla Cage', 'Voltaic Sentinel', 'Short Circuit', 'Thunderous Blast'],
'Energy Blast' : [ 'Power Bolt', 'Power Blast', 'Energy Torrent', 'Power Burst', 'Aim', 'Power Push', 'Explosive Blast', 'Focused Power Bolt', 'Nova'],
'Fire Blast' : [ 'Flares', 'Fire Blast', 'Fire Ball', 'Blaze', 'Aim', 'Fire Breath', 'Blazing Blast', 'Rain of Fire', 'Inferno'],
'Ice Blast' : [ 'Ice Bolt', 'Ice Blast', 'Frost Breath', 'Chilling Ray', 'Aim', 'Ice Storm', 'Bitter Ice Blast', 'Bitter Freeze Ray', 'Blizzard'],
'Psychic Blast' : [ 'Mental Blast', 'Telekinetic Blast', 'Psychic Scream', 'Will Domination', 'Psychic Focus', 'Psionic Strike', 'Psionic Tornado', 'Scramble Thoughts', 'Psychic Wail'],
'Radiation Blast' : [ 'Neutrino Bolt', 'X-Ray Beam', 'Irradiate', 'Cosmic Burst', 'Aim', 'Electron Haze', 'Proton Stream', 'Neutron Bomb', 'Atomic Blast'],
'Seismic Blast' : [ 'Encase', 'Shatter', 'Rock Shards', 'Entomb', 'Seismic Force', 'Upthrust', 'Gravestone', 'Stalagmite', 'Meteor'],
'Sonic Attack' : [ 'Shriek', 'Scream', 'Howl', 'Shout', 'Amplify', 'Shockwave', 'Sirens Song', 'Screech', 'Dreadful Wail'],
'Storm Blast' : [ 'Gust', 'Hailstones', 'Jet Stream', 'Storm Cell', 'Intensify', 'Lightning Strike', 'Chain Lightning', 'Cloudburst', 'Category Five', ],
'Water Blast' : [ 'Aqua Bolt', 'Hydro Blast', 'Water Burst', 'Dehydrate', 'Tidal Forces', 'Whirlpool', 'Water Jet', 'Steam Spray', 'Geyser']
},
'Secondary': {
'Bio Armor' : [ 'Hardened Carapace', 'Inexhaustible', 'Environmental Adaptation', 'Adaptation', 'Ablative Carapace', 'Rebuild DNA', 'Athletic Regulation', 'Genomic Evolution', 'Parasitic Leech', 'Efficient Adaptation', 'Defensive Adaptation', 'Offensive Adaptation', ],
'Dark Armor' : [ 'Dark Embrace', 'Tenebrous Regeneration', 'Murky Cloud', 'Obsidian Shield', 'Obscure Sustenance', 'Cloak of Darkness', 'Cloak of Fear', 'Oppressive Gloom', 'Soul Transfer'],
'Electric Armor' : [ 'Charged Armor', 'Charged Shield', 'Conductive Shield', 'Energize', 'Static Shield', 'Grounded', 'Lightning Reflexes', 'Power Sink', 'Power Surge'],
'Energy Aura' : [ 'Kinetic Shield', 'Kinetic Dampening', 'Power Shield', 'Energize', 'Entropy Shield', 'Power Armor', 'Repelling Force', 'Power Drain', 'Overload'],
'Fiery Aura' : [ 'Fire Shield', 'Molten Embrace', 'Healing Flames', 'Temperature Protection', 'Plasma Shield', 'Consume', 'Burn', 'Cauterizing Blaze', 'Phoenix Rising'],
'Ice Armor' : [ 'Frozen Armor', 'Hoarfrost', 'Wet Ice', 'Frigid Shield', 'Moisture Absorption', 'Glacial Armor', 'Permafrost', 'Frost Protection', 'Icy Bastion'],
'Invulnerability' : [ 'Temp Invulnerability', 'Resist Physical Damage', 'Durability', 'Dull Pain', 'Unyielding', 'Environmental Resistance', 'Invincible', 'Tough Hide', 'Unstoppable'],
'Ninjitsu' : [ 'Ninja Reflexes', 'Danger Sense', 'Shinobi-Iri', 'Kuji-In Rin', 'Seishinteki Kyoyo', 'Kuji-In Sha', 'Bo Ryaku', 'Blinding Powder', 'Kuji-In Retsu'],
'Radiation Armor' : [ 'Alpha Barrier', 'Gamma Boost', 'Proton Armor', 'Fallout Shelter', 'Proton Therapy', 'Particle Acceleration', 'Particle Shielding', 'Ground Zero', 'Meltdown'],
'Regeneration' : [ 'Fast Healing', 'Reconstruction', 'Quick Recovery', 'Instant Regeneration', 'Dismiss Pain', 'Integration', 'Resilience', 'Second Wind', 'Moment of Glory'],
'Stone Armor' : [ 'Rock Armor', 'Stone Skin', 'Earth\'s Embrace', 'Terra Firma', 'Rooted', 'Crystal Armor', 'Minerals', 'Brimstone Armor', 'Geode'],
'Super Reflexes' : [ 'Focused Fighting', 'Focused Senses', 'Agile', 'Master Brawler', 'Practiced Brawler', 'Enduring', 'Dodge', 'Quickness', 'Evasion', 'Elude'],
'Willpower' : [ 'High Pain Tolerance', 'Mind Over Body', 'Fast Healing', 'Indomitable Will', 'Up to the Challenge', 'Quick Recovery', 'Heightened Senses', 'Resurgence', 'Strength of Will']
},
'Epic': {
'Dark Mastery' : [ 'Netherworld Tentacles', 'Smite', 'Netherworld Grasp', 'Engulfing Darkness', 'Darkest Night', ],
'Fire Mastery' : [ 'Fire Cages', 'Cremate', 'Char', 'Fire Sword Circle', 'Warmth', ],
'Electricity Mastery' : [ 'Chain Fences', 'Havoc Punch', 'Paralyzing Jolt', 'Lightning Field', 'Rehabilitating Circuit', ],
'Ice Mastery' : [ 'Frostbite', 'Ice Sword', 'Block of Ice', 'Frozen Aura', 'Snow Storm', ],
'Weapon Mastery' : [ 'Tashibishi', 'Sting of the Wasp', 'Paralyzing Dart', 'The Lotus Drops', 'Kemuridama', ],
'Psionic Mastery' : [ 'Mass Hypnosis', 'Mind Probe', 'Dominate', 'Psychic Shockwave', 'Link Minds', ],
'Leviathan Mastery' : [ 'School of Sharks', 'Knockout Blow', 'Arctic Breath', 'Spirit Shark Jaws', 'Summon Coralax', ],
'Mace Mastery' : [ 'Web Envelope', 'Pulverize', 'Coordinated Targeting', 'Web Cocoon', 'Summon Tarantula', ],
'Mu Mastery' : [ 'Electrifying Fences', 'Thunder Strike', 'Electric Shackles', 'Static Discharge', 'Summon Adept', ],
'Soul Mastery' : [ 'Midnight Grasp', 'Soul Tentacles', 'Darkest Night', 'Soul Storm', 'Summon Mistress', ],
},
},
'Stalker': {
'Faction': 'V',
'Epic': {
'Fire Mastery' : [ 'Ring of Fire', 'Char', 'Fire Blast', 'Melt Armor', 'Fire Ball', ],
'Energy Mastery' : [ 'Superior Conditioning', 'Focused Accuracy', 'Laser Beam Eyes', 'Physical Perfection', 'Energy Torrent', ],
'Dark Mastery' : [ 'Torrent', 'Petrifying Gaze', 'Dark Blast', 'Night Fall', 'Tenebrous Tentacles', ],
'Ice Mastery' : [ 'Ice Bolt', 'Frozen Spear', 'Shiver', 'Frigid Wind', 'Ice Elemental', ],
'Psionic Mastery' : [ 'Mental Blast', 'Psionic Lance', 'Psychic Scream', 'Harmonic Mind', 'Psionic Nexus', ],
'Weapon Mastery' : [ 'Web Grenade', 'Physical Perfection', 'Shuriken', 'Targeting Drone', 'Exploding Shuriken', ],
'Leviathan Mastery' : [ 'Spirit Shark', 'Water Spout', 'Hibernate', 'Spirit Shark Jaws', 'Summon Guardian', ],
'Mace Mastery' : [ 'Mace Blast', 'Mace Beam', 'Disruptor Blast', 'Web Cocoon', 'Summon Spiderlings', ],
'Mu Mastery' : [ 'Mu Bolts', 'Zapp', 'Ball Lightning', 'Electric Shackles', 'Summon Adept', ],
'Soul Mastery' : [ 'Dark Blast', 'Moonbeam', 'Shadow Meld', 'Soul Storm', 'Summon Widow', ],
},
'Primary' : {
'Broad Sword' : [ 'Hack', 'Slash', 'Slice', 'Assassin\'s Slash', 'Build Up', 'Placate', 'Parry', 'Disembowel', 'Head Splitter', ],
'Claws' : [ 'Swipe', 'Strike', 'Slash', 'Assassin\'s Claw', 'Build Up', 'Placate', 'Focus', 'Eviscerate', 'Shockwave', ],
'Dark Melee' : [ 'Shadow Punch', 'Smite', 'Shadow Maul', 'Assassin\'s Eclipse', 'Build Up', 'Placate', 'Siphon Life', 'Touch of Fear', 'Midnight Grasp', ],
'Dual Blades' : [ 'Nimble Slash', 'Power Slice', 'Ablating Strike', 'Assassin\'s Blades', 'Build Up', 'Placate', 'Vengeful Slice', 'Sweeping Strike', 'One Thousand Cuts', ],
'Electrical Melee' : [ 'Charged Brawl', 'Havoc Punch', 'Jacobs Ladder', 'Assassin\'s Shock', 'Build Up', 'Placate', 'Chain Induction', 'Lightning Clap', 'Lightning Rod', ],
'Energy Melee' : [ 'Barrage', 'Energy Punch', 'Bone Smasher', 'Assassin\'s Strike', 'Build Up', 'Placate', 'Power Crash', 'Total Focus', 'Energy Transfer', ],
'Fiery Melee' : [ 'Scorch', 'Fire Sword', 'Cremate', 'Assassin\'s Blaze', 'Build Up', 'Placate', 'Breath of Fire', 'Fire Sword Circle', 'Greater Fire Sword', ],
'Ice Melee' : [ 'Frozen Fists', 'Ice Sword', 'Frost', 'Assassin\'s Ice Sword', 'Placate', 'Build Up', 'Ice Patch', 'Freezing Touch', 'Frozen Aura', ],
'Kinetic Melee' : [ 'Quick Strike', 'Body Blow', 'Smashing Blow', 'Assassin\'s Strike', 'Build Up', 'Placate', 'Burst', 'Focused Burst', 'Concentrated Strike', ],
'Martial Arts' : [ 'Thunder Kick', 'Storm Kick', 'Crippling Axe Kick', 'Assassin\'s Blow', 'Focus Chi', 'Placate', 'Cobra Strike', 'Crane Kick', 'Eagle\'s Claw', ],
'Ninja Blade' : [ 'Sting of the Wasp', 'Gambler\'s Cut', 'Flashing Steel', 'Assassin\'s Blade', 'Build Up', 'Placate', 'Divine Avalanche', 'Soaring Dragon', 'Golden Dragonfly', ],
'Psionic Melee' : [ 'Mental Strike', 'Psi Blade', 'Telekinetic Blow', 'Assassin\'s Psi Blade', 'Concentration', 'Placate', 'Boggle', 'Greater Psi Blade', 'Mass Levitate', ],
'Radiation Melee' : [ 'Contaminated Strike', 'Radioactive Smash', 'Proton Sweep', 'Assassin\'s Corruption', 'Build Up', 'Placate', 'Radiation Siphon', 'Devastating Blow', 'Atom Smasher', ],
'Savage Melee' : [ 'Savage Strike', 'Maiming Slash', 'Shred', 'Assassin\'s Frenzy', 'Build Up', 'Placate', 'Rending Flurry', 'Hemorrhage', 'Savage Leap', ],
'Spines' : [ 'Barb Swipe', 'Lunge', 'Spine Burst', 'Assassin\'s Impaler', 'Build Up', 'Placate', 'Impale', 'Ripper', 'Throw Spines', ],
'Staff Fighting' : [ 'Mercurial Blow', 'Precise Strike', 'Guarded Spin', 'Assassin\'s Staff', 'Build Up', 'Placate', 'Eye of the Storm', 'Serpent\'s Reach', 'Sky Splitter', ],
'Stone Melee' : [ 'Stone Fist', 'Stone Mallet', 'Fault', 'Assassin\'s Smash', 'Build Up', 'Placate', 'Seismic Mallet', 'Hurl Boulder', 'Tremor', ],
'Street Justice' : [ 'Initial Strike', 'Heavy Blow', 'Sweeping Cross', 'Assassin\'s Strike', 'Build Up', 'Placate', 'Spinning Strike', 'Shin Breaker', 'Crushing Uppercut', ],
},
'Secondary': {
'Bio Armor' : [ 'Hide', 'Hardened Carapace', 'Boundless Energy', 'Environmental Modification', 'Adaptation', 'Ablative Carapace', 'DNA Siphon', 'Genetic Corruption', 'Parasitic Aura', 'Parasitic Aura', 'Efficient Adaptation', 'Defensive Adaptation', 'Offensive Adaptation', ],
'Dark Armor' : [ 'Hide', 'Dark Embrace', 'Murky Cloud', 'Shadow Dweller', 'Obsidian Shield', 'Dark Regeneration', 'Cloak of Fear', 'Oppressive Gloom', 'Soul Transfer', ],
'Electric Armor' : [ 'Hide', 'Charged Armor', 'Conductive Shield', 'Static Shield', 'Grounded', 'Lightning Reflexes', 'Energize', 'Power Sink', 'Power Surge ', ],
'Energy Aura' : [ 'Hide', 'Kinetic Shield', 'Power Shield', 'Entropy Shield', 'Kinetic Dampening', 'Disrupt', 'Energy Drain', 'Energize', 'Overload', ],
'Fiery Aura' : [ 'Hide', 'Fire Shield', 'Healing Flames', 'Temperature Protection', 'Plasma Shield', 'Consume', 'Burn', 'Cauterizing Blaze', 'Phoenix Rising', ],
'Ice Armor' : [ 'Hide', 'Frozen Armor', 'Hoarfrost', 'Wet Ice', 'Chilling Embrace', 'Permafrost', 'Glacial Armor', 'Energy Absorption', 'Icy Bastion', ],
'Invulnerability' : [ 'Hide', 'Resist Physical Damage', 'Temp Invulnerability', 'Dull Pain', 'Unyielding', 'Environmental Resistance', 'Invincible', 'Tough Hide', 'Unstoppable', ],
'Ninjitsu' : [ 'Hide', 'Ninja Reflexes', 'Danger Sense', 'Caltrops', 'Kuji-In Rin', 'Kuji-In Sha', 'Smoke Flash', 'Blinding Powder', 'Kuji-In Retsu', ],
'Radiation Armor' : [ 'Hide', 'Alpha Barrier', 'Gamma Boost', 'Proton Armor', 'Fallout Shelter', 'Radiation Therapy', 'Particle Shielding', 'Ground Zero', 'Meltdown', ],
'Regeneration' : [ 'Hide', 'Fast Healing', 'Reconstruction', 'Dull Pain', 'Integration', 'Resilience', 'Instant Healing', 'Revive', 'Moment of Glory', ],
'Shield Defense' : [ 'Hide', 'Deflection', 'Battle Agility', 'True Grit', 'Active Defense', 'Against All Odds', 'Grant Cover', 'Shield Charge', 'One with the Shield', ],
'Stone Armor' : [ 'Hide', 'Rock Armor', 'Stone Skin', 'Earth\'s Embrace', 'Rooted', 'Crystal Armor', 'Brimstone Armor', 'Minerals', 'Geode', ],
'Super Reflexes' : [ 'Hide', 'Focused Fighting', 'Focused Senses', 'Agile', 'Practiced Brawler', 'Dodge', 'Quickness', 'Evasion', 'Elude', ],
'Willpower' : [ 'Hide', 'High Pain Tolerance', 'Reconstruction', 'Mind Over Body', 'Indomitable Will', 'Heightened Senses', 'Fast Healing', 'Resurgence', 'Strength of Will', ],
},
},
'Tanker': {
'Faction': 'H',
'Epic': {
'Ice Mastery' : [ 'Chillblain', 'Block of Ice', 'Ice Blast', 'Shiver', 'Ice Storm', ],
'Dark Mastery' : [ 'Penumbral Grasp', 'Petrifying Gaze', 'Dark Blast', 'Night Fall', 'Tar Patch', ],
'Earth Mastery' : [ 'Stone Prison', 'Salt Crystals', 'Fossilize', 'Quicksand', 'Stalagmites', ],
'Energy Mastery' : [ 'Conserve Power', 'Focused Accuracy', 'Laser Beam Eyes', 'Physical Perfection', 'Energy Torrent', ],
'Psionic Mastery' : [ 'Mesmerize', 'Dominate', 'Harmonic Mind', 'Mental Blast', 'Psionic Tornado', ],
'Fire Mastery' : [ 'Ring of Fire', 'Char', 'Fire Blast', 'Melt Armor', 'Fire Ball', ],
'Leviathan Mastery' : [ 'Spirit Shark', 'School of Sharks', 'Arctic Breath', 'Bile Spray', 'Summon Guardian', ],
'Mace Mastery' : [ 'Mace Blast', 'Web Envelope', 'Disruptor Blast', 'Focused Accuracy', 'Summon Blaster', ],
'Mu Mastery' : [ 'Mu Lightning', 'Electrifying Fences', 'Ball Lightning', 'Static Discharge', 'Summon Striker', ],
'Soul Mastery' : [ 'Gloom', 'Soul Tentacles', 'Darkest Night', 'Dark Obliteration', 'Summon Widow', ],
},
'Primary': {
'Bio Armor' : [ 'Hardened Carapace', 'Inexhaustible', 'Environmental Modification', 'Adaptation', 'Ablative Carapace', 'Evolving Armor', 'DNA Siphon', 'Genetic Contamination', 'Parasitic Aura', 'Parasitic Aura', 'Efficient Adaptation', 'Defensive Adaptation', 'Offensive Adaptation', ],
'Dark Armor' : [ 'Death Shroud', 'Dark Embrace', 'Murky Cloud', 'Obsidian Shield', 'Dark Regeneration', 'Cloak of Darkness', 'Cloak of Fear', 'Oppressive Gloom', 'Soul Transfer', ],
'Electric Armor' : [ 'Charged Armor', 'Lightning Field', 'Conductive Shield', 'Static Shield', 'Grounded', 'Energize', 'Lightning Reflexes', 'Power Sink', 'Power Surge', ],
'Fiery Aura' : [ 'Blazing Aura', 'Fire Shield', 'Healing Flames', 'Temperature Protection', 'Consume', 'Plasma Shield', 'Burn', 'Fiery Embrace', 'Phoenix Rising', ],
'Ice Armor' : [ 'Frozen Armor', 'Hoarfrost', 'Chilling Embrace', 'Wet Ice', 'Permafrost', 'Icicles', 'Glacial Armor', 'Energy Absorption', 'Hibernate', ],
'Invulnerability' : [ 'Resist Physical Damage', 'Temp Invulnerability', 'Dull Pain', 'Resist Elements', 'Unyielding', 'Resist Energies', 'Invincibility', 'Tough Hide', 'Unstoppable', ],
'Radiation Armor' : [ 'Alpha Barrier', 'Gamma Boost', 'Proton Armor', 'Fallout Shelter', 'Radiation Therapy', 'Beta Decay', 'Particle Shielding', 'Ground Zero', 'Meltdown', ],
'Shield Defense' : [ 'Deflection', 'Battle Agility', 'True Grit', 'Active Defense', 'Against All Odds', 'Phalanx Fighting', 'Grant Cover', 'Shield Charge', 'One with the Shield', ],
'Stone Armor' : [ 'Rock Armor', 'Stone Skin', 'Earth\'s Embrace', 'Mud Pots', 'Rooted', 'Crystal Armor', 'Minerals', 'Brimstone Armor', 'Granite Armor', ],
'Super Reflexes' : [ 'Focused Fighting', 'Focused Senses', 'Agile', 'Practiced Brawler', 'Dodge', 'Evasion', 'Lucky', 'Quickness', 'Elude', ],
'Willpower' : [ 'High Pain Tolerance', 'Mind Over Body', 'Fast Healing', 'Indomitable Will', 'Rise to the Challenge', 'Quick Recovery', 'Heightened Senses', 'Resurgence', 'Strength of Will', ],
},
'Secondary': {
'Battle Axe' : [ 'Beheader', 'Chop', 'Gash', 'Taunt', 'Build Up', 'Pendulum', 'Swoop', 'Axe Cyclone', 'Cleave', ],
'Broad Sword' : [ 'Hack', 'Slash', 'Slice', 'Taunt', 'Parry', 'Build Up', 'Whirling Sword', 'Disembowel', 'Head Splitter', ],
'Claws' : [ 'Swipe', 'Strike', 'Slash', 'Taunt', 'Spin', 'Follow Up', 'Focus', 'Eviscerate', 'Shockwave', ],
'Dark Melee' : [ 'Shadow Punch', 'Smite', 'Shadow Maul', 'Taunt', 'Siphon Life', 'Touch of Fear', 'Soul Drain', 'Dark Consumption', 'Midnight Grasp', ],
'Dual Blades' : [ 'Nimble Slash', 'Power Slice', 'Ablating Strike', 'Taunt', 'Typhoon\'s Edge', 'Blinding Feint', 'Vengeful Slice', 'Sweeping Strike', 'One Thousand Cuts', ],
'Electrical Melee' : [ 'Charged Brawl', 'Havoc Punch', 'Jacobs Ladder', 'Taunt', 'Thunder Strike', 'Build Up', 'Chain Induction', 'Lightning Clap', 'Lightning Rod', ],
'Energy Melee' : [ 'Barrage', 'Energy Punch', 'Bone Smasher', 'Taunt', 'Whirling Hands', 'Total Focus', 'Build Up', 'Power Crash', 'Energy Transfer', ],
'Fiery Melee' : [ 'Scorch', 'Fire Sword', 'Combustion', 'Taunt', 'Breath of Fire', 'Build Up', 'Fire Sword Circle', 'Incinerate', 'Greater Fire Sword', ],
'Ice Melee' : [ 'Frozen Fists', 'Ice Sword', 'Frost', 'Taunt', 'Build Up', 'Ice Patch', 'Freezing Touch', 'Greater Ice Sword', 'Frozen Aura', ],
'Katana' : [ 'Sting of the Wasp', 'Gambler\'s Cut', 'Flashing Steel', 'Dragon\'s Roar', 'Divine Avalanche', 'Build Up', 'The Lotus Drops', 'Soaring Dragon', 'Golden Dragonfly', ],
'Kinetic Melee' : [ 'Quick Strike', 'Body Blow', 'Smashing Blow', 'Taunt', 'Repulsing Torrent', 'Power Siphon', 'Burst', 'Focused Burst', 'Concentrated Strike', ],
'Martial Arts' : [ 'Thunder Kick', 'Storm Kick', 'Cobra Strike', 'Warrior\'s Provocation', 'Crane Kick', 'Dragon\'s Tail', 'Focus Chi', 'Crippling Axe Kick', 'Eagle\'s Claw', ],
'Psionic Melee' : [ 'Mental Strike', 'Psi Blade', 'Telekinetic Blow', 'Taunt', 'Psi Blade Sweep', 'Concentration', 'Boggle', 'Greater Psi Blade', 'Mass Levitate', ],
'Radiation Melee' : [ 'Contaminated Strike', 'Radioactive Smash', 'Proton Sweep', 'Taunt', 'Radiation Siphon', 'Fusion', 'Irradiated Ground', 'Devastating Blow', 'Atom Smasher', ],
'Savage Melee' : [ 'Savage Strike', 'Maiming Slash', 'Shred', 'Taunt', 'Vicious Slash', 'Blood Thirst', 'Rending Flurry', 'Hemorrhage', 'Savage Leap', ],
'Spines' : [ 'Barb Swipe', 'Lunge', 'Spine Burst', 'Taunt', 'Ripper', 'Build Up', 'Impale', 'Quills', 'Throw Spines', ],
'Staff Fighting' : [ 'Mercurial Blow', 'Precise Strike', 'Guarded Spin', 'Taunt', 'Eye of the Storm', 'Staff Mastery', 'Serpent\'s Reach', 'Innocuous Strikes', 'Sky Splitter', 'Form of the Body', 'Form of the Mind', 'Form of the Soul', ],
'Stone Melee' : [ 'Stone Fist', 'Stone Mallet', 'Heavy Mallet', 'Taunt', 'Build Up', 'Fault', 'Tremor', 'Hurl Boulder', 'Seismic Smash', ],
'Street Justice' : [ 'Initial Strike', 'Heavy Blow', 'Sweeping Cross', 'Taunt', 'Combat Readiness', 'Rib Cracker', 'Spinning Strike', 'Shin Breaker', 'Crushing Uppercut', ],
'Super Strength' : [ 'Jab', 'Punch', 'Haymaker', 'Taunt', 'Hand Clap', 'Knockout Blow', 'Rage', 'Hurl', 'Foot Stomp', ],
'Titan Weapons' : [ 'Defensive Sweep', 'Crushing Blow', 'Titan Sweep', 'Taunt', 'Follow Through', 'Build Momentum', 'Rend Armor', 'Whirling Smash', 'Arc of Destruction', ],
'War Mace' : [ 'Bash', 'Pulverize', 'Jawbreaker', 'Taunt', 'Build Up', 'Whirling Mace', 'Clobber', 'Shatter', 'Crowd Control', ],
},
},
'Warshade': {
'Faction': 'H',
'Epic': {},
'Dependent': {
'Black Dwarf': [ 'Black Dwarf Strike', 'Black Dwarf Smite', 'Black Dwarf Mire', 'Black Dwarf Drain', 'Black Dwarf Step', 'Black Dwarf Antagonize', ],
'Dark Nova': [ 'Dark Nova Blast', 'Dark Nova Bolt', 'Dark Nova Detonation', 'Dark Nova Emmanation', ],
},
'Inherent': {
'Inherent': [ 'Shadow Recall', 'Shadow Step', ],
},
'Primary': {
'Umbral Blast': [ 'Shadow Bolt', 'Ebon Eye', 'Gravimetric Snare', 'Dark Nova', 'Shadow Blast', 'Sunless Mire','Dark Detonation',
'Gravity Well', 'Essence Drain', 'Gravitic Emanation', 'Unchain Essence', 'Dark Extraction', 'Quasar',
'Dark Nova Blast', 'Dark Nova Bolt', 'Dark Nova Detonation', 'Dark Nova Emanation', ],
},
'Secondary': {
'Umbral Aura': [ 'Absorption', 'Gravity Shield', 'Orbiting Death', 'Penumbral Shield', 'Shadow Cloak', 'Twilight Shield',
'Black Dwarf', 'Stygian Circle', 'Nebulous Form', 'Inky Aspect', 'Stygian Return', 'Eclipse',
'Black Dwarf Strike', 'Black Dwarf Smite', 'Black Dwarf Mire', 'Black Dwarf Drain', 'Black Dwarf Step', 'Black Dwarf Antagonize', ],
},
},
};
MiscPowers: Dict[str, dict] = {
'Badge': {
'Accolade': [
'Core Attunement',
'Eye of the Magus',
'Crey CBX-9 Pistol',
'Demonic Aura',
'Elusive Mind',
'Force of Nature',
'Geas of the Kind Ones',
'Mark',
'Portable Workbench',
'Recall',
'Sheer Willpower',
'Stolen Immobilizer Ray',
'Megalomaniac',
'Vanguard Medal',
],
},
'General': {
'Inherent': [
'Brawl',
'Rest',
'Sprint',
'Walk',
'Prestige Power Slide',
],
'SMART': [
'Prestige Power Rush',
'Prestige Power Dash',
'Prestige Power Surge ',
'Prestige Power Quick',
'Shadowy Presence',
'Jump Pack',
'Pocket D VIP Pass',
'Mission Transporter',
'Athletic Run',
'Beast Run',
'Inner Inspiration',
'Mystic Fortune',
'Ninja Run',
'Secondary Mutation',
'Self Destruction',
'Steam Jump',
'Apprentice Charm',
'Mutagen',
'Taser Dart',
'Throwing Knives',
'Tranq Dart',
],
},
'Pool' : {
'Concealment' : [ 'Stealth', 'Grant Invisibility', 'Infiltration', 'Misdirection', 'Phase Shift', ],
'Experimentation' : [ 'Experimental Injection', 'Toxic Dart', 'Speed of Sound', 'Corrosive Vial', 'Adrenal Booster', 'Jaunt', ],
'Fighting' : [ 'Boxing', 'Kick', 'Tough', 'Weave', 'Cross Punch', ],
'Flight' : [ 'Hover', 'Air Superiority', 'Fly', 'Group Fly', 'Evasive Maneuvers', 'Afterburner' ],
'Force of Will' : [ 'Weaken Resolve', 'Mighty Leap', 'Project Will', 'Wall of Force', 'Unleash Potential', 'Takeoff', ],
'Leadership' : [ 'Maneuvers', 'Assault', 'Tactics', 'Vengeance', 'Victory Rush', ],
'Leaping' : [ 'Jump Kick', 'Super Jump', 'Combat Jumping', 'Acrobatics', 'Spring Attack', 'Double Jump', ],
'Medicine' : [ 'Aid Other', 'Injection', 'Aid Self', 'Field Medic', 'Resuscitate', ],
'Presence' : [ 'Pacify', 'Provoke', 'Intimidate', 'Invoke Panic', 'Unrelenting', ],
'Sorcery' : [ 'Spirit Ward', 'Arcane Bolt', 'Mystic Flight', 'Enflame', 'Rune of Protection', 'Translocation',],
'Speed' : [ 'Flurry', 'Hasten', 'Super Speed', 'Burnout', 'Whirlwind', 'Speed Phase', ],
'Teleportation' : [ 'Teleport Target', 'Teleport', 'Combat Teleport', 'Fold Space', 'Team Teleport', ],
},
'Incarnate': {
'Alpha': {
'Types': [ 'Agility', 'Cardiac', 'Intuition', 'Musculature', 'Nerve' ,'Resilient', 'Spiritual', 'Vigor' ],
'Powers': [ 'Boost', 'Core Boost', 'Radial Boost', 'Total Core Revamp', 'Partial Core Revamp',
'Partial Radial Revamp', 'Total Radial Revamp', 'Core Paragon', 'Radial Paragon', ],
},
'Judgement': {
'Types': [ 'Cryonic', 'Ion', 'Mighty', 'Pyronic', 'Void', 'Vorpal', ],
'Powers': [ 'Judgement', 'Core Judgement', 'Radial Judgement', 'Total Core Judgement', 'Partial Core Judgement',
'Partial Radial Judgement', 'Total Radial Judgement', 'Core Final Judgement', 'Radial Final Judgement' ],
},
'Interface': {
'Types': [ 'Cognitive', 'Degenerative', 'Diamagnetic', 'Gravitic', 'Paralytic', 'Preemptive', 'Reactive', 'Spectral', ],
'Powers': [ 'Interface', 'Core Interface', 'Radial Interface', 'Total Core Conversion', 'Partial Core Conversion',
'Partial Radial Conversion', 'Total Radial Conversion', 'Core Flawless Interface', 'Radial Flawless Interface', ],
},
'Lore': {
'Types': [ 'Arachnos', 'Banished Pantheon', 'Carnival of Shadows', 'Cimerorans', 'Clockwork', 'Demons', 'IDF',
'Knives of Vengeance', 'Longbow', 'Nemesis', 'Phantom', 'Polar Lights', 'Rikti', 'Robotic Drones',
'Rularuu', 'Seers', 'Storm Elementals', 'Talons of Vengeance', 'Tsoo', 'Vanguard', 'Warworks', ],
'Powers': [ 'Ally', 'Core Ally', 'Radial Ally', 'Total Core Improved Ally', 'Partial Core Improved Ally',
'Partial Radial Improved Ally', 'Total Radial Improved Ally', 'Core Superior Ally', 'Radial Superior Ally', ],
},
'Destiny': {
'Types': [ 'Ageless', 'Barrier', 'Clarion', 'Incandescence', 'Rebirth', ],
'Powers': [ 'Invocation', 'Core Invocation', 'Radial Invocation', 'Total Core Invocation', 'Partial Core Invocation',
'Partial Radial Invocation', 'Total Radial Invocation', 'Core Epiphany', 'Radial Epiphany', ],
},
'Hybrid': {
'Types': [ 'Assault', 'Control', 'Melee', 'Support', ],
'Powers': [ 'Genome', 'Core Genome', 'Radial Genome', 'Total Core Graft', 'Partial Core Graft',
'Partial Radial Graft', 'Total Radial Graft', 'Core Embodiment', 'Radial Embodiment', ],
},
}
}
SprintPowers = [
'Sprint',
'Prestige Power Slide',
'Prestige Power Dash',
'Prestige Power Quick',
'Prestige Power Rush',
'Prestige Power Slide',
'Athletic Run',
'Beast Run',
'Ninja Run',
'Infiltration',
]
Inspirations = {
'Single' : {
'Accuracy' : {
'ltcolor': (255, 238, 0),
'dkcolor': (118, 80, 0),
'tiers': ['Insight', 'Keen Insight', 'Uncanny Insight', 'Sight Beyond Sight',],
},
'Health' : {
'ltcolor': (135, 220, 38),
'dkcolor': (0, 66, 7),
'tiers': ['Respite', 'Dramatic Improvement', 'Resurgence', 'Perfect Health',],
},
'Damage' : {
'ltcolor': (249, 163, 152),
'dkcolor': (179, 0, 0),
'tiers': ['Enrage', 'Focused Rage', 'Righteous Rage', 'Furious Rage',],
},
'Endurance' : {
'ltcolor': (122, 220, 255),
'dkcolor': (0, 30, 160),
'tiers': ['Catch a Breath', 'Take a Breather', 'Second Wind', 'Back in the Fight',],
},
'Defense' : {
'ltcolor': (228, 166, 236),
'dkcolor': (94, 0, 94),
'tiers': ['Luck', 'Good Luck', 'Phenomenal Luck', 'Amazing Luck',],
},
'ResistDamage' : {
'ltcolor': (255, 178, 99),
'dkcolor': (151, 54, 0),
'tiers': ['Sturdy', 'Rugged', 'Robust', 'Resistant',],
},
'BreakFree' : {
'ltcolor': (186, 174, 255),
'dkcolor': (57, 0, 113),
'tiers': ['Break Free', 'Emerge', 'Escape', 'Liberate',],
},
'Resurrection' : {
'ltcolor': (50, 180, 160), # cyan
'dkcolor': (0, 30, 10),
'tiers': ['Awaken', 'Bounce Back', 'Restoration', 'Immortal Recovery',],
},
},
'Dual' : {
'Acc / Dam' : {
'ltcolor' : (255, 238, 0),
'dkcolor' : (179, 0, 0),
'tiers' : ['Keen', 'Tactical', 'Precise', 'Intuition',],
},
'Def / Res' : {
'ltcolor' : (255, 178, 99),
'dkcolor' : (179, 0, 148),
'tiers' : ['Shielded', 'Guarded', 'Protected', 'Impenetrable',],
},
'End / Heal' : {
'ltcolor' : (135, 220, 38),
'dkcolor' : (0, 30, 160),
'tiers' : ['Revitalize', 'Rejuvenate', 'Invigorate', 'Refresh',],
}
},
'Team' : {
'Accuracy' : {
'ltcolor': (255, 238, 0),
'dkcolor': (118, 80, 0),
'tiers': ['Insight Imbuement', 'Keen Insight Imbuement', 'Uncanny Insight Imbuement',],
},
'Health' : {
'ltcolor': (135, 220, 38),
'dkcolor': (0, 66, 7),
'tiers': ['Health Imbuement', 'Greater Health Imbuement', 'Superior Health Imbuement',],
},
'Damage' : {
'ltcolor': (249, 163, 152),
'dkcolor': (179, 0, 0),
'tiers': ['Rage Imbuement', 'Focused Rage Imbuement', 'Righteous Rage Imbuement',],
},
'Endurance' : {
'ltcolor': (122, 220, 255),
'dkcolor': (0, 30, 160),
'tiers': ['Endurance Imbuement', 'Greater Endurance Imbuement', 'Superior Endurance Imbuement',],
},
'Defense' : {
'ltcolor': (228, 166, 236),
'dkcolor': (94, 0, 94),
'tiers': ['Luck Imbuement', 'Good Luck Imbuement', 'Phenomenal Luck Imbuement',],
},
'ResistDamage' : {
'ltcolor': (255, 178, 99),
'dkcolor': (151, 54, 0),
'tiers': ['Sturdy Imbuement', 'Rugged Imbuement', 'Robust Imbuement',],
},
'BreakFree' : {
'ltcolor': (186, 174, 255),
'dkcolor': (57, 0, 113),
'tiers': ['Protection Imbuement', 'Greater Protection Imbuement', 'Superior Protection Imbuement',],
},
},
'DualTeam' : {
'Acc / Dam' : {
'ltcolor' : (255, 238, 0),
'dkcolor' : (179, 0, 0),
'tiers' : ['Tactical Imbuement', 'Precise Imbuement', 'Intuition Imbuement',],
},
'Def / Res' : {
'ltcolor' : (255, 178, 99),
'dkcolor' : (179, 0, 148),
'tiers' : ['Guarding Imbuement', 'Protecting Imbuement', 'Impenetrable Imbuement',],
},
'End / Heal' : {
'ltcolor' : (135, 220, 38),
'dkcolor' : (0, 30, 160),
'tiers' : ['Rejuvenating Imbuement', 'Invigorating Imbuement', 'Refreshing Imbuement',],
}
},
}
DefaultBinds = {
'\'' : "quickchat",
'-' : "prev_tray",
'ALT+-' : "prev_tray_alt",
'/' : "show chat$$slashchat",
'0' : "powexec_slot 10",
'CTRL+0' : "powexec_alt2slot 10",
'ALT+0' : "powexec_altslot 10",
'1' : "powexec_slot 1",
'CTRL+1' : "powexec_alt2slot 1",
'SHIFT+1' : "team_select 1",
'ALT+1' : "powexec_altslot 1",
'2' : "powexec_slot 2",
'CTRL+2' : "powexec_alt2slot 2",
'SHIFT+2' : "team_select 2",
'ALT+2' : "powexec_altslot 2",
'3' : "powexec_slot 3",
'CTRL+3' : "powexec_alt2slot 3",
'SHIFT+3' : "team_select 3",
'ALT+3' : "powexec_altslot 3",
'4' : "powexec_slot 4",
'CTRL+4' : "powexec_alt2slot 4",
'SHIFT+4' : "team_select 4",
'ALT+4' : "powexec_altslot 4",
'5' : "powexec_slot 5",
'CTRL+5' : "powexec_alt2slot 5",
'SHIFT+5' : "team_select 5",
'ALT+5' : "powexec_altslot 5",
'6' : "powexec_slot 6",
'CTRL+6' : "powexec_alt2slot 6",
'SHIFT+6' : "team_select 6",
'ALT+6' : "powexec_altslot 6",
'7' : "powexec_slot 7",
'CTRL+7' : "powexec_alt2slot 7",
'SHIFT+7' : "team_select 7",
'ALT+7' : "powexec_altslot 7",
'8' : "powexec_slot 8",
'CTRL+8' : "powexec_alt2slot 8",
'SHIFT+8' : "team_select 8",
'ALT+8' : "powexec_altslot 8",
'9' : "powexec_slot 9",
'CTRL+9' : "powexec_alt2slot 9",
'ALT+9' : "powexec_altslot 9",
';' : "show chat$$slashchat",
'\\' : "menu",
'A' : "+left",
'B' : "++first",
'BACKSPACE' : "autoreply",
'C' : "chat",
'COMMA' : "show chat$$beginchat /tell $target, ",
'D' : "+right",
'DELETE' : "+lookdown",
'DOWN' : "+backward",
'DOWNARROW' : "+backward",
'E' : "+turnright",
'END' : "+zoomout",
'ENTER' : "show chat$$startchat",
'EQUALS' : "next_tray",
'ALT+EQUALS' : "next_tray_alt",
'ESC' : "unselect",
'F' : "follow",
'F1' : "inspexec_slot 1",
'F10' : "say $battlecry $$ emote attack",
'F2' : "inspexec_slot 2",
'F3' : "inspexec_slot 3",
'F4' : "inspexec_slot 4",
'F5' : "inspexec_slot 5",
'F6' : "local <color white><bgcolor red>RUN!",
'F7' : "say <color black><bgcolor #22aa22>Ready! $$ emote thumbsup",
'F8' : "local <color black><bgcolor #aaaa22>HELP! $$ emote whistle",
'F9' : "local <color white><bgcolor #2222aa><scale .75>level $level $archetype$$local <color white><bgcolor #2222aa>Looking for team",
'HOME' : "+zoomin",
'INSERT' : "+lookup",
'LALT' : "+alttray",
'LCONTROL' : "+alt2tray",
'LCTRL' : "+alt2tray",
'LEFT' : "+turnleft",
'LEFTARROW' : "+turnleft",
'M' : "map",
'MBUTTON' : "+camrotate",
'MouseChord' : "+forward_mouse",
'MOUSEWHEEL' : "+camdistadjust",
'N' : "nav",
'P' : "powers",
'PAGEDOWN' : "camreset",
'PAGEUP' : "+camrotate",
'Q' : "+turnleft",
'R' : "++autorun",
'RALT' : "alttraysticky",
'RBUTTON' : "+mouse_look",
'RIGHT' : "+turnright",
'RIGHTARROW' : "+turnright",
'S' : "+backward",
'SPACE' : "+up",
'SYSRQ' : "screenshot",
'T' : "target",
'TAB' : "target_enemy_next",
'CTRL+TAB' : "target_enemy_near",
'SHIFT+TAB' : "target_enemy_prev",
'UP' : "+forward",
'UPARROW' : "+forward",
'V' : "+ctm_invert",
'W' : "+forward",
'X' : "+down",
'Z' : "powexec_abort",
}
Emotes = {
'emotes': [
{ 'Converse' : [