forked from PathOfBuildingCommunity/PathOfBuilding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsup_str.lua
4266 lines (4265 loc) · 260 KB
/
sup_str.lua
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
-- This file is automatically generated, do not edit!
-- Path of Building
--
-- Strength support gems
-- Skill data (c) Grinding Gear Games
--
local skills, mod, flag, skill = ...
skills["SupportAddedFireDamage"] = {
name = "Added Fire Damage",
description = "Supports any skill that hits enemies.",
color = 1,
baseEffectiveness = 0,
support = true,
requireSkillTypes = { SkillType.Damage, SkillType.Attack, },
addSkillTypes = { },
excludeSkillTypes = { },
statDescriptionScope = "gem_stat_descriptions",
qualityStats = {
Default = {
{ "fire_damage_+%", 0.5 },
},
Alternate1 = {
{ "fire_damage_+%", -1 },
{ "fire_dot_multiplier_+", 1 },
},
Alternate2 = {
{ "skill_physical_damage_%_to_convert_to_fire", 1 },
},
},
stats = {
"physical_damage_%_to_add_as_fire",
},
levels = {
[1] = { 25, manaMultiplier = 20, levelRequirement = 8, statInterpolation = { 1, }, },
[2] = { 25, manaMultiplier = 20, levelRequirement = 10, statInterpolation = { 1, }, },
[3] = { 26, manaMultiplier = 20, levelRequirement = 13, statInterpolation = { 1, }, },
[4] = { 27, manaMultiplier = 20, levelRequirement = 17, statInterpolation = { 1, }, },
[5] = { 28, manaMultiplier = 20, levelRequirement = 21, statInterpolation = { 1, }, },
[6] = { 28, manaMultiplier = 20, levelRequirement = 25, statInterpolation = { 1, }, },
[7] = { 29, manaMultiplier = 20, levelRequirement = 29, statInterpolation = { 1, }, },
[8] = { 30, manaMultiplier = 20, levelRequirement = 33, statInterpolation = { 1, }, },
[9] = { 31, manaMultiplier = 20, levelRequirement = 37, statInterpolation = { 1, }, },
[10] = { 31, manaMultiplier = 20, levelRequirement = 40, statInterpolation = { 1, }, },
[11] = { 32, manaMultiplier = 20, levelRequirement = 43, statInterpolation = { 1, }, },
[12] = { 33, manaMultiplier = 20, levelRequirement = 46, statInterpolation = { 1, }, },
[13] = { 34, manaMultiplier = 20, levelRequirement = 49, statInterpolation = { 1, }, },
[14] = { 34, manaMultiplier = 20, levelRequirement = 52, statInterpolation = { 1, }, },
[15] = { 35, manaMultiplier = 20, levelRequirement = 55, statInterpolation = { 1, }, },
[16] = { 36, manaMultiplier = 20, levelRequirement = 58, statInterpolation = { 1, }, },
[17] = { 37, manaMultiplier = 20, levelRequirement = 61, statInterpolation = { 1, }, },
[18] = { 37, manaMultiplier = 20, levelRequirement = 64, statInterpolation = { 1, }, },
[19] = { 38, manaMultiplier = 20, levelRequirement = 67, statInterpolation = { 1, }, },
[20] = { 39, manaMultiplier = 20, levelRequirement = 70, statInterpolation = { 1, }, },
[21] = { 40, manaMultiplier = 20, levelRequirement = 72, statInterpolation = { 1, }, },
[22] = { 40, manaMultiplier = 20, levelRequirement = 74, statInterpolation = { 1, }, },
[23] = { 41, manaMultiplier = 20, levelRequirement = 76, statInterpolation = { 1, }, },
[24] = { 42, manaMultiplier = 20, levelRequirement = 78, statInterpolation = { 1, }, },
[25] = { 43, manaMultiplier = 20, levelRequirement = 80, statInterpolation = { 1, }, },
[26] = { 43, manaMultiplier = 20, levelRequirement = 82, statInterpolation = { 1, }, },
[27] = { 44, manaMultiplier = 20, levelRequirement = 84, statInterpolation = { 1, }, },
[28] = { 45, manaMultiplier = 20, levelRequirement = 86, statInterpolation = { 1, }, },
[29] = { 46, manaMultiplier = 20, levelRequirement = 88, statInterpolation = { 1, }, },
[30] = { 46, manaMultiplier = 20, levelRequirement = 90, statInterpolation = { 1, }, },
[31] = { 47, manaMultiplier = 20, levelRequirement = 91, statInterpolation = { 1, }, },
[32] = { 47, manaMultiplier = 20, levelRequirement = 92, statInterpolation = { 1, }, },
[33] = { 47, manaMultiplier = 20, levelRequirement = 93, statInterpolation = { 1, }, },
[34] = { 48, manaMultiplier = 20, levelRequirement = 94, statInterpolation = { 1, }, },
[35] = { 48, manaMultiplier = 20, levelRequirement = 95, statInterpolation = { 1, }, },
[36] = { 49, manaMultiplier = 20, levelRequirement = 96, statInterpolation = { 1, }, },
[37] = { 49, manaMultiplier = 20, levelRequirement = 97, statInterpolation = { 1, }, },
[38] = { 49, manaMultiplier = 20, levelRequirement = 98, statInterpolation = { 1, }, },
[39] = { 50, manaMultiplier = 20, levelRequirement = 99, statInterpolation = { 1, }, },
[40] = { 50, manaMultiplier = 20, levelRequirement = 100, statInterpolation = { 1, }, },
},
}
skills["SupportAddedFireDamagePlus"] = {
name = "Awakened Added Fire Damage",
description = "Supports any skill that hits enemies.",
color = 1,
support = true,
requireSkillTypes = { SkillType.Damage, SkillType.Attack, },
addSkillTypes = { },
excludeSkillTypes = { },
plusVersionOf = "SupportAddedFireDamage",
statDescriptionScope = "gem_stat_descriptions",
qualityStats = {
Default = {
{ "fire_damage_+%", 0.5 },
},
},
stats = {
"physical_damage_%_to_add_as_fire",
"supported_physical_skill_gem_level_+",
},
levels = {
[1] = { 40, 0, manaMultiplier = 20, levelRequirement = 72, statInterpolation = { 1, 1, }, },
[2] = { 41, 0, manaMultiplier = 20, levelRequirement = 74, statInterpolation = { 1, 1, }, },
[3] = { 42, 0, manaMultiplier = 20, levelRequirement = 76, statInterpolation = { 1, 1, }, },
[4] = { 43, 0, manaMultiplier = 20, levelRequirement = 78, statInterpolation = { 1, 1, }, },
[5] = { 44, 1, manaMultiplier = 20, levelRequirement = 80, statInterpolation = { 1, 1, }, },
[6] = { 45, 1, manaMultiplier = 20, levelRequirement = 82, statInterpolation = { 1, 1, }, },
[7] = { 45, 1, manaMultiplier = 20, levelRequirement = 84, statInterpolation = { 1, 1, }, },
[8] = { 46, 1, manaMultiplier = 20, levelRequirement = 86, statInterpolation = { 1, 1, }, },
[9] = { 46, 1, manaMultiplier = 20, levelRequirement = 88, statInterpolation = { 1, 1, }, },
[10] = { 47, 2, manaMultiplier = 20, levelRequirement = 90, statInterpolation = { 1, 1, }, },
[11] = { 47, 2, manaMultiplier = 20, levelRequirement = 91, statInterpolation = { 1, 1, }, },
[12] = { 48, 2, manaMultiplier = 20, levelRequirement = 92, statInterpolation = { 1, 1, }, },
[13] = { 48, 2, manaMultiplier = 20, levelRequirement = 93, statInterpolation = { 1, 1, }, },
[14] = { 49, 2, manaMultiplier = 20, levelRequirement = 94, statInterpolation = { 1, 1, }, },
[15] = { 49, 3, manaMultiplier = 20, levelRequirement = 95, statInterpolation = { 1, 1, }, },
[16] = { 50, 3, manaMultiplier = 20, levelRequirement = 96, statInterpolation = { 1, 1, }, },
[17] = { 50, 3, manaMultiplier = 20, levelRequirement = 97, statInterpolation = { 1, 1, }, },
[18] = { 51, 3, manaMultiplier = 20, levelRequirement = 98, statInterpolation = { 1, 1, }, },
[19] = { 51, 3, manaMultiplier = 20, levelRequirement = 99, statInterpolation = { 1, 1, }, },
[20] = { 52, 4, manaMultiplier = 20, levelRequirement = 100, statInterpolation = { 1, 1, }, },
},
}
skills["SupportSpiritStrike"] = {
name = "Ancestral Call",
description = "Supports melee strike skills, causing them to also strike at extra targets simultaneously. The extra targets must be a minimum distance from the user. If supporting a minion attack skill, the minion's skills will not also strike extra targets. Cannot support Vaal skills or triggered skills.",
color = 1,
support = true,
requireSkillTypes = { SkillType.MeleeSingleTarget, },
addSkillTypes = { },
excludeSkillTypes = { SkillType.InbuiltTrigger, SkillType.Vaal, },
ignoreMinionTypes = true,
statDescriptionScope = "gem_stat_descriptions",
statMap = {
["support_spirit_strike_damage_+%_final"] = {
mod("Damage", "MORE", nil),
},
},
qualityStats = {
Default = {
{ "melee_damage_+%", 0.5 },
},
Alternate1 = {
{ "base_skill_area_of_effect_+%", 0.5 },
},
Alternate2 = {
{ "melee_range_+", 0.2 },
},
},
constantStats = {
{ "melee_attack_number_of_spirit_strikes", 2 },
},
stats = {
"support_spirit_strike_damage_+%_final",
},
levels = {
[1] = { -19, manaMultiplier = 30, levelRequirement = 4, statInterpolation = { 1, }, },
[2] = { -18, manaMultiplier = 30, levelRequirement = 6, statInterpolation = { 1, }, },
[3] = { -17, manaMultiplier = 30, levelRequirement = 9, statInterpolation = { 1, }, },
[4] = { -16, manaMultiplier = 30, levelRequirement = 12, statInterpolation = { 1, }, },
[5] = { -15, manaMultiplier = 30, levelRequirement = 16, statInterpolation = { 1, }, },
[6] = { -14, manaMultiplier = 30, levelRequirement = 20, statInterpolation = { 1, }, },
[7] = { -13, manaMultiplier = 30, levelRequirement = 24, statInterpolation = { 1, }, },
[8] = { -12, manaMultiplier = 30, levelRequirement = 28, statInterpolation = { 1, }, },
[9] = { -11, manaMultiplier = 30, levelRequirement = 32, statInterpolation = { 1, }, },
[10] = { -10, manaMultiplier = 30, levelRequirement = 36, statInterpolation = { 1, }, },
[11] = { -9, manaMultiplier = 30, levelRequirement = 40, statInterpolation = { 1, }, },
[12] = { -8, manaMultiplier = 30, levelRequirement = 44, statInterpolation = { 1, }, },
[13] = { -7, manaMultiplier = 30, levelRequirement = 48, statInterpolation = { 1, }, },
[14] = { -6, manaMultiplier = 30, levelRequirement = 52, statInterpolation = { 1, }, },
[15] = { -5, manaMultiplier = 30, levelRequirement = 55, statInterpolation = { 1, }, },
[16] = { -4, manaMultiplier = 30, levelRequirement = 58, statInterpolation = { 1, }, },
[17] = { -3, manaMultiplier = 30, levelRequirement = 61, statInterpolation = { 1, }, },
[18] = { -2, manaMultiplier = 30, levelRequirement = 64, statInterpolation = { 1, }, },
[19] = { -1, manaMultiplier = 30, levelRequirement = 67, statInterpolation = { 1, }, },
[20] = { 0, manaMultiplier = 30, levelRequirement = 70, statInterpolation = { 1, }, },
[21] = { 1, manaMultiplier = 30, levelRequirement = 72, statInterpolation = { 1, }, },
[22] = { 2, manaMultiplier = 30, levelRequirement = 74, statInterpolation = { 1, }, },
[23] = { 3, manaMultiplier = 30, levelRequirement = 76, statInterpolation = { 1, }, },
[24] = { 4, manaMultiplier = 30, levelRequirement = 78, statInterpolation = { 1, }, },
[25] = { 5, manaMultiplier = 30, levelRequirement = 80, statInterpolation = { 1, }, },
[26] = { 6, manaMultiplier = 30, levelRequirement = 82, statInterpolation = { 1, }, },
[27] = { 7, manaMultiplier = 30, levelRequirement = 84, statInterpolation = { 1, }, },
[28] = { 8, manaMultiplier = 30, levelRequirement = 86, statInterpolation = { 1, }, },
[29] = { 9, manaMultiplier = 30, levelRequirement = 88, statInterpolation = { 1, }, },
[30] = { 10, manaMultiplier = 30, levelRequirement = 90, statInterpolation = { 1, }, },
[31] = { 11, manaMultiplier = 30, levelRequirement = 91, statInterpolation = { 1, }, },
[32] = { 12, manaMultiplier = 30, levelRequirement = 92, statInterpolation = { 1, }, },
[33] = { 13, manaMultiplier = 30, levelRequirement = 93, statInterpolation = { 1, }, },
[34] = { 14, manaMultiplier = 30, levelRequirement = 94, statInterpolation = { 1, }, },
[35] = { 15, manaMultiplier = 30, levelRequirement = 95, statInterpolation = { 1, }, },
[36] = { 16, manaMultiplier = 30, levelRequirement = 96, statInterpolation = { 1, }, },
[37] = { 17, manaMultiplier = 30, levelRequirement = 97, statInterpolation = { 1, }, },
[38] = { 18, manaMultiplier = 30, levelRequirement = 98, statInterpolation = { 1, }, },
[39] = { 19, manaMultiplier = 30, levelRequirement = 99, statInterpolation = { 1, }, },
[40] = { 20, manaMultiplier = 30, levelRequirement = 100, statInterpolation = { 1, }, },
},
}
skills["SupportAncestralCallPlus"] = {
name = "Awakened Ancestral Call",
description = "Supports melee strike skills, causing them to also strike at extra targets simultaneously. The extra targets must be a minimum distance from the user. If supporting a minion attack skill, the minion's skills will not also strike extra targets. Cannot support Vaal skills or triggered skills.",
color = 1,
support = true,
requireSkillTypes = { SkillType.MeleeSingleTarget, },
addSkillTypes = { },
excludeSkillTypes = { SkillType.InbuiltTrigger, SkillType.Vaal, },
ignoreMinionTypes = true,
plusVersionOf = "SupportSpiritStrike",
statDescriptionScope = "gem_stat_descriptions",
statMap = {
["support_spirit_strike_damage_+%_final"] = {
mod("Damage", "MORE", nil),
},
},
qualityStats = {
Default = {
{ "melee_damage_+%", 0.5 },
},
},
constantStats = {
{ "melee_attack_number_of_spirit_strikes", 3 },
},
stats = {
"support_spirit_strike_damage_+%_final",
},
levels = {
[1] = { 1, manaMultiplier = 30, levelRequirement = 72, statInterpolation = { 1, }, },
[2] = { 2, manaMultiplier = 30, levelRequirement = 74, statInterpolation = { 1, }, },
[3] = { 3, manaMultiplier = 30, levelRequirement = 76, statInterpolation = { 1, }, },
[4] = { 4, manaMultiplier = 30, levelRequirement = 78, statInterpolation = { 1, }, },
[5] = { 5, manaMultiplier = 30, levelRequirement = 80, statInterpolation = { 1, }, },
[6] = { 6, manaMultiplier = 30, levelRequirement = 82, statInterpolation = { 1, }, },
[7] = { 6, manaMultiplier = 30, levelRequirement = 84, statInterpolation = { 1, }, },
[8] = { 7, manaMultiplier = 30, levelRequirement = 86, statInterpolation = { 1, }, },
[9] = { 7, manaMultiplier = 30, levelRequirement = 88, statInterpolation = { 1, }, },
[10] = { 8, manaMultiplier = 30, levelRequirement = 90, statInterpolation = { 1, }, },
[11] = { 8, manaMultiplier = 30, levelRequirement = 91, statInterpolation = { 1, }, },
[12] = { 9, manaMultiplier = 30, levelRequirement = 92, statInterpolation = { 1, }, },
[13] = { 9, manaMultiplier = 30, levelRequirement = 93, statInterpolation = { 1, }, },
[14] = { 10, manaMultiplier = 30, levelRequirement = 94, statInterpolation = { 1, }, },
[15] = { 10, manaMultiplier = 30, levelRequirement = 95, statInterpolation = { 1, }, },
[16] = { 11, manaMultiplier = 30, levelRequirement = 96, statInterpolation = { 1, }, },
[17] = { 11, manaMultiplier = 30, levelRequirement = 97, statInterpolation = { 1, }, },
[18] = { 12, manaMultiplier = 30, levelRequirement = 98, statInterpolation = { 1, }, },
[19] = { 12, manaMultiplier = 30, levelRequirement = 99, statInterpolation = { 1, }, },
[20] = { 13, manaMultiplier = 30, levelRequirement = 100, statInterpolation = { 1, }, },
},
}
skills["SupportBehead"] = {
name = "Behead",
description = "Supports strike skills.",
color = 1,
support = true,
requireSkillTypes = { SkillType.MeleeSingleTarget, },
addSkillTypes = { },
excludeSkillTypes = { },
statDescriptionScope = "gem_stat_descriptions",
statMap = {
["support_executioner_damage_vs_enemies_on_low_life_+%_final"] = {
mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "ActorCondition", actor = "enemy", var = "LowLife" })
},
},
qualityStats = {
Default = {
{ "melee_range_+", 0.1 },
},
Alternate1 = {
{ "damage_vs_enemies_on_low_life_+%", 1.5 },
},
Alternate2 = {
{ "support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%", 0.5 },
},
},
constantStats = {
{ "support_executioner_gain_one_rare_monster_mod_on_kill_ms", 20000 },
{ "support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%", 20 },
},
stats = {
"melee_range_+",
"support_executioner_damage_vs_enemies_on_low_life_+%_final",
},
levels = {
[1] = { 2, 30, manaMultiplier = 30, levelRequirement = 38, statInterpolation = { 1, 1, }, },
[2] = { 2, 31, manaMultiplier = 30, levelRequirement = 40, statInterpolation = { 1, 1, }, },
[3] = { 2, 32, manaMultiplier = 30, levelRequirement = 42, statInterpolation = { 1, 1, }, },
[4] = { 2, 33, manaMultiplier = 30, levelRequirement = 44, statInterpolation = { 1, 1, }, },
[5] = { 2, 34, manaMultiplier = 30, levelRequirement = 46, statInterpolation = { 1, 1, }, },
[6] = { 2, 35, manaMultiplier = 30, levelRequirement = 48, statInterpolation = { 1, 1, }, },
[7] = { 2, 36, manaMultiplier = 30, levelRequirement = 50, statInterpolation = { 1, 1, }, },
[8] = { 2, 37, manaMultiplier = 30, levelRequirement = 52, statInterpolation = { 1, 1, }, },
[9] = { 2, 38, manaMultiplier = 30, levelRequirement = 54, statInterpolation = { 1, 1, }, },
[10] = { 2, 39, manaMultiplier = 30, levelRequirement = 56, statInterpolation = { 1, 1, }, },
[11] = { 3, 40, manaMultiplier = 30, levelRequirement = 58, statInterpolation = { 1, 1, }, },
[12] = { 3, 41, manaMultiplier = 30, levelRequirement = 60, statInterpolation = { 1, 1, }, },
[13] = { 3, 42, manaMultiplier = 30, levelRequirement = 62, statInterpolation = { 1, 1, }, },
[14] = { 3, 43, manaMultiplier = 30, levelRequirement = 64, statInterpolation = { 1, 1, }, },
[15] = { 3, 44, manaMultiplier = 30, levelRequirement = 65, statInterpolation = { 1, 1, }, },
[16] = { 3, 45, manaMultiplier = 30, levelRequirement = 66, statInterpolation = { 1, 1, }, },
[17] = { 3, 46, manaMultiplier = 30, levelRequirement = 67, statInterpolation = { 1, 1, }, },
[18] = { 3, 47, manaMultiplier = 30, levelRequirement = 68, statInterpolation = { 1, 1, }, },
[19] = { 3, 48, manaMultiplier = 30, levelRequirement = 69, statInterpolation = { 1, 1, }, },
[20] = { 3, 49, manaMultiplier = 30, levelRequirement = 70, statInterpolation = { 1, 1, }, },
[21] = { 4, 50, manaMultiplier = 30, levelRequirement = 72, statInterpolation = { 1, 1, }, },
[22] = { 4, 51, manaMultiplier = 30, levelRequirement = 74, statInterpolation = { 1, 1, }, },
[23] = { 4, 52, manaMultiplier = 30, levelRequirement = 76, statInterpolation = { 1, 1, }, },
[24] = { 4, 53, manaMultiplier = 30, levelRequirement = 78, statInterpolation = { 1, 1, }, },
[25] = { 4, 54, manaMultiplier = 30, levelRequirement = 80, statInterpolation = { 1, 1, }, },
[26] = { 4, 55, manaMultiplier = 30, levelRequirement = 82, statInterpolation = { 1, 1, }, },
[27] = { 4, 56, manaMultiplier = 30, levelRequirement = 84, statInterpolation = { 1, 1, }, },
[28] = { 4, 57, manaMultiplier = 30, levelRequirement = 86, statInterpolation = { 1, 1, }, },
[29] = { 4, 58, manaMultiplier = 30, levelRequirement = 88, statInterpolation = { 1, 1, }, },
[30] = { 4, 59, manaMultiplier = 30, levelRequirement = 90, statInterpolation = { 1, 1, }, },
[31] = { 4, 59, manaMultiplier = 30, levelRequirement = 91, statInterpolation = { 1, 1, }, },
[32] = { 4, 60, manaMultiplier = 30, levelRequirement = 92, statInterpolation = { 1, 1, }, },
[33] = { 4, 60, manaMultiplier = 30, levelRequirement = 93, statInterpolation = { 1, 1, }, },
[34] = { 4, 61, manaMultiplier = 30, levelRequirement = 94, statInterpolation = { 1, 1, }, },
[35] = { 4, 61, manaMultiplier = 30, levelRequirement = 95, statInterpolation = { 1, 1, }, },
[36] = { 4, 62, manaMultiplier = 30, levelRequirement = 96, statInterpolation = { 1, 1, }, },
[37] = { 4, 62, manaMultiplier = 30, levelRequirement = 97, statInterpolation = { 1, 1, }, },
[38] = { 4, 63, manaMultiplier = 30, levelRequirement = 98, statInterpolation = { 1, 1, }, },
[39] = { 4, 63, manaMultiplier = 30, levelRequirement = 99, statInterpolation = { 1, 1, }, },
[40] = { 4, 64, manaMultiplier = 30, levelRequirement = 100, statInterpolation = { 1, 1, }, },
},
}
skills["SupportBloodMagic"] = {
name = "Arrogance",
description = "Supports any non-blessing skill with a reservation.",
color = 1,
support = true,
requireSkillTypes = { SkillType.HasReservation, },
addSkillTypes = { },
excludeSkillTypes = { SkillType.Blessing, },
statDescriptionScope = "gem_stat_descriptions",
qualityStats = {
Default = {
{ "aura_effect_+%", 0.25 },
},
Alternate1 = {
{ "base_life_reservation_efficiency_+%", 0.2 },
},
Alternate2 = {
{ "damage_+%", 0.5 },
},
},
stats = {
"aura_effect_+%",
"base_skill_reserve_life_instead_of_mana",
},
levels = {
[1] = { 10, manaMultiplier = 120, levelRequirement = 31, statInterpolation = { 1, }, },
[2] = { 10, manaMultiplier = 119, levelRequirement = 34, statInterpolation = { 1, }, },
[3] = { 11, manaMultiplier = 118, levelRequirement = 36, statInterpolation = { 1, }, },
[4] = { 11, manaMultiplier = 117, levelRequirement = 38, statInterpolation = { 1, }, },
[5] = { 12, manaMultiplier = 116, levelRequirement = 40, statInterpolation = { 1, }, },
[6] = { 12, manaMultiplier = 115, levelRequirement = 42, statInterpolation = { 1, }, },
[7] = { 13, manaMultiplier = 114, levelRequirement = 44, statInterpolation = { 1, }, },
[8] = { 13, manaMultiplier = 113, levelRequirement = 46, statInterpolation = { 1, }, },
[9] = { 14, manaMultiplier = 112, levelRequirement = 48, statInterpolation = { 1, }, },
[10] = { 14, manaMultiplier = 111, levelRequirement = 50, statInterpolation = { 1, }, },
[11] = { 15, manaMultiplier = 110, levelRequirement = 52, statInterpolation = { 1, }, },
[12] = { 15, manaMultiplier = 109, levelRequirement = 54, statInterpolation = { 1, }, },
[13] = { 16, manaMultiplier = 108, levelRequirement = 56, statInterpolation = { 1, }, },
[14] = { 16, manaMultiplier = 107, levelRequirement = 58, statInterpolation = { 1, }, },
[15] = { 17, manaMultiplier = 106, levelRequirement = 60, statInterpolation = { 1, }, },
[16] = { 17, manaMultiplier = 105, levelRequirement = 62, statInterpolation = { 1, }, },
[17] = { 18, manaMultiplier = 104, levelRequirement = 64, statInterpolation = { 1, }, },
[18] = { 18, manaMultiplier = 103, levelRequirement = 66, statInterpolation = { 1, }, },
[19] = { 19, manaMultiplier = 102, levelRequirement = 68, statInterpolation = { 1, }, },
[20] = { 19, manaMultiplier = 101, levelRequirement = 70, statInterpolation = { 1, }, },
[21] = { 20, manaMultiplier = 100, levelRequirement = 72, statInterpolation = { 1, }, },
[22] = { 20, manaMultiplier = 99, levelRequirement = 74, statInterpolation = { 1, }, },
[23] = { 21, manaMultiplier = 98, levelRequirement = 76, statInterpolation = { 1, }, },
[24] = { 21, manaMultiplier = 97, levelRequirement = 78, statInterpolation = { 1, }, },
[25] = { 22, manaMultiplier = 96, levelRequirement = 80, statInterpolation = { 1, }, },
[26] = { 22, manaMultiplier = 95, levelRequirement = 82, statInterpolation = { 1, }, },
[27] = { 23, manaMultiplier = 94, levelRequirement = 84, statInterpolation = { 1, }, },
[28] = { 23, manaMultiplier = 93, levelRequirement = 86, statInterpolation = { 1, }, },
[29] = { 24, manaMultiplier = 92, levelRequirement = 88, statInterpolation = { 1, }, },
[30] = { 24, manaMultiplier = 91, levelRequirement = 90, statInterpolation = { 1, }, },
[31] = { 25, manaMultiplier = 91, levelRequirement = 91, statInterpolation = { 1, }, },
[32] = { 25, manaMultiplier = 90, levelRequirement = 92, statInterpolation = { 1, }, },
[33] = { 25, manaMultiplier = 90, levelRequirement = 93, statInterpolation = { 1, }, },
[34] = { 25, manaMultiplier = 89, levelRequirement = 94, statInterpolation = { 1, }, },
[35] = { 26, manaMultiplier = 89, levelRequirement = 95, statInterpolation = { 1, }, },
[36] = { 26, manaMultiplier = 88, levelRequirement = 96, statInterpolation = { 1, }, },
[37] = { 26, manaMultiplier = 88, levelRequirement = 97, statInterpolation = { 1, }, },
[38] = { 26, manaMultiplier = 87, levelRequirement = 98, statInterpolation = { 1, }, },
[39] = { 27, manaMultiplier = 87, levelRequirement = 99, statInterpolation = { 1, }, },
[40] = { 27, manaMultiplier = 86, levelRequirement = 100, statInterpolation = { 1, }, },
},
}
skills["SupportBloodthirst"] = {
name = "Bloodthirst",
description = "Supports attack skills. Cannot support triggered skills, skills which create minions, or skills used by totems, traps or mines.",
color = 1,
baseEffectiveness = 0.11999999731779,
incrementalEffectiveness = 0.028000000864267,
support = true,
requireSkillTypes = { SkillType.Attack, },
addSkillTypes = { },
excludeSkillTypes = { SkillType.SummonsTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Triggered, SkillType.InbuiltTrigger, SkillType.CreatesMinion, },
ignoreMinionTypes = true,
statDescriptionScope = "gem_stat_descriptions",
statMap = {
["support_blood_thirst_damage_+%_final"] = {
mod("Damage", "MORE", nil),
},
["blood_price_gain_%_maximum_life_as_added_physical_damage_with_weapons_while_on_low_life"] = {
mod("PhysicalMin", "BASE", nil, ModFlag.Weapon, 0, { type = "PercentStat", stat = "Life", percent = 1 }, { type = "Condition", var = "LowLife"}),
mod("PhysicalMax", "BASE", nil, ModFlag.Weapon, 0, { type = "PercentStat", stat = "Life", percent = 1 }, { type = "Condition", var = "LowLife"}),
},
},
qualityStats = {
Default = {
{ "damage_+%_when_on_low_life", 1 },
},
Alternate1 = {
{ "accuracy_rating_+%_when_on_low_life", 0.5 },
},
Alternate2 = {
{ "damage_vs_enemies_on_low_life_+%", 1.5 },
},
},
constantStats = {
{ "blood_price_gain_%_maximum_life_as_added_physical_damage_with_weapons_while_on_low_life", 2 },
},
stats = {
"support_blood_thirst_damage_+%_final",
},
levels = {
[1] = { 0, manaMultiplier = 40, levelRequirement = 31, statInterpolation = { 1, }, },
[2] = { 0, manaMultiplier = 40, levelRequirement = 34, statInterpolation = { 1, }, },
[3] = { 1, manaMultiplier = 40, levelRequirement = 36, statInterpolation = { 1, }, },
[4] = { 1, manaMultiplier = 40, levelRequirement = 38, statInterpolation = { 1, }, },
[5] = { 2, manaMultiplier = 40, levelRequirement = 40, statInterpolation = { 1, }, },
[6] = { 2, manaMultiplier = 40, levelRequirement = 42, statInterpolation = { 1, }, },
[7] = { 3, manaMultiplier = 40, levelRequirement = 44, statInterpolation = { 1, }, },
[8] = { 3, manaMultiplier = 40, levelRequirement = 46, statInterpolation = { 1, }, },
[9] = { 4, manaMultiplier = 40, levelRequirement = 48, statInterpolation = { 1, }, },
[10] = { 4, manaMultiplier = 40, levelRequirement = 50, statInterpolation = { 1, }, },
[11] = { 5, manaMultiplier = 40, levelRequirement = 52, statInterpolation = { 1, }, },
[12] = { 5, manaMultiplier = 40, levelRequirement = 54, statInterpolation = { 1, }, },
[13] = { 6, manaMultiplier = 40, levelRequirement = 56, statInterpolation = { 1, }, },
[14] = { 6, manaMultiplier = 40, levelRequirement = 58, statInterpolation = { 1, }, },
[15] = { 7, manaMultiplier = 40, levelRequirement = 60, statInterpolation = { 1, }, },
[16] = { 7, manaMultiplier = 40, levelRequirement = 62, statInterpolation = { 1, }, },
[17] = { 8, manaMultiplier = 40, levelRequirement = 64, statInterpolation = { 1, }, },
[18] = { 8, manaMultiplier = 40, levelRequirement = 66, statInterpolation = { 1, }, },
[19] = { 9, manaMultiplier = 40, levelRequirement = 68, statInterpolation = { 1, }, },
[20] = { 9, manaMultiplier = 40, levelRequirement = 70, statInterpolation = { 1, }, },
[21] = { 10, manaMultiplier = 40, levelRequirement = 72, statInterpolation = { 1, }, },
[22] = { 10, manaMultiplier = 40, levelRequirement = 74, statInterpolation = { 1, }, },
[23] = { 11, manaMultiplier = 40, levelRequirement = 76, statInterpolation = { 1, }, },
[24] = { 11, manaMultiplier = 40, levelRequirement = 78, statInterpolation = { 1, }, },
[25] = { 12, manaMultiplier = 40, levelRequirement = 80, statInterpolation = { 1, }, },
[26] = { 12, manaMultiplier = 40, levelRequirement = 82, statInterpolation = { 1, }, },
[27] = { 13, manaMultiplier = 40, levelRequirement = 84, statInterpolation = { 1, }, },
[28] = { 13, manaMultiplier = 40, levelRequirement = 86, statInterpolation = { 1, }, },
[29] = { 14, manaMultiplier = 40, levelRequirement = 88, statInterpolation = { 1, }, },
[30] = { 14, manaMultiplier = 40, levelRequirement = 90, statInterpolation = { 1, }, },
[31] = { 14, manaMultiplier = 40, levelRequirement = 91, statInterpolation = { 1, }, },
[32] = { 15, manaMultiplier = 40, levelRequirement = 92, statInterpolation = { 1, }, },
[33] = { 15, manaMultiplier = 40, levelRequirement = 93, statInterpolation = { 1, }, },
[34] = { 15, manaMultiplier = 40, levelRequirement = 94, statInterpolation = { 1, }, },
[35] = { 15, manaMultiplier = 40, levelRequirement = 95, statInterpolation = { 1, }, },
[36] = { 16, manaMultiplier = 40, levelRequirement = 96, statInterpolation = { 1, }, },
[37] = { 16, manaMultiplier = 40, levelRequirement = 97, statInterpolation = { 1, }, },
[38] = { 16, manaMultiplier = 40, levelRequirement = 98, statInterpolation = { 1, }, },
[39] = { 16, manaMultiplier = 40, levelRequirement = 99, statInterpolation = { 1, }, },
[40] = { 17, manaMultiplier = 40, levelRequirement = 100, statInterpolation = { 1, }, },
},
}
skills["SupportBloodlust"] = {
name = "Bloodlust",
description = "Supports melee attack skills, causing them to deal more damage against bleeding enemies, but preventing those skills from inflicting bleeding on enemies in any way.",
color = 1,
support = true,
requireSkillTypes = { SkillType.Melee, },
addSkillTypes = { },
excludeSkillTypes = { },
statDescriptionScope = "gem_stat_descriptions",
statMap = {
["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"] = {
mod("PhysicalDamage", "MORE", nil, ModFlag.Melee, 0, { type = "ActorCondition", actor = "enemy", var = "Bleeding" }),
},
},
qualityStats = {
Default = {
{ "melee_damage_vs_bleeding_enemies_+%", 0.5 },
},
Alternate1 = {
{ "crush_for_2_seconds_on_hit_%_chance", 0.5 },
},
Alternate2 = {
{ "refresh_bleeding_duration_on_hit_%_chance", 0.5 },
},
},
stats = {
"support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies",
"cannot_cause_bleeding",
},
levels = {
[1] = { 25, manaMultiplier = 40, levelRequirement = 18, statInterpolation = { 1, }, },
[2] = { 25, manaMultiplier = 40, levelRequirement = 22, statInterpolation = { 1, }, },
[3] = { 26, manaMultiplier = 40, levelRequirement = 26, statInterpolation = { 1, }, },
[4] = { 27, manaMultiplier = 40, levelRequirement = 29, statInterpolation = { 1, }, },
[5] = { 28, manaMultiplier = 40, levelRequirement = 32, statInterpolation = { 1, }, },
[6] = { 28, manaMultiplier = 40, levelRequirement = 35, statInterpolation = { 1, }, },
[7] = { 29, manaMultiplier = 40, levelRequirement = 38, statInterpolation = { 1, }, },
[8] = { 30, manaMultiplier = 40, levelRequirement = 41, statInterpolation = { 1, }, },
[9] = { 31, manaMultiplier = 40, levelRequirement = 44, statInterpolation = { 1, }, },
[10] = { 31, manaMultiplier = 40, levelRequirement = 47, statInterpolation = { 1, }, },
[11] = { 32, manaMultiplier = 40, levelRequirement = 50, statInterpolation = { 1, }, },
[12] = { 33, manaMultiplier = 40, levelRequirement = 53, statInterpolation = { 1, }, },
[13] = { 34, manaMultiplier = 40, levelRequirement = 56, statInterpolation = { 1, }, },
[14] = { 34, manaMultiplier = 40, levelRequirement = 58, statInterpolation = { 1, }, },
[15] = { 35, manaMultiplier = 40, levelRequirement = 60, statInterpolation = { 1, }, },
[16] = { 36, manaMultiplier = 40, levelRequirement = 62, statInterpolation = { 1, }, },
[17] = { 37, manaMultiplier = 40, levelRequirement = 64, statInterpolation = { 1, }, },
[18] = { 37, manaMultiplier = 40, levelRequirement = 66, statInterpolation = { 1, }, },
[19] = { 38, manaMultiplier = 40, levelRequirement = 68, statInterpolation = { 1, }, },
[20] = { 39, manaMultiplier = 40, levelRequirement = 70, statInterpolation = { 1, }, },
[21] = { 40, manaMultiplier = 40, levelRequirement = 72, statInterpolation = { 1, }, },
[22] = { 40, manaMultiplier = 40, levelRequirement = 74, statInterpolation = { 1, }, },
[23] = { 41, manaMultiplier = 40, levelRequirement = 76, statInterpolation = { 1, }, },
[24] = { 42, manaMultiplier = 40, levelRequirement = 78, statInterpolation = { 1, }, },
[25] = { 43, manaMultiplier = 40, levelRequirement = 80, statInterpolation = { 1, }, },
[26] = { 43, manaMultiplier = 40, levelRequirement = 82, statInterpolation = { 1, }, },
[27] = { 44, manaMultiplier = 40, levelRequirement = 84, statInterpolation = { 1, }, },
[28] = { 45, manaMultiplier = 40, levelRequirement = 86, statInterpolation = { 1, }, },
[29] = { 46, manaMultiplier = 40, levelRequirement = 88, statInterpolation = { 1, }, },
[30] = { 46, manaMultiplier = 40, levelRequirement = 90, statInterpolation = { 1, }, },
[31] = { 47, manaMultiplier = 40, levelRequirement = 91, statInterpolation = { 1, }, },
[32] = { 47, manaMultiplier = 40, levelRequirement = 92, statInterpolation = { 1, }, },
[33] = { 47, manaMultiplier = 40, levelRequirement = 93, statInterpolation = { 1, }, },
[34] = { 48, manaMultiplier = 40, levelRequirement = 94, statInterpolation = { 1, }, },
[35] = { 48, manaMultiplier = 40, levelRequirement = 95, statInterpolation = { 1, }, },
[36] = { 49, manaMultiplier = 40, levelRequirement = 96, statInterpolation = { 1, }, },
[37] = { 49, manaMultiplier = 40, levelRequirement = 97, statInterpolation = { 1, }, },
[38] = { 49, manaMultiplier = 40, levelRequirement = 98, statInterpolation = { 1, }, },
[39] = { 50, manaMultiplier = 40, levelRequirement = 99, statInterpolation = { 1, }, },
[40] = { 50, manaMultiplier = 40, levelRequirement = 100, statInterpolation = { 1, }, },
},
}
skills["SupportBrutality"] = {
name = "Brutality",
description = "Supports any skill that deals damage.",
color = 1,
support = true,
requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, },
addSkillTypes = { },
excludeSkillTypes = { },
statDescriptionScope = "gem_stat_descriptions",
statMap = {
["support_brutality_physical_damage_+%_final"] = {
mod("PhysicalDamage", "MORE", nil),
},
},
qualityStats = {
Default = {
{ "physical_damage_+%", 0.5 },
},
Alternate1 = {
{ "bleed_on_hit_with_attacks_%", 0.5 },
},
Alternate2 = {
{ "enemy_phys_reduction_%_penalty_vs_hit", 0.25 },
},
},
stats = {
"support_brutality_physical_damage_+%_final",
"deal_no_elemental_damage",
"base_deal_no_chaos_damage",
},
levels = {
[1] = { 25, manaMultiplier = 40, levelRequirement = 38, statInterpolation = { 1, }, },
[2] = { 25, manaMultiplier = 40, levelRequirement = 40, statInterpolation = { 1, }, },
[3] = { 26, manaMultiplier = 40, levelRequirement = 42, statInterpolation = { 1, }, },
[4] = { 27, manaMultiplier = 40, levelRequirement = 44, statInterpolation = { 1, }, },
[5] = { 28, manaMultiplier = 40, levelRequirement = 46, statInterpolation = { 1, }, },
[6] = { 28, manaMultiplier = 40, levelRequirement = 48, statInterpolation = { 1, }, },
[7] = { 29, manaMultiplier = 40, levelRequirement = 50, statInterpolation = { 1, }, },
[8] = { 30, manaMultiplier = 40, levelRequirement = 52, statInterpolation = { 1, }, },
[9] = { 31, manaMultiplier = 40, levelRequirement = 54, statInterpolation = { 1, }, },
[10] = { 31, manaMultiplier = 40, levelRequirement = 56, statInterpolation = { 1, }, },
[11] = { 32, manaMultiplier = 40, levelRequirement = 58, statInterpolation = { 1, }, },
[12] = { 33, manaMultiplier = 40, levelRequirement = 60, statInterpolation = { 1, }, },
[13] = { 34, manaMultiplier = 40, levelRequirement = 62, statInterpolation = { 1, }, },
[14] = { 34, manaMultiplier = 40, levelRequirement = 64, statInterpolation = { 1, }, },
[15] = { 35, manaMultiplier = 40, levelRequirement = 65, statInterpolation = { 1, }, },
[16] = { 36, manaMultiplier = 40, levelRequirement = 66, statInterpolation = { 1, }, },
[17] = { 37, manaMultiplier = 40, levelRequirement = 67, statInterpolation = { 1, }, },
[18] = { 37, manaMultiplier = 40, levelRequirement = 68, statInterpolation = { 1, }, },
[19] = { 38, manaMultiplier = 40, levelRequirement = 69, statInterpolation = { 1, }, },
[20] = { 39, manaMultiplier = 40, levelRequirement = 70, statInterpolation = { 1, }, },
[21] = { 40, manaMultiplier = 40, levelRequirement = 72, statInterpolation = { 1, }, },
[22] = { 40, manaMultiplier = 40, levelRequirement = 74, statInterpolation = { 1, }, },
[23] = { 41, manaMultiplier = 40, levelRequirement = 76, statInterpolation = { 1, }, },
[24] = { 42, manaMultiplier = 40, levelRequirement = 78, statInterpolation = { 1, }, },
[25] = { 43, manaMultiplier = 40, levelRequirement = 80, statInterpolation = { 1, }, },
[26] = { 43, manaMultiplier = 40, levelRequirement = 82, statInterpolation = { 1, }, },
[27] = { 44, manaMultiplier = 40, levelRequirement = 84, statInterpolation = { 1, }, },
[28] = { 45, manaMultiplier = 40, levelRequirement = 86, statInterpolation = { 1, }, },
[29] = { 46, manaMultiplier = 40, levelRequirement = 88, statInterpolation = { 1, }, },
[30] = { 46, manaMultiplier = 40, levelRequirement = 90, statInterpolation = { 1, }, },
[31] = { 47, manaMultiplier = 40, levelRequirement = 91, statInterpolation = { 1, }, },
[32] = { 47, manaMultiplier = 40, levelRequirement = 92, statInterpolation = { 1, }, },
[33] = { 47, manaMultiplier = 40, levelRequirement = 93, statInterpolation = { 1, }, },
[34] = { 48, manaMultiplier = 40, levelRequirement = 94, statInterpolation = { 1, }, },
[35] = { 48, manaMultiplier = 40, levelRequirement = 95, statInterpolation = { 1, }, },
[36] = { 49, manaMultiplier = 40, levelRequirement = 96, statInterpolation = { 1, }, },
[37] = { 49, manaMultiplier = 40, levelRequirement = 97, statInterpolation = { 1, }, },
[38] = { 49, manaMultiplier = 40, levelRequirement = 98, statInterpolation = { 1, }, },
[39] = { 50, manaMultiplier = 40, levelRequirement = 99, statInterpolation = { 1, }, },
[40] = { 50, manaMultiplier = 40, levelRequirement = 100, statInterpolation = { 1, }, },
},
}
skills["SupportBrutalityPlus"] = {
name = "Awakened Brutality",
description = "Supports any skill that deals damage.",
color = 1,
support = true,
requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, },
addSkillTypes = { },
excludeSkillTypes = { },
plusVersionOf = "SupportBrutality",
statDescriptionScope = "gem_stat_descriptions",
statMap = {
["support_brutality_physical_damage_+%_final"] = {
mod("PhysicalDamage", "MORE", nil),
},
},
qualityStats = {
Default = {
{ "physical_damage_+%", 0.5 },
},
},
stats = {
"support_brutality_physical_damage_+%_final",
"chance_to_crush_on_hit_%",
"deal_no_elemental_damage",
"base_deal_no_chaos_damage",
},
levels = {
[1] = { 40, 0, manaMultiplier = 40, levelRequirement = 72, statInterpolation = { 1, 1, }, },
[2] = { 41, 0, manaMultiplier = 40, levelRequirement = 74, statInterpolation = { 1, 1, }, },
[3] = { 42, 0, manaMultiplier = 40, levelRequirement = 76, statInterpolation = { 1, 1, }, },
[4] = { 43, 0, manaMultiplier = 40, levelRequirement = 78, statInterpolation = { 1, 1, }, },
[5] = { 44, 10, manaMultiplier = 40, levelRequirement = 80, statInterpolation = { 1, 1, }, },
[6] = { 45, 10, manaMultiplier = 40, levelRequirement = 82, statInterpolation = { 1, 1, }, },
[7] = { 45, 10, manaMultiplier = 40, levelRequirement = 84, statInterpolation = { 1, 1, }, },
[8] = { 46, 10, manaMultiplier = 40, levelRequirement = 86, statInterpolation = { 1, 1, }, },
[9] = { 46, 10, manaMultiplier = 40, levelRequirement = 88, statInterpolation = { 1, 1, }, },
[10] = { 47, 10, manaMultiplier = 40, levelRequirement = 90, statInterpolation = { 1, 1, }, },
[11] = { 47, 10, manaMultiplier = 40, levelRequirement = 91, statInterpolation = { 1, 1, }, },
[12] = { 48, 10, manaMultiplier = 40, levelRequirement = 92, statInterpolation = { 1, 1, }, },
[13] = { 48, 10, manaMultiplier = 40, levelRequirement = 93, statInterpolation = { 1, 1, }, },
[14] = { 49, 10, manaMultiplier = 40, levelRequirement = 94, statInterpolation = { 1, 1, }, },
[15] = { 49, 10, manaMultiplier = 40, levelRequirement = 95, statInterpolation = { 1, 1, }, },
[16] = { 50, 10, manaMultiplier = 40, levelRequirement = 96, statInterpolation = { 1, 1, }, },
[17] = { 50, 10, manaMultiplier = 40, levelRequirement = 97, statInterpolation = { 1, 1, }, },
[18] = { 51, 10, manaMultiplier = 40, levelRequirement = 98, statInterpolation = { 1, 1, }, },
[19] = { 51, 10, manaMultiplier = 40, levelRequirement = 99, statInterpolation = { 1, 1, }, },
[20] = { 52, 10, manaMultiplier = 40, levelRequirement = 100, statInterpolation = { 1, 1, }, },
},
}
skills["SupportIncreasedBurningDamage"] = {
name = "Burning Damage",
description = "Supports any skill that hits enemies, or can deal burning damage directly.",
color = 1,
support = true,
requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CausesBurning, },
addSkillTypes = { },
excludeSkillTypes = { },
statDescriptionScope = "gem_stat_descriptions",
statMap = {
["support_burning_damage_+%_final"] = {
mod("FireDamage", "MORE", nil, 0, KeywordFlag.FireDot),
},
},
qualityStats = {
Default = {
{ "burn_damage_+%", 0.5 },
},
Alternate1 = {
{ "ignite_duration_+%", 1 },
},
Alternate2 = {
{ "non_damaging_ailment_effect_+%", 2 },
},
},
stats = {
"support_burning_damage_+%_final",
},
levels = {
[1] = { 20, manaMultiplier = 30, levelRequirement = 31, statInterpolation = { 1, }, },
[2] = { 20, manaMultiplier = 30, levelRequirement = 34, statInterpolation = { 1, }, },
[3] = { 21, manaMultiplier = 30, levelRequirement = 36, statInterpolation = { 1, }, },
[4] = { 22, manaMultiplier = 30, levelRequirement = 38, statInterpolation = { 1, }, },
[5] = { 23, manaMultiplier = 30, levelRequirement = 40, statInterpolation = { 1, }, },
[6] = { 23, manaMultiplier = 30, levelRequirement = 42, statInterpolation = { 1, }, },
[7] = { 24, manaMultiplier = 30, levelRequirement = 44, statInterpolation = { 1, }, },
[8] = { 25, manaMultiplier = 30, levelRequirement = 46, statInterpolation = { 1, }, },
[9] = { 26, manaMultiplier = 30, levelRequirement = 48, statInterpolation = { 1, }, },
[10] = { 26, manaMultiplier = 30, levelRequirement = 50, statInterpolation = { 1, }, },
[11] = { 27, manaMultiplier = 30, levelRequirement = 52, statInterpolation = { 1, }, },
[12] = { 28, manaMultiplier = 30, levelRequirement = 54, statInterpolation = { 1, }, },
[13] = { 29, manaMultiplier = 30, levelRequirement = 56, statInterpolation = { 1, }, },
[14] = { 29, manaMultiplier = 30, levelRequirement = 58, statInterpolation = { 1, }, },
[15] = { 30, manaMultiplier = 30, levelRequirement = 60, statInterpolation = { 1, }, },
[16] = { 31, manaMultiplier = 30, levelRequirement = 62, statInterpolation = { 1, }, },
[17] = { 32, manaMultiplier = 30, levelRequirement = 64, statInterpolation = { 1, }, },
[18] = { 32, manaMultiplier = 30, levelRequirement = 66, statInterpolation = { 1, }, },
[19] = { 33, manaMultiplier = 30, levelRequirement = 68, statInterpolation = { 1, }, },
[20] = { 34, manaMultiplier = 30, levelRequirement = 70, statInterpolation = { 1, }, },
[21] = { 35, manaMultiplier = 30, levelRequirement = 72, statInterpolation = { 1, }, },
[22] = { 35, manaMultiplier = 30, levelRequirement = 74, statInterpolation = { 1, }, },
[23] = { 36, manaMultiplier = 30, levelRequirement = 76, statInterpolation = { 1, }, },
[24] = { 37, manaMultiplier = 30, levelRequirement = 78, statInterpolation = { 1, }, },
[25] = { 38, manaMultiplier = 30, levelRequirement = 80, statInterpolation = { 1, }, },
[26] = { 38, manaMultiplier = 30, levelRequirement = 82, statInterpolation = { 1, }, },
[27] = { 39, manaMultiplier = 30, levelRequirement = 84, statInterpolation = { 1, }, },
[28] = { 40, manaMultiplier = 30, levelRequirement = 86, statInterpolation = { 1, }, },
[29] = { 41, manaMultiplier = 30, levelRequirement = 88, statInterpolation = { 1, }, },
[30] = { 41, manaMultiplier = 30, levelRequirement = 90, statInterpolation = { 1, }, },
[31] = { 42, manaMultiplier = 30, levelRequirement = 91, statInterpolation = { 1, }, },
[32] = { 42, manaMultiplier = 30, levelRequirement = 92, statInterpolation = { 1, }, },
[33] = { 42, manaMultiplier = 30, levelRequirement = 93, statInterpolation = { 1, }, },
[34] = { 43, manaMultiplier = 30, levelRequirement = 94, statInterpolation = { 1, }, },
[35] = { 43, manaMultiplier = 30, levelRequirement = 95, statInterpolation = { 1, }, },
[36] = { 44, manaMultiplier = 30, levelRequirement = 96, statInterpolation = { 1, }, },
[37] = { 44, manaMultiplier = 30, levelRequirement = 97, statInterpolation = { 1, }, },
[38] = { 44, manaMultiplier = 30, levelRequirement = 98, statInterpolation = { 1, }, },
[39] = { 45, manaMultiplier = 30, levelRequirement = 99, statInterpolation = { 1, }, },
[40] = { 45, manaMultiplier = 30, levelRequirement = 100, statInterpolation = { 1, }, },
},
}
skills["SupportBurningDamagePlus"] = {
name = "Awakened Burning Damage",
description = "Supports any skill that hits enemies, or can deal burning damage directly.",
color = 1,
support = true,
requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CausesBurning, },
addSkillTypes = { },
excludeSkillTypes = { },
plusVersionOf = "SupportIncreasedBurningDamage",
statDescriptionScope = "gem_stat_descriptions",
statMap = {
["support_burning_damage_+%_final"] = {
mod("FireDamage", "MORE", nil, 0, KeywordFlag.FireDot),
},
},
qualityStats = {
Default = {
{ "burn_damage_+%", 0.5 },
},
},
stats = {
"support_burning_damage_+%_final",
"supported_fire_skill_gem_level_+",
},
levels = {
[1] = { 35, 0, manaMultiplier = 30, levelRequirement = 72, statInterpolation = { 1, 1, }, },
[2] = { 36, 0, manaMultiplier = 30, levelRequirement = 74, statInterpolation = { 1, 1, }, },
[3] = { 37, 0, manaMultiplier = 30, levelRequirement = 76, statInterpolation = { 1, 1, }, },
[4] = { 38, 0, manaMultiplier = 30, levelRequirement = 78, statInterpolation = { 1, 1, }, },
[5] = { 39, 1, manaMultiplier = 30, levelRequirement = 80, statInterpolation = { 1, 1, }, },
[6] = { 40, 1, manaMultiplier = 30, levelRequirement = 82, statInterpolation = { 1, 1, }, },
[7] = { 40, 1, manaMultiplier = 30, levelRequirement = 84, statInterpolation = { 1, 1, }, },
[8] = { 41, 1, manaMultiplier = 30, levelRequirement = 86, statInterpolation = { 1, 1, }, },
[9] = { 41, 1, manaMultiplier = 30, levelRequirement = 88, statInterpolation = { 1, 1, }, },
[10] = { 42, 1, manaMultiplier = 30, levelRequirement = 90, statInterpolation = { 1, 1, }, },
[11] = { 42, 1, manaMultiplier = 30, levelRequirement = 91, statInterpolation = { 1, 1, }, },
[12] = { 43, 1, manaMultiplier = 30, levelRequirement = 92, statInterpolation = { 1, 1, }, },
[13] = { 43, 1, manaMultiplier = 30, levelRequirement = 93, statInterpolation = { 1, 1, }, },
[14] = { 44, 1, manaMultiplier = 30, levelRequirement = 94, statInterpolation = { 1, 1, }, },
[15] = { 44, 1, manaMultiplier = 30, levelRequirement = 95, statInterpolation = { 1, 1, }, },
[16] = { 45, 1, manaMultiplier = 30, levelRequirement = 96, statInterpolation = { 1, 1, }, },
[17] = { 45, 1, manaMultiplier = 30, levelRequirement = 97, statInterpolation = { 1, 1, }, },
[18] = { 46, 1, manaMultiplier = 30, levelRequirement = 98, statInterpolation = { 1, 1, }, },
[19] = { 46, 1, manaMultiplier = 30, levelRequirement = 99, statInterpolation = { 1, 1, }, },
[20] = { 47, 1, manaMultiplier = 30, levelRequirement = 100, statInterpolation = { 1, 1, }, },
},
}
skills["SupportCastOnMeleeKill"] = {
name = "Cast on Melee Kill",
description = "Must support both a melee attack skill and a spell skill to work. The attack skill will trigger a spell when it kills an enemy. Cannot support totems, traps, or mines. Vaal skills, channelling skills, and skills with a reservation cannot be triggered.",
color = 1,
support = true,
requireSkillTypes = { SkillType.Melee, },
addSkillTypes = { },
excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.HasReservation, },
ignoreMinionTypes = true,
statDescriptionScope = "gem_stat_descriptions",
statMap = {
["support_cast_on_melee_kill_spell_damage_+%_final"] = {
},
},
qualityStats = {
Default = {
{ "attack_damage_+%", 0.5 },
},
Alternate1 = {
{ "attack_damage_+%", 3 },
},
Alternate2 = {
{ "dummy_stat_display_nothing", 0 },
},
},
constantStats = {
{ "cast_linked_spells_on_melee_kill_%", 100 },
},
stats = {
},
levels = {
[1] = { manaMultiplier = 20, levelRequirement = 38, },
[2] = { manaMultiplier = 20, levelRequirement = 40, },
[3] = { manaMultiplier = 20, levelRequirement = 42, },
[4] = { manaMultiplier = 20, levelRequirement = 44, },
[5] = { manaMultiplier = 20, levelRequirement = 46, },
[6] = { manaMultiplier = 20, levelRequirement = 48, },
[7] = { manaMultiplier = 20, levelRequirement = 50, },
[8] = { manaMultiplier = 20, levelRequirement = 52, },
[9] = { manaMultiplier = 20, levelRequirement = 54, },
[10] = { manaMultiplier = 20, levelRequirement = 56, },
[11] = { manaMultiplier = 20, levelRequirement = 58, },
[12] = { manaMultiplier = 20, levelRequirement = 60, },
[13] = { manaMultiplier = 20, levelRequirement = 62, },
[14] = { manaMultiplier = 20, levelRequirement = 64, },
[15] = { manaMultiplier = 20, levelRequirement = 65, },
[16] = { manaMultiplier = 20, levelRequirement = 66, },
[17] = { manaMultiplier = 20, levelRequirement = 67, },
[18] = { manaMultiplier = 20, levelRequirement = 68, },
[19] = { manaMultiplier = 20, levelRequirement = 69, },
[20] = { manaMultiplier = 20, levelRequirement = 70, },
[21] = { manaMultiplier = 20, levelRequirement = 72, },
[22] = { manaMultiplier = 20, levelRequirement = 74, },
[23] = { manaMultiplier = 20, levelRequirement = 76, },
[24] = { manaMultiplier = 20, levelRequirement = 78, },
[25] = { manaMultiplier = 20, levelRequirement = 80, },
[26] = { manaMultiplier = 20, levelRequirement = 82, },
[27] = { manaMultiplier = 20, levelRequirement = 84, },
[28] = { manaMultiplier = 20, levelRequirement = 86, },
[29] = { manaMultiplier = 20, levelRequirement = 88, },
[30] = { manaMultiplier = 20, levelRequirement = 90, },
[31] = { manaMultiplier = 20, levelRequirement = 91, },
[32] = { manaMultiplier = 20, levelRequirement = 92, },
[33] = { manaMultiplier = 20, levelRequirement = 93, },
[34] = { manaMultiplier = 20, levelRequirement = 94, },
[35] = { manaMultiplier = 20, levelRequirement = 95, },
[36] = { manaMultiplier = 20, levelRequirement = 96, },
[37] = { manaMultiplier = 20, levelRequirement = 97, },
[38] = { manaMultiplier = 20, levelRequirement = 98, },
[39] = { manaMultiplier = 20, levelRequirement = 99, },
[40] = { manaMultiplier = 20, levelRequirement = 100, },
},
}
skills["SupportCastOnMeleeKillTriggered"] = {
name = "Cast on Melee Kill",
description = "Must support both a melee attack skill and a spell skill to work. The attack skill will trigger a spell when it kills an enemy. Cannot support totems, traps, or mines. Vaal skills, channelling skills, and skills with a reservation cannot be triggered.",
color = 1,
support = true,
requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, },
addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.HasReservation, SkillType.InbuiltTrigger, },
ignoreMinionTypes = true,
statDescriptionScope = "gem_stat_descriptions",
statMap = {
["support_cast_on_melee_kill_spell_damage_+%_final"] = {
mod("Damage", "MORE", nil, ModFlag.Spell),
},
},
qualityStats = {
Default = {
{ "spell_damage_+%", 0.5 },
},
Alternate1 = {
{ "dummy_stat_display_nothing", 0 },
},
Alternate2 = {
{ "base_cooldown_speed_+%", 1 },
},
},
stats = {
"support_cast_on_melee_kill_spell_damage_+%_final",
"spell_uncastable_if_triggerable",
"triggered_skill_uses_main_hand_or_averaged_attack_time_for_pvp_scaling",
"cast_spell_on_linked_melee_kill",
},
levels = {
[1] = { 20, storedUses = 1, cooldown = 0.15, levelRequirement = 38, manaMultiplier = 20, statInterpolation = { 1, }, },
[2] = { 21, storedUses = 1, cooldown = 0.15, levelRequirement = 40, manaMultiplier = 20, statInterpolation = { 1, }, },
[3] = { 22, storedUses = 1, cooldown = 0.15, levelRequirement = 42, manaMultiplier = 20, statInterpolation = { 1, }, },
[4] = { 23, storedUses = 1, cooldown = 0.15, levelRequirement = 44, manaMultiplier = 20, statInterpolation = { 1, }, },
[5] = { 24, storedUses = 1, cooldown = 0.15, levelRequirement = 46, manaMultiplier = 20, statInterpolation = { 1, }, },
[6] = { 25, storedUses = 1, cooldown = 0.15, levelRequirement = 48, manaMultiplier = 20, statInterpolation = { 1, }, },
[7] = { 26, storedUses = 1, cooldown = 0.15, levelRequirement = 50, manaMultiplier = 20, statInterpolation = { 1, }, },
[8] = { 27, storedUses = 1, cooldown = 0.15, levelRequirement = 52, manaMultiplier = 20, statInterpolation = { 1, }, },
[9] = { 28, storedUses = 1, cooldown = 0.15, levelRequirement = 54, manaMultiplier = 20, statInterpolation = { 1, }, },
[10] = { 29, storedUses = 1, cooldown = 0.15, levelRequirement = 56, manaMultiplier = 20, statInterpolation = { 1, }, },
[11] = { 30, storedUses = 1, cooldown = 0.15, levelRequirement = 58, manaMultiplier = 20, statInterpolation = { 1, }, },
[12] = { 31, storedUses = 1, cooldown = 0.15, levelRequirement = 60, manaMultiplier = 20, statInterpolation = { 1, }, },
[13] = { 32, storedUses = 1, cooldown = 0.15, levelRequirement = 62, manaMultiplier = 20, statInterpolation = { 1, }, },
[14] = { 33, storedUses = 1, cooldown = 0.15, levelRequirement = 64, manaMultiplier = 20, statInterpolation = { 1, }, },
[15] = { 34, storedUses = 1, cooldown = 0.15, levelRequirement = 65, manaMultiplier = 20, statInterpolation = { 1, }, },
[16] = { 35, storedUses = 1, cooldown = 0.15, levelRequirement = 66, manaMultiplier = 20, statInterpolation = { 1, }, },
[17] = { 36, storedUses = 1, cooldown = 0.15, levelRequirement = 67, manaMultiplier = 20, statInterpolation = { 1, }, },
[18] = { 37, storedUses = 1, cooldown = 0.15, levelRequirement = 68, manaMultiplier = 20, statInterpolation = { 1, }, },
[19] = { 38, storedUses = 1, cooldown = 0.15, levelRequirement = 69, manaMultiplier = 20, statInterpolation = { 1, }, },
[20] = { 39, storedUses = 1, cooldown = 0.15, levelRequirement = 70, manaMultiplier = 20, statInterpolation = { 1, }, },
[21] = { 40, storedUses = 1, cooldown = 0.15, levelRequirement = 72, manaMultiplier = 20, statInterpolation = { 1, }, },
[22] = { 41, storedUses = 1, cooldown = 0.15, levelRequirement = 74, manaMultiplier = 20, statInterpolation = { 1, }, },
[23] = { 42, storedUses = 1, cooldown = 0.15, levelRequirement = 76, manaMultiplier = 20, statInterpolation = { 1, }, },
[24] = { 43, storedUses = 1, cooldown = 0.15, levelRequirement = 78, manaMultiplier = 20, statInterpolation = { 1, }, },
[25] = { 44, storedUses = 1, cooldown = 0.15, levelRequirement = 80, manaMultiplier = 20, statInterpolation = { 1, }, },
[26] = { 45, storedUses = 1, cooldown = 0.15, levelRequirement = 82, manaMultiplier = 20, statInterpolation = { 1, }, },
[27] = { 46, storedUses = 1, cooldown = 0.15, levelRequirement = 84, manaMultiplier = 20, statInterpolation = { 1, }, },
[28] = { 47, storedUses = 1, cooldown = 0.15, levelRequirement = 86, manaMultiplier = 20, statInterpolation = { 1, }, },
[29] = { 48, storedUses = 1, cooldown = 0.15, levelRequirement = 88, manaMultiplier = 20, statInterpolation = { 1, }, },
[30] = { 49, storedUses = 1, cooldown = 0.15, levelRequirement = 90, manaMultiplier = 20, statInterpolation = { 1, }, },
[31] = { 49, storedUses = 1, cooldown = 0.15, levelRequirement = 91, manaMultiplier = 20, statInterpolation = { 1, }, },
[32] = { 50, storedUses = 1, cooldown = 0.15, levelRequirement = 92, manaMultiplier = 20, statInterpolation = { 1, }, },
[33] = { 50, storedUses = 1, cooldown = 0.15, levelRequirement = 93, manaMultiplier = 20, statInterpolation = { 1, }, },
[34] = { 51, storedUses = 1, cooldown = 0.15, levelRequirement = 94, manaMultiplier = 20, statInterpolation = { 1, }, },
[35] = { 51, storedUses = 1, cooldown = 0.15, levelRequirement = 95, manaMultiplier = 20, statInterpolation = { 1, }, },
[36] = { 52, storedUses = 1, cooldown = 0.15, levelRequirement = 96, manaMultiplier = 20, statInterpolation = { 1, }, },
[37] = { 52, storedUses = 1, cooldown = 0.15, levelRequirement = 97, manaMultiplier = 20, statInterpolation = { 1, }, },
[38] = { 53, storedUses = 1, cooldown = 0.15, levelRequirement = 98, manaMultiplier = 20, statInterpolation = { 1, }, },
[39] = { 53, storedUses = 1, cooldown = 0.15, levelRequirement = 99, manaMultiplier = 20, statInterpolation = { 1, }, },
[40] = { 54, storedUses = 1, cooldown = 0.15, levelRequirement = 100, manaMultiplier = 20, statInterpolation = { 1, }, },
},
}
skills["SupportCastOnDamageTaken"] = {
name = "Cast when Damage Taken",
description = "Each supported spell skill will track damage you take, and be triggered when the total damage taken reaches a threshold. Cannot support skills used by totems, traps, or mines. Vaal skills, channelling skills, and skills with a reservation cannot be triggered.",
color = 1,
support = true,
requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, },
addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Aura, SkillType.InbuiltTrigger, },
statDescriptionScope = "gem_stat_descriptions",
statMap = {
["cast_on_damage_taken_damage_+%_final"] = {
mod("Damage", "MORE", nil),
},
},
qualityStats = {
Default = {
{ "damage_+%", 0.5 },
},
Alternate1 = {
{ "skill_effect_duration_+%", 1 },
},
Alternate2 = {
{ "cast_when_damage_taken_trigger_threshold_+%", -1 },
},
},
constantStats = {
{ "cast_on_damage_taken_%", 100 },
},
stats = {
"cast_on_damage_taken_threshold",
"cast_on_damage_taken_damage_+%_final",
"local_support_gem_max_skill_level_requirement_to_support",
"spell_uncastable_if_triggerable",
"base_skill_show_average_damage_instead_of_dps",
},
levels = {
[1] = { 528, -65, 38, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 38, statInterpolation = { 1, 1, 1, }, },
[2] = { 583, -63, 40, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 40, statInterpolation = { 1, 1, 1, }, },
[3] = { 661, -61, 42, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 42, statInterpolation = { 1, 1, 1, }, },
[4] = { 725, -59, 44, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 44, statInterpolation = { 1, 1, 1, }, },
[5] = { 812, -57, 46, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 46, statInterpolation = { 1, 1, 1, }, },
[6] = { 897, -55, 48, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 48, statInterpolation = { 1, 1, 1, }, },
[7] = { 1003, -53, 50, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 50, statInterpolation = { 1, 1, 1, }, },
[8] = { 1107, -51, 52, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 52, statInterpolation = { 1, 1, 1, }, },
[9] = { 1221, -49, 54, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 54, statInterpolation = { 1, 1, 1, }, },
[10] = { 1354, -47, 56, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 56, statInterpolation = { 1, 1, 1, }, },
[11] = { 1485, -45, 58, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 58, statInterpolation = { 1, 1, 1, }, },
[12] = { 1635, -43, 60, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 60, statInterpolation = { 1, 1, 1, }, },
[13] = { 1804, -41, 62, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 62, statInterpolation = { 1, 1, 1, }, },
[14] = { 1980, -39, 64, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 64, statInterpolation = { 1, 1, 1, }, },
[15] = { 2184, -37, 65, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 65, statInterpolation = { 1, 1, 1, }, },
[16] = { 2394, -35, 66, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 66, statInterpolation = { 1, 1, 1, }, },
[17] = { 2621, -33, 67, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 67, statInterpolation = { 1, 1, 1, }, },
[18] = { 2874, -31, 68, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 68, statInterpolation = { 1, 1, 1, }, },
[19] = { 3142, -29, 69, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 69, statInterpolation = { 1, 1, 1, }, },
[20] = { 3272, -27, 70, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 70, statInterpolation = { 1, 1, 1, }, },
[21] = { 3580, -25, 72, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, },
[22] = { 3950, -23, 74, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, },
[23] = { 4350, -21, 76, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, },
[24] = { 4780, -19, 78, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, },
[25] = { 5240, -17, 80, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, },
[26] = { 5730, -15, 82, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, },
[27] = { 6250, -13, 84, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, },
[28] = { 6800, -11, 86, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, },
[29] = { 7380, -9, 88, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, },
[30] = { 7990, -7, 90, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, },
[31] = { 8310, -6, 91, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, },
[32] = { 8630, -5, 92, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, },
[33] = { 8965, -4, 93, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, },
[34] = { 9300, -3, 94, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, },
[35] = { 9650, -2, 95, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, },
[36] = { 10000, -1, 96, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, },
[37] = { 10365, 0, 97, PvPDamageMultiplier = -80, cooldown = 0.25, storedUses = 1, manaMultiplier = 150, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, },