forked from aaroncox/d3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskills.json
6516 lines (6516 loc) · 254 KB
/
skills.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
{
'barbarian': {
'bash': {
name: 'Bash',
desc: 'Brutally smash an enemy for 165% weapon damage with a 20% chance to Knockback.',
effect: {
'chance-knockback': 20,
'generate-fury': 8,
'weapon-damage': 165,
},
},
'bash~a': {
name: 'Bash - Onslaught',
desc: 'Brutally smash an enemy for 165% weapon damage with a 20% chance to Knockback.',
rune: 'Add 2 reverberations that cause 25% weapon damage per strike. Removes the chance for Knockback.',
effect: {
'generate-fury': 8,
'weapon-damage': 215,
},
},
'bash~b': {
name: 'Bash - Punish',
desc: 'Brutally smash an enemy for 165% weapon damage with a 20% chance to Knockback.',
rune: 'Increases the damage of your skills by 6% for 5 seconds after using Bash. This effect stacks up to 3 times.',
effect: {
'chance-knockback': 20,
'generate-fury': 8,
'stack': {
'plus-damage': {
'limit': 3,
'value': 8,
},
},
'weapon-damage': 165,
},
},
'bash~c': {
name: 'Bash - Clobber',
desc: 'Brutally smash an enemy for 165% weapon damage with a 20% chance to Knockback.',
rune: 'Instead of Knockback, each hit has a 35% chance to Stun the target for 1.5 seconds.',
effect: {
'generate-fury': 8,
'chance-stun': 70,
'weapon-damage': 165,
},
},
'bash~d': {
name: 'Bash - Instigation',
desc: 'Brutally smash an enemy for 165% weapon damage with a 20% chance to Knockback.',
rune: 'Generate 6 additional Fury per attack.',
effect: {
'chance-knockback': 20,
'generate-fury': 12,
'weapon-damage': 165,
},
},
'bash~e': {
name: 'Bash - Pulverize',
desc: 'Brutally smash an enemy for 165% weapon damage with a 20% chance to Knockback.',
rune: 'Cause a shockwave that inflicts 38% weapon damage to enemies in a 26 yard line behind the targeted enemy.',
effect: {
'chance-knockback': 20,
'generate-fury': 8,
'weapon-damage': 203,
},
},
'hammer-of-the-ancients': {
name: 'Hammer of the Ancients',
desc: 'Call forth a massive hammer to smash enemies directly in front of you for 325% weapon damage. Hammer of the Ancients has a 5% increased Critical Hit Chance.',
effect: {
'cost-fury': 20,
'weapon-damage': 325,
'plus-critical-hit-this': 5,
},
},
'hammer-of-the-ancients~a': {
name: 'Hammer of the Ancients - Smash',
desc: 'Call forth a massive hammer to smash enemies directly in front of you for 325% weapon damage. Hammer of the Ancients has a 5% increased Critical Hit Chance.',
rune: 'Strike a smaller area for 270% weapon damage.',
effect: {
'cost-fury': 20,
'plus-critical-hit-this': 5,
'weapon-damage': 406,
},
},
'hammer-of-the-ancients~b': {
name: 'Hammer of the Ancients - Rolling Thunder',
desc: 'Call forth a massive hammer to smash enemies directly in front of you for 325% weapon damage. Hammer of the Ancients has a 5% increased Critical Hit Chance.',
rune: 'Create a shockwave that deals 155% weapon damage to all enemies within 22 yards in front of you.',
effect: {
'cost-fury': 20,
'plus-critical-hit-this': 5,
'weapon-damage': 275,
},
},
'hammer-of-the-ancients~c': {
name: 'Hammer of the Ancients - The Devil\'s Anvil',
desc: 'Call forth a massive hammer to smash enemies directly in front of you for 325% weapon damage. Hammer of the Ancients has a 5% increased Critical Hit Chance.',
rune: 'Create a tremor at the point of impact for 2 seconds that slows the movement speed of enemies by 60%0.',
effect: {
'cost-fury': 20,
'weapon-damage': 325,
'plus-critical-hit-this': 5,
},
},
'hammer-of-the-ancients~d': {
name: 'Hammer of the Ancients - Birthright',
desc: 'Call forth a massive hammer to smash enemies directly in front of you for 325% weapon damage. Hammer of the Ancients has a 5% increased Critical Hit Chance.',
rune: 'Critical Hits have a 10% chance to cause enemies to drop treasure or health globes.',
effect: {
'cost-fury': 20,
'weapon-damage': 325,
'plus-critical-hit-this': 5,
},
},
'hammer-of-the-ancients~e': {
name: 'Hammer of the Ancients - Thunderstrike',
desc: 'Call forth a massive hammer to smash enemies directly in front of you for 325% weapon damage. Hammer of the Ancients has a 5% increased Critical Hit Chance.',
rune: 'Whenever you kill an enemy with Hammer of the Ancients every other enemy within 10 yards is stunned for 3 seconds.',
effect: {
'cost-fury': 20,
'weapon-damage': 325,
'plus-critical-hit-this': 5,
},
},
'cleave': {
name: 'Cleave',
desc: 'Swing your weapon in a wide arc to deal 140% weapon damage to all enemies caught in the swing.',
effect: {
'generate-fury': 5,
'weapon-damage': 140,
},
},
'cleave~a': {
name: 'Cleave - Broad Sweep',
desc: 'Swing your weapon in a wide arc to deal 140% weapon damage to all enemies caught in the swing.',
rune: 'Increase damage to 175% weapon damage.',
effect: {
'generate-fury': 5,
'weapon-damage': 175,
},
},
'cleave~b': {
name: 'Cleave - Gathering Storm',
desc: 'Swing your weapon in a wide arc to deal 140% weapon damage to all enemies caught in the swing.',
rune: 'Enemies cleaved have their movement speed reduced by 80% for 1 second.',
effect: {
'generate-fury': 5,
'weapon-damage': 140,
},
},
'cleave~c': {
name: 'Cleave - Scattering Blast',
desc: 'Swing your weapon in a wide arc to deal 140% weapon damage to all enemies caught in the swing.',
rune: 'On Critical Hits, knock enemies back 9 yards and inflict 60% weapon damage to enemies where they land.',
effect: {
'generate-fury': 5,
'weapon-damage': 140,
},
},
'cleave~d': {
name: 'Cleave - Reaping Swing',
desc: 'Swing your weapon in a wide arc to deal 140% weapon damage to all enemies caught in the swing.',
rune: 'Generate 3 additional Fury per enemy hit.',
effect: {
'generate-fury': 8,
'weapon-damage': 140,
},
},
'cleave~e': {
name: 'Cleave - Rupture',
desc: 'Swing your weapon in a wide arc to deal 140% weapon damage to all enemies caught in the swing.',
rune: 'Enemies slain by Cleave explode, causing 85% weapon damage to all other enemies within 8 yards.',
effect: {
'generate-fury': 5,
'weapon-damage': 140,
},
},
'ground-stomp': {
name: 'Ground Stomp',
desc: 'Smash the ground, stunning all enemies within 12 yards for 4 seconds.',
effect: {
'generate-fury': 15,
'cooldown': 12,
},
},
'ground-stomp~a': {
name: 'Ground Stomp - Trembling Stomp',
desc: 'Smash the ground, stunning all enemies within 12 yards for 4 seconds.',
rune: 'Enemies in the area also take 76% weapon damage.',
effect: {
'generate-fury': 15,
'cooldown': 12,
'weapon-damage': 76,
},
},
'ground-stomp~b': {
name: 'Ground Stomp - Wrenching Smash',
desc: 'Smash the ground, stunning all enemies within 12 yards for 4 seconds.',
rune: 'Increase the area of effect to 24 yards. Enemies are pulled closer before the strike lands.',
effect: {
'generate-fury': 15,
'cooldown': 12,
},
},
'ground-stomp~c': {
name: 'Ground Stomp - Avalanche',
desc: 'Smash the ground, stunning all enemies within 12 yards for 4 seconds.',
rune: 'Enemies are knocked back 9 yards and inflict 55% weapon damage to enemies in the landing area.',
effect: {
'generate-fury': 15,
'cooldown': 12,
},
},
'ground-stomp~d': {
name: 'Ground Stomp - Foot of the Mountain',
desc: 'Smash the ground, stunning all enemies within 12 yards for 4 seconds.',
rune: 'Increase Fury gained to 30.',
effect: {
'cooldown': 12,
'generate-fury': 30,
},
},
'ground-stomp~e': {
name: 'Ground Stomp - Deafening Crash',
desc: 'Smash the ground, stunning all enemies within 12 yards for 4 seconds.',
rune: 'Enemies in the area have their movement speed slowed by 60% for 3 seconds after they recover from being stunned.',
effect: {
'generate-fury': 15,
'cooldown': 12,
},
},
'rend': {
name: 'Rend',
desc: 'A sweeping strike causes all nearby enemies to Bleed for 700% weapon damage as Physical over 5 seconds.',
effect: {
'cost-fury': 20,
'weapon-damage': 700,
'weapon-damage-for': 5,
},
},
'rend~a': {
name: 'Rend - Lacerate',
desc: 'A sweeping strike causes all nearby enemies to Bleed for 700% weapon damage as Physical over 5 seconds.',
rune: 'Increase damage to 903% weapon damage as Physical over 5 seconds.',
effect: {
'cost-fury': 20,
'weapon-damage': 903,
'weapon-damage-for': 5,
},
},
'rend~b': {
name: 'Rend - Ravage',
desc: 'A sweeping strike causes all nearby enemies to Bleed for 700% weapon damage as Physical over 5 seconds.',
rune: 'Increase the range of Rend to hit all enemies within 17 yards.',
effect: {
'cost-fury': 20,
'weapon-damage': 700,
'weapon-damage-for': 5,
},
},
'rend~c': {
name: 'Rend - Mutilate',
desc: 'A sweeping strike causes all nearby enemies to Bleed for 700% weapon damage as Physical over 5 seconds.',
rune: 'Increase bleeding duration to 7 seconds.',
effect: {
'cost-fury': 20,
'weapon-damage': 700,
'weapon-damage-for': 5,
},
},
'rend~d': {
name: 'Rend - Blood Lust',
desc: 'A sweeping strike causes all nearby enemies to Bleed for 700% weapon damage as Physical over 5 seconds.',
rune: 'Gain 9% of the damage done by Rend as Life.',
effect: {
'cost-fury': 20,
'weapon-damage': 700,
'weapon-damage-for': 5,
'life-steal': 9,
},
},
'rend~e': {
name: 'Rend - Bloodbath',
desc: 'A sweeping strike causes all nearby enemies to Bleed for 700% weapon damage as Physical over 3 seconds.',
rune: 'Enemies killed while bleeding cause all enemies within 10 yards to begin bleeding for 100% weapon damage as Physical over 5 seconds.',
effect: {
'cost-fury': 20,
'weapon-damage': 700,
'weapon-damage-for': 5,
},
},
'leap': {
name: 'Leap',
desc: 'Leap into the air, dealing 85% weapon damage to all enemies within 8 yards of your destination and slowing their movement speed by 60% for 3 seconds.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'weapon-damage': 85,
},
},
'leap~a': {
name: 'Leap - Call of Arreat',
desc: 'Leap into the air, dealing 85% weapon damage to all enemies within 8 yards of your destination and slowing their movement speed by 60% for 3 seconds.',
rune: 'Shockwaves burst forth from the ground increasing the radius of effect to 16 yards and pulling affected enemies towards you.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'weapon-damage': 85,
},
},
'leap~b': {
name: 'Leap - Toppling Impact',
desc: 'Leap into the air, dealing 85% weapon damage to all enemies within 8 yards of your destination and slowing their movement speed by 60% for 3 seconds.',
rune: 'Send enemies hurtling away from where you land.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'weapon-damage': 85,
},
},
'leap~c': {
name: 'Leap - Launch',
desc: 'Leap into the air, dealing 85% weapon damage to all enemies within 8 yards of your destination and slowing their movement speed by 60% for 3 seconds.',
rune: 'Jump into the air with such great force that enemies within 8 yards of the origin of the jump are also slowed by 60% for 3 seconds.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'weapon-damage': 85,
},
},
'leap~d': {
name: 'Leap - Iron Impact',
desc: 'Leap into the air, dealing 85% weapon damage to all enemies within 8 yards of your destination and slowing their movement speed by 60% for 3 seconds.',
rune: 'Gain 300% additional Armor for 4 seconds after landing.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'weapon-damage': 85,
},
},
'leap~e': {
name: 'Leap - Death from Above',
desc: 'Leap into the air, dealing 85% weapon damage to all enemies within 8 yards of your destination and slowing their movement speed by 60% for 3 seconds.',
rune: 'Land with such force that enemies have a 100% chance to be stunned for 3 seconds.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'chance-stun': 100,
'weapon-damage': 85,
},
},
'ancient-spear': {
name: 'Ancient Spear',
desc: 'Throw a spear to pull an enemy back to you, briefly slowing the target\'s movement by 60% and dealing 185% weapon damage.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'weapon-damage': 185,
},
},
'ancient-spear~a': {
name: 'Ancient Spear - Harpoon',
desc: 'Throw a spear to pull an enemy back to you, briefly slowing the target\'s movement by 60% and dealing 185% weapon damage.',
rune: 'Pierce through multiple enemies in a straight line and drag them all back.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'weapon-damage': 185,
},
},
'ancient-spear~b': {
name: 'Ancient Spear - Grappling Hooks',
desc: 'Throw a spear to pull an enemy back to you, briefly slowing the target\'s movement by 60% and dealing 185% weapon damage.',
rune: 'Throw 3 spears. Each spear will pull back the enemy that it hits.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'weapon-damage': 185,
},
},
'ancient-spear~c': {
name: 'Ancient Spear - Dread Spear',
desc: 'Throw a spear to pull an enemy back to you, briefly slowing the target\'s movement by 60% and dealing 185% weapon damage.',
rune: 'Gain Life equal to 60% of the damage inflicted.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'weapon-damage': 185,
'life-steal': 60,
},
},
'ancient-spear~d': {
name: 'Ancient Spear - Skirmish',
desc: 'Throw a spear to pull an enemy back to you, briefly slowing the target\'s movement by 60% and dealing 185% weapon damage.',
rune: 'Increases Fury gained to 30.',
effect: {
'cooldown': 10,
'weapon-damage': 185,
'generate-fury': 30,
},
},
'ancient-spear~e': {
name: 'Ancient Spear - Rage Flip',
desc: 'Throw a spear to pull an enemy back to you, briefly slowing the target\'s movement by 60% and dealing 185% weapon damage.',
rune: 'Enemies hit with Ancient Spear are pulled in the opposite direction and damage is increased to 213% weapon damage.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'weapon-damage': 213,
},
},
'frenzy': {
name: 'Frenzy',
desc: 'Swing for 110% weapon damage. Frenzy attack speed increases by 15% with each swing. This effect can stack up to 5 times for a total bonus of 75% attack speed.',
effect: {
'generate-fury': 3,
'weapon-damage': 110,
'stack': {
'plus-attack-speed-this': {
'limit': 5,
'value': 15,
},
},
},
},
'frenzy~a': {
name: 'Frenzy - Maniac',
desc: 'Swing for 110% weapon damage. Frenzy attack speed increases by 15% with each swing. This effect can stack up to 5 times for a total bonus of 75% attack speed.',
rune: 'Each Frenzy effect also increases your damage by 4%.',
effect: {
'generate-fury': 3,
'weapon-damage': 110,
'stack': {
'plus-damage': {
'limit': 5,
'value': 4,
},
'plus-attack-speed-this': {
'limit': 5,
'value': 15,
},
},
},
},
'frenzy~b': {
name: 'Frenzy - Sidearm',
desc: 'Swing for 110% weapon damage. Frenzy attack speed increases by 15% with each swing. This effect can stack up to 5 times for a total bonus of 75% attack speed.',
rune: 'Each strike has a 25% chance to throw a piercing axe at a nearby enemy that deals 110% weapon damage to all enemies in its path.',
effect: {
'generate-fury': 3,
'stack': {
'plus-attack-speed-this': {
'limit': 5,
'value': 15,
},
},
'weapon-damage': 110,
},
},
'frenzy~c': {
name: 'Frenzy - Vanguard',
desc: 'Swing for 110% weapon damage. Frenzy attack speed increases by 15% with each swing. This effect can stack up to 5 times for a total bonus of 75% attack speed.',
rune: 'While under the effects of Frenzy, you gain 15% increased movement speed.',
effect: {
'generate-fury': 3,
'weapon-damage': 110,
'stack': {
'plus-attack-speed-this': {
'limit': 5,
'value': 15,
},
},
},
},
'frenzy~d': {
name: 'Frenzy - Smite',
desc: 'Swing for 110% weapon damage. Frenzy attack speed increases by 15% with each swing. This effect can stack up to 5 times for a total bonus of 75% attack speed.',
rune: 'Add a 20% chance to call down a bolt of lightning from above, stunning your target for 1.5 seconds.',
effect: {
'generate-fury': 3,
'chance-stun': 20,
'weapon-damage': 110,
'stack': {
'plus-attack-speed-this': {
'limit': 5,
'value': 15,
},
},
},
},
'frenzy~e': {
name: 'Frenzy - Triumph',
desc: 'Swing for 110% weapon damage. Frenzy attack speed increases by 15% with each swing. This effect can stack up to 5 times for a total bonus of 75% attack speed.',
rune: 'Killing an enemy with Frenzy heals you for 8% of your maximum Life over 6 seconds.',
effect: {
'generate-fury': 3,
'weapon-damage': 110,
'stack': {
'plus-attack-speed-this': {
'limit': 5,
'value': 15,
},
},
},
},
'seismic-slam': {
name: 'Seismic Slam',
desc: 'Slam the ground and cause a wave of destruction that deals 240% weapon damage and Knockback to targets in a 45 yard arc.',
effect: {
'cost-fury': 30,
'weapon-damage': 240,
},
},
'seismic-slam~a': {
name: 'Seismic Slam - Shattered Ground',
desc: 'Slam the ground and cause a wave of destruction that deals 240% weapon damage and Knockback to targets in a 45 yard arc.',
rune: 'Increase damage to 288% weapon damage and increases Knockback distance by 100%.',
effect: {
'cost-fury': 30,
'weapon-damage': 288,
},
},
'seismic-slam~b': {
name: 'Seismic Slam - Rumble',
desc: 'Slam the ground and cause a wave of destruction that deals 240% weapon damage and Knockback to targets in a 45 yard arc.',
rune: 'The ground continues to shudder after the intitial strike, damaging enemies in the area for 30% weapon damage.',
effect: {
'cost-fury': 30,
'weapon-damage': 240,
},
},
'seismic-slam~c': {
name: 'Seismic Slam - Stagger',
desc: 'Slam the ground and cause a wave of destruction that deals 240% weapon damage and Knockback to targets in a 45 yard arc.',
rune: 'Add a 70% chance of stunning enemies for 1.5 seconds.',
effect: {
'cost-fury': 30,
'chance-stun': 70,
'weapon-damage': 240,
},
},
'seismic-slam~d': {
name: 'Seismic Slam - Strength from Earth',
desc: 'Slam the ground and cause a wave of destruction that deals 240% weapon damage and Knockback to targets in a 45 yard arc.',
rune: 'Reduce Fury cost to 15 Fury.',
effect: {
'weapon-damage': 240,
'cost-fury': 15,
},
},
'seismic-slam~e': {
name: 'Seismic Slam - Cracking Rift',
desc: 'Slam the ground and cause a wave of destruction that deals 240% weapon damage and Knockback to targets in a 45 yard arc.',
rune: 'Focus the seismic shockwaves along a narrow path to inflict 340% weapon damage to targets along a 42 yard path.',
effect: {
'cost-fury': 30,
'weapon-damage': 340,
},
},
'revenge': {
name: 'Revenge',
desc: 'Revenge has a 15% chance to become active each time you are hit. Inflict 220% weapon damage to all nearby enemies. You heal 5% of your maximum Life for each enemy hit.',
effect: {
'weapon-damage': 220,
},
},
'revenge~a': {
name: 'Revenge - Retribution',
desc: 'Revenge has a 15% chance to become active each time you are hit. Inflict 220% weapon damage to all nearby enemies. You heal 5% of your maximum Life for each enemy hit.',
rune: 'Increase damage to 286% weapon damage.',
effect: {
'weapon-damage': 286,
},
},
'revenge~b': {
name: 'Revenge - Provocation',
desc: 'Revenge has a 15% chance to become active each time you are hit. Inflict 220% weapon damage to all nearby enemies. You heal 5% of your maximum Life for each enemy hit.',
rune: 'Increases the chance Revenge will become active to 30% each time you are hit by an attack.',
effect: {
'weapon-damage': 220,
},
},
'revenge~c': {
name: 'Revenge - Grudge',
desc: 'Revenge has a 15% chance to become active each time you are hit. Inflict 220% weapon damage to all nearby enemies. You heal 5% of your maximum Life for each enemy hit.',
rune: 'Knocks enemies back 24 yards whenever Revenge is used.',
effect: {
'weapon-damage': 220,
},
},
'revenge~d': {
name: 'Revenge - Vengeance Is Mine',
desc: 'Revenge has a 15% chance to become active each time you are hit. Inflict 220% weapon damage to all nearby enemies. You heal 5% of your maximum Life for each enemy hit.',
rune: 'Gain 5 Fury and heal for 8% of your maximum Life for each enemy hit.',
effect: {
'generate-fury': 5,
'weapon-damage': 220,
},
},
'revenge~e': {
name: 'Revenge - Best Served Cold',
desc: 'Revenge has a 15% chance to become active each time you are hit. Inflict 220% weapon damage to all nearby enemies. You heal 5% of your maximum Life for each enemy hit.',
rune: 'After using Revenge, your Critical Hit Chance is increased by 10% for 12 seconds.',
effect: {
'weapon-damage': 220,
'plus-crit-hit': 10,
},
},
'weapon-throw': {
name: 'Weapon Throw',
desc: 'Hurl a throwing weapon at an enemy for 130% weapon damage and Slow the movement of the enemy by 60% for 2 seconds.',
effect: {
'cost-fury': 10,
'weapon-damage': 130,
},
},
'weapon-throw~a': {
name: 'Weapon Throw - Mighty Throw',
desc: 'Hurl a throwing weapon at an enemy for 130% weapon damage and Slow the movement of the enemy by 60% for 2 seconds.',
rune: 'Increase thrown weapon damage to 169% weapon damage.',
effect: {
'cost-fury': 10,
'weapon-damage': 169,
},
},
'weapon-throw~b': {
name: 'Weapon Throw - Ricochet',
desc: 'Hurl a throwing weapon at an enemy for 130% weapon damage and Slow the movement of the enemy by 60% for 2 seconds.',
rune: 'Cause the weapon to ricochet and hit up to 3 targets within 20 yards of each other.',
effect: {
'cost-fury': 10,
'weapon-damage': 130,
},
},
'weapon-throw~c': {
name: 'Weapon Throw - Throwing Hammer',
desc: 'Hurl a throwing weapon at an enemy for 130% weapon damage and Slow the movement of the enemy by 60% for 2 seconds.',
rune: 'Hurl a hammer with a 50% chance to Stun the target for 1.5 seconds.',
effect: {
'cost-fury': 10,
'chance-stun': 50,
'weapon-damage': 130,
},
},
'weapon-throw~d': {
name: 'Weapon Throw - Dread Bomb',
desc: 'Hurl a throwing weapon at an enemy for 130% weapon damage and Slow the movement of the enemy by 60% for 2 seconds.',
rune: 'Expend all remaining Fury to throw a corpse which inflicts an additional 3% weapon damage for each point of Fury expended to all enemies within 12 yards of the target.',
effect: {
'cost-fury': 10,
'weapon-damage': 130,
},
},
'weapon-throw~e': {
name: 'Weapon Throw - Stupefy',
desc: 'Hurl a throwing weapon at an enemy for 130% weapon damage and Slow the movement of the enemy by 60% for 2 seconds.',
rune: 'Aim for the head, gaining a 20% chance of causing your target to be Confused and attack other enemies for 6 seconds.',
effect: {
'cost-fury': 10,
'weapon-damage': 100,
},
},
'sprint': {
name: 'Sprint',
desc: 'Increase movement speed by 40% for 3 seconds.',
effect: {
'cost-fury': 20,
},
},
'sprint~a': {
name: 'Sprint - Marathon',
desc: 'Increase movement speed by 40% for 3 seconds.',
rune: 'Increases the movement speed bonus to 50% for 5 seconds.',
effect: {
'cost-fury': 20,
},
},
'sprint~b': {
name: 'Sprint - Rush',
desc: 'Increase movement speed by 40% for 3 seconds.',
rune: 'Increases Dodge Chance by 12% while sprinting.',
effect: {
'cost-fury': 20,
'plus-dodge': 12,
},
},
'sprint~c': {
name: 'Sprint - Run Like the Wind',
desc: 'Increase movement speed by 40% for 3 seconds.',
rune: 'Tornadoes rage in your wake, each one inflicting 60% weapon damage.',
effect: {
'cost-fury': 20,
'weapon-damage': 60,
'weapon-damage-for': 3,
},
},
'sprint~d': {
name: 'Sprint - Forced March',
desc: 'Increase movement speed by 40% for 3 seconds.',
rune: 'Increase the movement speed of allies within 50 yards by 20% for 3 seconds.',
effect: {
'cost-fury': 20,
},
},
'sprint~e': {
name: 'Sprint - Gangway',
desc: 'Increase movement speed by 40% for 3 seconds.',
rune: 'Slams through enemies, knocking them back and inflicting 25% weapon damage.',
effect: {
'cost-fury': 20,
'weapon-damage': 25,
},
},
'threatening-shout': {
name: 'Threatening Shout',
desc: 'Shout with great ferocity, reducing damage done by enemies within 25 yards by 20% for 15 seconds.',
effect: {
'generate-fury': 15,
'cooldown': 15,
'plus-damage-reduce': 20,
},
},
'threatening-shout~a': {
name: 'Threatening Shout - Demoralize',
desc: 'Shout with great ferocity, reducing damage done by enemies within 25 yards by 20% for 15 seconds.',
rune: 'Affected enemies are also taunted to attack you for 3 seconds.',
effect: {
'generate-fury': 15,
'cooldown': 15,
'plus-damage-reduce': 20,
},
},
'threatening-shout~b': {
name: 'Threatening Shout - Intimidate',
desc: 'Shout with great ferocity, reducing damage done by enemies within 25 yards by 20% for 15 seconds.',
rune: 'Affected enemies also have their movement speed reduced by 30%.',
effect: {
'generate-fury': 15,
'cooldown': 15,
'plus-damage-reduce': 20,
},
},
'threatening-shout~c': {
name: 'Threatening Shout - Grim Harvest',
desc: 'Shout with great ferocity, reducing damage done by enemies within 25 yards by 20% for 15 seconds.',
rune: 'Enemies are badly shaken and have a 15% chance to drop additional treasure.',
effect: {
'generate-fury': 15,
'cooldown': 15,
'plus-damage-reduce': 20,
},
},
'threatening-shout~d': {
name: 'Threatening Shout - Falter',
desc: 'Shout with great ferocity, reducing damage done by enemies within 25 yards by 20% for 15 seconds.',
rune: 'Affected enemies also have their attack speed reduced by 15% for 5 seconds.',
effect: {
'generate-fury': 15,
'cooldown': 15,
'plus-damage-reduce': 20,
},
},
'threatening-shout~e': {
name: 'Threatening Shout - Terrify',
desc: 'Shout with great ferocity, reducing damage done by enemies within 25 yards by 20% for 15 seconds.',
rune: 'Enemies are severely demoralized. Each enemy has a 35% chance to flee for 2.5 seconds.',
effect: {
'generate-fury': 15,
'cooldown': 15,
'plus-damage-reduce': 20,
},
},
'earthquake': {
name: 'Earthquake',
desc: 'Shake the ground violently, dealing 2000% weapon damage as Fire over 8 seconds to all enemies within 18 yards.',
effect: {
'cost-fury': 50,
'cooldown': 120,
'weapon-damage': 2000,
'weapon-damage-for': 8,
},
},
'earthquake~a': {
name: 'Earthquake - Aftershocks',
desc: 'Shake the ground violently, dealing 2000% weapon damage as Fire over 8 seconds to all enemies within 18 yards.',
rune: 'Secondary tremors knock enemies back and inflict 65% weapon damage as Fire.',
effect: {
'cost-fury': 50,
'cooldown': 120,
'weapon-damage': 2000,
'weapon-damage-for': 8,
},
},
'earthquake~b': {
name: 'Earthquake - Giant\'s Stride',
desc: 'Shake the ground violently, dealing 2000% weapon damage as Fire over 8 seconds to all enemies within 18 yards.',
rune: 'Secondary tremors follow your movement and inflict 65% weapon damage as Fire.',
effect: {
'cost-fury': 50,
'cooldown': 120,
'weapon-damage': 2000,
'weapon-damage-for': 8,
},
},
'earthquake~c': {
name: 'Earthquake - Chilling Earth',
desc: 'Shake the ground violently, dealing 2000% weapon damage as Fire over 8 seconds to all enemies within 18 yards.',
rune: 'Creates an icy patch, causing Earthquake\'s damage to turn Cold and Slow the movement of enemies by 80%.',
effect: {
'cost-fury': 50,
'cooldown': 120,
'weapon-damage': 2000,
'weapon-damage-for': 8,
},
},
'earthquake~d': {
name: 'Earthquake - The Mountain\'s Call',
desc: 'Shake the ground violently, dealing 2000% weapon damage as Fire over 8 seconds to all enemies within 18 yards.',
rune: 'Removes the Fury cost and reduces the cooldown to 105 seconds.',
effect: {
'weapon-damage': 2000,
'weapon-damage-for': 8,
'cooldown': 105,
},
},
'earthquake~e': {
name: 'Earthquake - Path of Fire',
desc: 'Shake the ground violently, dealing 2000% weapon damage as Fire over 8 seconds to all enemies within 18 yards.',
rune: 'Project secondary tremors up to 12 yards ahead of you that inflict 65% weapon damage as Fire.',
effect: {
'cost-fury': 50,
'cooldown': 120,
'weapon-damage': 2000,
'weapon-damage-for': 8,
},
},
'whirlwind': {
name: 'Whirlwind',
desc: 'Deliver multiple attacks to everything in your path for 145% weapon damage.',
effect: {
'cost-fury': 16,
'weapon-damage': 145,
},
},
'whirlwind~a': {
name: 'Whirlwind - Volcanic Eruption',
desc: 'Deliver multiple attacks to everything in your path for 145% weapon damage.',
rune: 'Turns Whirlwind into a torrent of magma that inflicts 188% weapon damage as Fire.',
effect: {
'cost-fury': 16,
'weapon-damage': 188,
},
},
'whirlwind~b': {
name: 'Whirlwind - Dust Devils',
desc: 'Deliver multiple attacks to everything in your path for 145% weapon damage.',
rune: 'Generate harsh tornadoes that inflict 40% weapon damage to enemies in their path.',
effect: {
'cost-fury': 16,
'weapon-damage': 145,
},
},
'whirlwind~c': {
name: 'Whirlwind - Hurricane',
desc: 'Deliver multiple attacks to everything in your path for 145% weapon damage.',
rune: 'Allows you to move at your movement speed while using Whirlwind.',
effect: {
'cost-fury': 16,
'weapon-damage': 145,
},
},
'whirlwind~d': {
name: 'Whirlwind - Wind Shear',
desc: 'Deliver multiple attacks to everything in your path for 145% weapon damage.',
rune: 'Gain 1 Fury for every enemy struck.',
effect: {
'cost-fury': 16,
'weapon-damage': 145,
},
},
'whirlwind~e': {
name: 'Whirlwind - Blood Funnel',
desc: 'Deliver multiple attacks to everything in your path for 145% weapon damage.',
rune: 'Critical Hits restore 1% of your maximum Life.',
effect: {
'cost-fury': 16,
'weapon-damage': 145,
},
},
'furious-charge': {
name: 'Furious Charge',
desc: 'Rush forward knocking back enemies and inflicting 195% weapon damage to enemies along the path of the charge.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'weapon-damage': 195,
},
},
'furious-charge~a': {
name: 'Furious Charge - Battering Ram',
desc: 'Rush forward knocking back enemies and inflicting 195% weapon damage to enemies along the path of the charge.',
rune: 'Increase damage at the destination to 283% weapon damage.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'weapon-damage': 283,
},
},
'furious-charge~b': {
name: 'Furious Charge - Dreadnought',
desc: 'Rush forward knocking back enemies and inflicting 195% weapon damage to enemies along the path of the charge.',
rune: 'Regain 8% of your maximum Life for each target hit by Furious Charge.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'weapon-damage': 195,
},
},
'furious-charge~c': {
name: 'Furious Charge - Bull Rush',
desc: 'Rush forward knocking back enemies and inflicting 195% weapon damage to enemies along the path of the charge.',
rune: 'Any targets who are critically hit by Furious Charge will be stunned for 2.5 seconds.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'weapon-damage': 195,
},
},
'furious-charge~d': {
name: 'Furious Charge - Stamina',
desc: 'Rush forward knocking back enemies and inflicting 195% weapon damage to enemies along the path of the charge.',
rune: 'Generate 8 additional Fury for each target hit while charging.',
effect: {
'generate-fury': 23,
'cooldown': 10,
'weapon-damage': 195,
},
},
'furious-charge~e': {
name: 'Furious Charge - Merciless Assault',
desc: 'Rush forward knocking back enemies and inflicting 195% weapon damage to enemies along the path of the charge.',
rune: 'Cooldown is reduced by 2 seconds for every target hit. This effect can reduce the cooldown by up to 10 seconds.',
effect: {
'generate-fury': 15,
'cooldown': 10,
'weapon-damage': 195,
},
},
'ignore-pain': {
name: 'Ignore Pain',
desc: 'Reduces all damage taken by 65% for 5 seconds.',
effect: {
'cooldown': 30,
'plus-damage-reduce': 65,
},
},
'ignore-pain~a': {
name: 'Ignore Pain - Contempt for Weakness',
desc: 'Reduces all damage taken by 65% for 5 seconds.',
rune: 'Reflects 50% of ignored damage back at the enemy.',
effect: {
'cooldown': 30,
'plus-damage-reduce': 65,
},
},
'ignore-pain~b': {
name: 'Ignore Pain - Iron Hide',
desc: 'Reduces all damage taken by 65% for 5 seconds.',
rune: 'Increases duration to 7 seconds.',
effect: {
'cooldown': 30,
'plus-damage-reduce': 65,
},
},
'ignore-pain~c': {
name: 'Ignore Pain - Mob Rule',
desc: 'Reduces all damage taken by 65% for 5 seconds.',
rune: 'Extend the effect to nearby allies, reducing damage taken by 65% for 5 seconds.',
effect: {
'cooldown': 30,
'plus-damage-reduce': 65,
},
},
'ignore-pain~d': {
name: 'Ignore Pain - Bravado',
desc: 'Reduces all damage taken by 65% for 5 seconds.',
rune: 'When activated, Knockback all enemies within 12 yards and deal 50% weapon damage to them.',
effect: {
'cooldown': 30,
'plus-damage-reduce': 65,
'weapon-damage': 50,
},
},
'ignore-pain~e': {
name: 'Ignore Pain - Ignorance is Bliss',
desc: 'Reduces all damage taken by 65% for 5 seconds.',
rune: 'While Ignore Pain is active, gain 20% of all damage dealt as Life.',
effect: {
'cooldown': 30,