-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeless jewels.json
1506 lines (1506 loc) · 39.8 KB
/
timeless jewels.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"jewels": {
"brutal restraint": {
"_decoder": [
"cold resistance: 20%",
"chance to blind: 5%",
"maximum life: 4%",
"flask charges: 10%",
"poison damage: 20%",
"non-dmg ailment effect: 10%",
"evasion rating: 20%",
"crit chance: 25% inc",
"minion damage: 20%",
"global accuracy: 5%",
"non-curse aura effect: 8%",
"dexterity: +20",
"dexterity: 5%",
"f-charge on kill: 5%",
"stun avoidance: 20%",
"movement speed: 5%",
"minion move speed: 15%",
"attack + cast speed: 5%",
"faster poison damage: 10%",
"projectile damage: 20%",
"onslaught on kill: 8s",
"elemental damage: 20%",
"e-ailment duration: 10%",
"phys as extra cold: 5%",
"alch genius: 25% chance"
],
"dance with death": [
"asenath",
"can't use helmets",
"your critical strike chance is lucky",
"your damage with critical strikes is lucky",
"enemies' damage with critical strikes against you is lucky"
],
"second sight": [
"nasima",
"you are blind",
"blind does not affect your light radius",
"25% more melee critical strike chance while blinded"
],
"the traitor": [
"balbala",
"flasks gain 4 charges per empty flask slot every 5 seconds"
]
},
"descriptions": {
"alch genius: 25% chance": [
"25% chance to gain alchemist's genius when you use a flask",
"alchemist's genius increases flask charges gained by 20% and effect of flasks by 10%, for 4 seconds"
],
"ancient hex": [
"(7-10)% increased effect of your curses",
"curse skills have 20% increased skill effect duration"
],
"automaton studies": [
"(30-40)% increased armour",
"(3-4)% additional physical damage reduction"
],
"axiom warden": [
"minions have 80% increased maximum life"
],
"baleful augmentation": [
"+50% to lightning resistance"
],
"blood-quenched bulwark": [
"+5% chance to block attack damage",
"+(6-10) life gained when you block"
],
"bloody flowers' rebellion": [
"80% increased cold damage with attack skills"
],
"bloody savagery": [
"(25-35)% increased physical damage",
"bleeding you inflict deals damage 10% faster"
],
"brutal execution": [
"+40% to critical strike multiplier"
],
"calming devotion": [
"15% of physical damage converted to cold damage while you have at least 150 devotion"
],
"chainbreaker": [
"akoya",
"regenerate 3 rage per second",
"increases and reductions to mana regeneration rate instead apply to rage regeneration rate",
"skills cost +3 rage"
],
"chitus' heart": [
"80% increased lightning damage with attack skills"
],
"city walls": [
"+8% chance to block attack damage"
],
"cloistered": [
"immune to elemental ailments while on consecrated ground if you have at least 150 devotion"
],
"commanding presence": [
"(7-10)% increased effect of non-curse auras from your skills",
"20% increased area of effect of aura skills"
],
"construct studies": [
"(30-40)% increased evasion rating",
"(5-7)% chance to blind enemies on hit"
],
"corrupted soul": [
"doryani",
"50% of non-chaos damage taken bypasses energy shield",
"gain 15% of maximum life as extra maximum energy shield"
],
"crematorium worker": [
"+50% to fire resistance"
],
"cult of chaos": [
"+(13-19)% to chaos resistance",
"+1% to maximum chaos resistance"
],
"cult of fire": [
"+(20-30)% to fire resistance",
"+1% to maximum fire resistance"
],
"cult of ice": [
"+(20-30)% to cold resistance",
"+1% to maximum cold resistance"
],
"cult of lightning": [
"+(20-30)% to lightning resistance",
"+1% to maximum lightning resistance"
],
"dance with death": [
"asenath",
"can't use helmets",
"your critical strike chance is lucky",
"your damage with critical strikes is lucky",
"enemies' damage with critical strikes against you is lucky"
],
"dialla's wit": [
"15% increased cast speed"
],
"discerning taste": [
"40% increased rarity of items found"
],
"divine flesh": [
"xibaqua",
"all damage taken bypasses energy shield",
"50% of elemental damage taken as chaos damage",
"+5% to maximum chaos resistance"
],
"enduring faith": [
"+1 to minimum endurance charges while you have at least 150 devotion"
],
"energy flow studies": [
"(8-12)% increased maximum energy shield",
"(10-15)% increased energy shield recharge rate"
],
"eternal adaptiveness": [
"8% increased evasion rating per frenzy charge"
],
"eternal bloodlust": [
"10% increased damage per frenzy charge"
],
"eternal dominance": [
"10% increased damage per endurance charge"
],
"eternal exploitation": [
"10% increased damage per power charge"
],
"eternal fervour": [
"10% chance to gain a frenzy charge on hit"
],
"eternal fortitude": [
"8% increased armour per endurance charge"
],
"eternal resilience": [
"gain 1 endurance charge every second if you've been hit recently"
],
"eternal separation": [
"4% increased energy shield per power charge"
],
"eternal subjugation": [
"15% chance to gain a power charge on critical strike"
],
"exquisite pain": [
"(25-35)% increased damage over time",
"(7-11)% increased skill effect duration"
],
"flawless execution": [
"80% increased critical strike chance"
],
"flesh to flames": [
"(25-35)% increased fire damage",
"10% of physical damage converted to fire damage"
],
"flesh to frost": [
"(25-35)% increased cold damage",
"10% of physical damage converted to cold damage"
],
"flesh to lightning": [
"(25-35)% increased lightning damage",
"10% of physical damage converted to lightning damage"
],
"flesh worship": [
"(6-10)% increased maximum life",
"0.4% of attack damage leeched as life"
],
"frenzied faith": [
"+1 to minimum frenzy charges while you have at least 150 devotion"
],
"freshly brewed": [
"20% increased flask effect duration"
],
"gemling ambush": [
"80% increased critical strike chance for spells"
],
"gemling inquisition": [
"80% increased spell damage"
],
"gemling training": [
"80% increased physical damage"
],
"geofri's end": [
"50% increased damage with bleeding",
"bleeding you inflict deals damage 10% faster"
],
"gleaming legion": [
"80% increased armour"
],
"heated devotion": [
"15% of physical damage converted to fire damage while you have at least 150 devotion"
],
"hierarchy": [
"minions deal (25-35)% increased damage",
"minions have (15-20)% increased maximum life"
],
"immortal ambition": [
"ahuana",
"energy shield starts at zero",
"cannot recharge or regenerate energy shield",
"lose 5% of energy shield per second",
"life leech effects are not removed when unreserved life is filled",
"life leech effects recover energy shield instead while on full life"
],
"inner conviction": [
"dominus",
"3% more spell damage per power charge",
"gain power charges instead of frenzy charges"
],
"intolerance of sin": [
"+1% to all maximum resistances if you have at least 150 devotion"
],
"jungle paths": [
"(8-10)% chance to avoid elemental ailments",
"(8-10)% chance to avoid being stunned"
],
"laureate": [
"50% increased mana regeneration rate"
],
"lioneye's focus": [
"80% increased projectile attack damage"
],
"martyr's might": [
"5% additional physical damage reduction while you have at least 150 devotion"
],
"might/legacy of vaal": [
"3-4 random offense/defense mods"
],
"night of a thousand ribbons": [
"80% increased fire damage with attack skills"
],
"pooled resources": [
"30% increased maximum mana"
],
"power of purpose": [
"avarius",
"80% of maximum mana is converted to twice that much armour"
],
"powerful faith": [
"+1 to minimum power charges while you have at least 150 devotion"
],
"purity rebel": [
"+12% chance to suppress spell damage"
],
"revitalising darkness": [
"(25-35)% increased chaos damage",
"0.2% of chaos damage leeched as life"
],
"revitalising flames": [
"(25-35)% increased fire damage",
"0.2% of fire damage leeched as life"
],
"revitalising frost": [
"(25-35)% increased cold damage",
"0.2% of cold damage leeched as life"
],
"revitalising lightning": [
"(25-35)% increased lightning damage",
"0.2% of lightning damage leeched as life"
],
"revitalising winds": [
"(25-35)% increased physical damage",
"0.2% of physical damage leeched as life"
],
"rigwald's might": [
"80% increased melee physical damage"
],
"rites of lunaris": [
"30% increased effect of chill"
],
"rites of solaris": [
"80% chance to avoid being chilled"
],
"ritual of flesh": [
"(6-10)% increased maximum life",
"regenerate (0.7-1.2)% of life per second"
],
"ritual of immolation": [
"(25-35)% increased fire damage",
"damage penetrates (2-4)% fire resistance"
],
"ritual of memory": [
"(17-23)% increased maximum mana",
"(15-25)% increased mana regeneration rate"
],
"ritual of might": [
"(25-35)% increased physical damage",
"(2-4)% chance to deal double damage"
],
"ritual of shadows": [
"(25-35)% increased chaos damage",
"25% chance to inflict withered for 2 seconds on hit"
],
"ritual of stillness": [
"(25-35)% increased cold damage",
"damage penetrates (2-4)% cold resistance"
],
"ritual of thunder": [
"(25-35)% increased lightning damage",
"damage penetrates (2-4)% lightning resistance"
],
"robust diet": [
"10% increased maximum life"
],
"rural life": [
"80% chance to avoid being shocked"
],
"sceptre pinnacle": [
"8% chance to block spell damage"
],
"second sight": [
"nasima",
"you are blind",
"blind does not affect your light radius",
"25% more melee critical strike chance while blinded"
],
"secret tunnels": [
"20% chance to avoid elemental ailments"
],
"shadowy streets": [
"80% increased evasion rating"
],
"slum lord": [
"minions deal 80% increased damage"
],
"smite the heretical": [
"10% chance to inflict lightning exposure on hit if you have at least 150 devotion"
],
"smite the ignorant": [
"10% chance to inflict cold exposure on hit if you have at least 150 devotion"
],
"smite the wicked": [
"10% chance to inflict fire exposure on hit if you have at least 150 devotion"
],
"soul worship": [
"(8-12)% increased maximum energy shield",
"0.3% of spell damage leeched as energy shield"
],
"street urchin": [
"+50% to cold resistance"
],
"strength of blood": [
"kaom",
"life recovery from non-instant leech is not applied",
"2% additional physical damage reduction for every 3% life recovery per second from leech"
],
"superiority": [
"12% increased effect of non-curse auras from your skills"
],
"supreme decadence": [
"cadiro",
"life recovery from flasks also applies to energy shield",
"30% less life recovery from flasks"
],
"supreme grandstanding": [
"victario",
"nearby allies and enemies share charges with you",
"enemies hitting you have 10% chance to gain an endurance, frenzy, or power charge"
],
"supreme ostentation": [
"caspiro",
"ignore attribute requirements",
"gain no inherent bonuses from attributes"
],
"tempered by war": [
"rakiata",
"50% of cold and lightning damage taken as fire damage",
"50% less cold resistance",
"50% less lightning resistance"
],
"temple paths": [
"+6% chance to suppress spell damage",
"+(8-10)% to all elemental resistances"
],
"thaumaturgical aptitude": [
"(25-35)% increased spell damage",
"(35-50)% increased critical strike chance for spells"
],
"thaumaturgical protection": [
"5% chance to block spell damage",
"(20-30)% increased defences from equipped shield"
],
"the traitor": [
"balbala",
"flasks gain 4 charges per empty flask slot every 5 seconds"
],
"thoughts and prayers": [
"gain 5% of maximum mana as extra maximum energy shield while you have at least 150 devotion"
],
"thundrous devotion": [
"15% of physical damage converted to lightning damage while you have at least 150 devotion"
],
"transcendence": [
"maxarius",
"armour applies to fire, cold and lightning damage taken from hits instead of physical damage",
"-15% to all maximum elemental resistances"
],
"virtue gem surgery": [
"30% increased effect of shock"
],
"voll's coup": [
"15% increased attack speed"
],
"war games": [
"25% increased global accuracy rating"
],
"with eyes open": [
"+37% to chaos resistance"
],
"zealot": [
"gain arcane surge on hit with spells if you have at least 150 devotion"
]
},
"elegant hubris": {
"_decoder": [
"pooled resources",
"flawless execution",
"brutal execution",
"gleaming legion",
"axiom warden",
"gemling ambush",
"eternal separation",
"rigwald's might",
"crematorium worker",
"gemling inquisition",
"dialla's wit",
"sceptre pinnacle",
"eternal dominance",
"discerning taste",
"bloody flowers' rebellion",
"slum lord",
"eternal exploitation",
"purity rebel",
"lioneye's focus",
"shadowy streets",
"chitus' heart",
"rites of lunaris",
"virtue gem surgery",
"freshly brewed",
"secret tunnels",
"baleful augmentation",
"gemling training",
"rural life",
"city walls",
"street urchin",
"rites of solaris",
"geofri's end",
"eternal fortitude",
"eternal bloodlust",
"with eyes open",
"superiority",
"war games",
"laureate",
"robust diet",
"night of a thousand ribbons",
"eternal fervour",
"voll's coup",
"eternal adaptiveness",
"eternal subjugation",
"eternal resilience"
],
"supreme decadence": [
"cadiro",
"life recovery from flasks also applies to energy shield",
"30% less life recovery from flasks"
],
"supreme grandstanding": [
"victario",
"nearby allies and enemies share charges with you",
"enemies hitting you have 10% chance to gain an endurance, frenzy, or power charge"
],
"supreme ostentation": [
"caspiro",
"ignore attribute requirements",
"gain no inherent bonuses from attributes"
]
},
"glorious vanity": {
"_decoder": [
"might/legacy of vaal",
"revitalising frost",
"revitalising winds",
"commanding presence",
"ritual of might",
"blood-quenched bulwark",
"construct studies",
"ritual of flesh",
"thaumaturgical protection",
"cult of chaos",
"flesh to lightning",
"flesh to flames",
"exquisite pain",
"flesh worship",
"automaton studies",
"soul worship",
"thaumaturgical aptitude",
"ritual of shadows",
"revitalising darkness",
"revitalising flames",
"hierarchy",
"jungle paths",
"ritual of memory",
"ritual of stillness",
"revitalising lightning",
"cult of lightning",
"cult of fire",
"energy flow studies",
"temple paths",
"bloody savagery",
"ritual of immolation",
"flesh to frost",
"cult of ice",
"ancient hex",
"ritual of thunder"
],
"corrupted soul": [
"doryani",
"50% of non-chaos damage taken bypasses energy shield",
"gain 15% of maximum life as extra maximum energy shield"
],
"divine flesh": [
"xibaqua",
"all damage taken bypasses energy shield",
"50% of elemental damage taken as chaos damage",
"+5% to maximum chaos resistance"
],
"immortal ambition": [
"ahuana",
"energy shield starts at zero",
"cannot recharge or regenerate energy shield",
"lose 5% of energy shield per second",
"life leech effects are not removed when unreserved life is filled",
"life leech effects recover energy shield instead while on full life"
]
},
"lethal pride": {
"_decoder": [
"faster ignite damage: 10%",
"attack leech: 0.4%",
"fire resistance: 20%",
"strength: +20",
"burn damage: 20%",
"melee crit chance: 30%",
"physical damage: 20%",
"melee damage: 20%",
"double damage: 5%",
"fortification: +1",
"melee crit multi: 15%",
"e-charge on kill: 5%",
"totem damage: 20%",
"stun duration enemy: 20%",
"reduced dmg from crits: 10%",
"warcry buff effect: 8%",
"phys taken as fire: 5%",
"life regen: 1%",
"strength: 5%",
"armor: 20%",
"enemy stun threshold: -10%",
"phys as extra fire: 5%",
"maximum life: 4%",
"totem placement speed: 12%",
"intimidate on hit: 10%"
],
"chainbreaker": [
"akoya",
"regenerate 3 rage per second",
"increases and reductions to mana regeneration rate instead apply to rage regeneration rate",
"skills cost +3 rage"
],
"strength of blood": [
"kaom",
"life recovery from non-instant leech is not applied",
"2% additional Physical Damage Reduction for every 3% Life Recovery per second from Leech"
],
"tempered by war": [
"rakiata",
"50% of cold and lightning damage taken as fire damage",
"50% less cold resistance",
"50% less lightning resistance"
]
},
"militant faith": {
"_decoder": [
"+5 devotion",
"calming devotion",
"cloistered",
"smite the wicked",
"intolerance of sin",
"enduring faith",
"zealot",
"smite the heretical",
"thoughts and prayers",
"powerful faith",
"frenzied faith",
"thundrous devotion",
"martyr's might",
"heated devotion",
"smite the ignorant"
],
"inner conviction": [
"dominus",
"3% more spell damage per power charge",
"gain power charges instead of frenzy charges"
],
"power of purpose": [
"avarius",
"80% of maximum mana is converted to twice that much armour"
],
"transcendence": [
"maxarius",
"armour applies to fire, cold and lightning damage taken from hits instead of physical damage",
"-15% to all maximum elemental resistances"
]
}
},
"notables": [
"acrimony",
"acuity",
"adamant",
"adder's touch",
"adjacent animosity",
"admonisher",
"aggressive bastion",
"agility",
"alacrity",
"ambidexterity",
"amplify",
"ancestral knowledge",
"annihilation",
"anointed flesh",
"arcane capacitor",
"arcane chemistry",
"arcane expanse",
"arcane focus",
"arcane guarding",
"arcane potency",
"arcane sanctuary",
"arcane will",
"arcanist's dominion",
"arcing blows",
"arsonist",
"art of the gladiator",
"ash frost and storm",
"aspect of stone",
"aspect of the eagle",
"aspect of the lynx",
"assassination",
"assured strike",
"asylum",
"atrophy",
"avatar of the hunt",
"backstabbing",
"ballistics",
"bannerman",
"barbarism",
"bastion breaker",
"battle rouse",
"beef",
"berserking",
"blacksmith's clout",
"blade barrier",
"blade master",
"blade of cunning",
"bladedancer",
"blast radius",
"blast waves",
"blood drinker",
"blood siphon",
"bloodless",
"bloodletting",
"blunt trauma",
"bone breaker",
"born to fight",
"brand equity",
"bravery",
"breath of flames",
"breath of lightning",
"breath of rime",
"brink of death",
"brinkmanship",
"brutal blade",
"burning brutality",
"butchery",
"cannibalistic rite",
"careful conservationist",
"cauterisation",
"champion of the cause",
"charisma",
"circle of life",
"claws of the falcon",
"claws of the hawk",
"claws of the magpie",
"cleansed thoughts",
"cleaving",
"clever construction",
"clever thief",
"cloth and chain",
"coldhearted calculation",
"combat stamina",
"command of steel",
"concussive force",
"conjured barrier",
"constitution",
"coordination",
"corruption",
"counterweight",
"courage",
"crackling speed",
"cruel preparation",
"crusader",
"crystal skin",
"dance of blades",
"dark arts",
"dazzling strikes",
"deadly draw",
"deadly inclinations",
"death attunement",
"decay ward",
"deep breaths",
"deep thoughts",
"deep wisdom",
"defiance",
"defiled forces",
"deflection",
"depth perception",
"dervish",
"destroyer",
"destructive apparatus",
"devastating devices",
"devotion",
"diamond skin",
"dire torment",
"dirty techniques",
"disciple of the forbidden",
"disciple of the slaughter",
"disciple of the unyielding",
"discipline and training",
"discord artisan",
"disemboweling",
"disintegration",
"dismembering",
"divine fervour",
"divine fury",
"divine judgement",
"divine wrath",
"doom cast",
"dreamer",
"druidic rite",
"dynamo",
"eagle eye",
"efficient explosives",
"elder power",
"elemental focus",
"empowered bond",
"endurance",
"enduring bond",
"enigmatic defence",
"enigmatic reach",
"entrench",
"entropy",
"escalation",
"essence extraction",
"essence infusion",
"essence sap",
"essence surge",
"ethereal feast",
"exceptional performance",
"excess sustenance",
"executioner",
"expeditious munitions",
"expert hunter",
"expertise",
"explosive elements",
"explosive impact",
"explosive runes",
"faith and steel",
"fangs of frost",
"fangs of the viper",
"farsight",
"fatal blade",
"fatal toxins",
"fearsome force",
"feller of foes",
"fending",
"fervour",
"field medicine",
"finesse",
"fingers of frost",
"fire walker",
"flash freeze",
"flaying",
"fleetfoot",
"force shaper",
"forceful skewering",
"forces of nature",
"foresight",
"forethought",
"freedom of movement",
"frenetic",
"from the shadows",
"frost walker",
"fury bolts",
"fusillade",
"galvanic hammer",
"glacial cage",
"gladiator's perseverance",
"golem commander",
"golem's blood",
"goliath",
"graceful assault",
"grave intentions",
"gravepact",
"growth and decay",
"hard knocks",
"hardened scars",
"harpooner",
"harrier",
"harvester of foes",
"hatchet master",
"heart and soul",
"heart of darkness",
"heart of flame",
"heart of ice",
"heart of oak",
"heart of the warrior",
"heart of thunder",
"heartseeker",
"hearty",
"heavy draw",
"hematophagy",
"herbalism",
"high explosives",
"high voltage",
"hired killer",
"holy dominion",
"holy fire",
"hunter's gambit",
"indomitable army",
"inexorable",
"influence",
"infused flesh",
"infused",
"insightfulness",
"inspiring bond",
"instability",
"instinct",
"intuition",
"inveterate",
"invigorating blaze",
"ironwood",
"juggernaut",
"kinetic impacts",
"king of the hill",
"last rites",
"lava lash",
"leadership",
"lethality",
"life raker",
"light eater",
"light of divinity",
"lightning walker",
"longshot",
"lord of the dead",
"lust for carnage",
"magmatic strikes",
"malicious intent",
"mana flows",
"mark the prey",
"marked for death",
"martial experience",
"master fletcher",
"master of blades",
"master of the arena",
"master sapper",
"measured fury",
"melding",
"mental rapidity",
"merciless skewering",
"might",
"mind drinker",
"multishot",
"mystic bulwark",
"mystic talents",
"mysticism",
"natural authority",
"natural remedies",
"nightstalker",
"nimbleness",
"one with nature",
"one with the river",
"overcharge",
"overcharged",
"overprepared",
"pain forger",
"panopticon",
"path of the hunter",
"path of the savant",
"path of the warrior",
"perfectionist",
"persistence",
"physique",
"piercing shots",
"poisonous fangs",
"potency of will",
"potent connections",
"powerful bond",
"practical application",
"precision",
"presage",
"primal manifestation",
"primal spirit",
"primeval force",
"prism weave",
"prismatic skin",
"prodigal perfection",
"profane chemistry",
"proficiency",
"prowess",
"purity of flesh",
"quick recovery",
"quickstep",
"rampart",
"ravenous horde",
"razor's edge",
"redemption",
"reflexes",
"relentless pursuit",
"relentless",
"replenishing remedies",
"resourcefulness",
"retaliation",
"retribution",
"revelry",
"revenge of the hunted",
"ribcage crusher",
"righteous army",
"righteous decree",
"righteous fury",
"robust",
"runesmith",
"saboteur",
"sacrifice",
"safeguard",
"sanctity",
"sanctuary",
"sanctum of thought",
"savage wounds",
"savagery",
"searing heat",
"season of ice",
"seasoned swordplay",
"sentinel",
"serpent stance",
"serpentine spellslinger",
"settling ash",
"shaman's dominion",
"shamanistic fury",
"shaper",
"silent steps",
"skittering runes",