-
Notifications
You must be signed in to change notification settings - Fork 1
/
PvpAlerts_Constants.lua
3324 lines (2687 loc) · 77.6 KB
/
PvpAlerts_Constants.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
local PVP = PVP_Alerts_Main_Table
local texturePath = PVP:GetGlobal('PVP_TEXTURES_PATH')
local PVP_NIGHTBLADE_ICON = "esoui/art/icons/class/class_nightblade.dds"
local PVP_TEMPLAR_ICON = "esoui/art/icons/class/class_templar.dds"
local PVP_SORCERER_ICON = "esoui/art/icons/class/class_sorcerer.dds"
local PVP_DRAGONKNIGHT_ICON = "esoui/art/icons/class/class_dragonknight.dds"
local PVP_WARDEN_ICON = "esoui/art/icons/class/class_warden.dds"
local PVP_NECRO_ICON = "esoui/art/icons/class/class_necromancer.dds"
local PVP_ARCANIST_ICON = "esoui/art/icons/class/class_arcanist.dds"
local PVP_NIGHTBLADE_ICON_LARGE = "esoui/art/icons/class/gamepad/gp_class_nightblade.dds"
local PVP_TEMPLAR_ICON_LARGE = "esoui/art/icons/class/gamepad/gp_class_templar.dds"
local PVP_SORCERER_ICON_LARGE = "esoui/art/icons/class/gamepad/gp_class_sorcerer.dds"
local PVP_DRAGONKNIGHT_ICON_LARGE = "esoui/art/icons/class/gamepad/gp_class_dragonknight.dds"
local PVP_WARDEN_ICON_LARGE = "esoui/art/icons/class/gamepad/gp_class_warden.dds"
local PVP_NECRO_ICON_LARGE = "esoui/art/icons/class/gamepad/gp_class_necromancer.dds"
local PVP_ARCANIST_ICON_LARGE = "esoui/art/icons/class/gamepad/gp_class_arcanist.dds"
local PVP_BOW_HA_ICON = texturePath .. "bow_3.dds"
local PVP_DW_HA_ICON = texturePath .. "dw_3.dds"
local PVP_2H_HA_ICON = texturePath .. "2h_3.dds"
local PVP_SB_HA_ICON = texturePath .. "snb_3.dds"
local PVP_FLAME_HA_ICON = texturePath .. "staff_3.dds"
local PVP_FROST_HA_ICON = texturePath .. "staff_3.dds"
local PVP_PINTYPE_MILEGATE = PVP:GetGlobal('PVP_PINTYPE_MILEGATE')
local PVP_PINTYPE_BRIDGE = PVP:GetGlobal('PVP_PINTYPE_BRIDGE')
local FLAGTYPE_OTHER = PVP:GetGlobal('FLAGTYPE_OTHER')
local FLAGTYPE_NAVE = PVP:GetGlobal('FLAGTYPE_NAVE')
local FLAGTYPE_APSE = PVP:GetGlobal('FLAGTYPE_APSE')
local PVP_KEEPTYPE_ARTIFACT_KEEP = PVP:GetGlobal('PVP_KEEPTYPE_ARTIFACT_KEEP')
local PVP_KEEPTYPE_BORDER_KEEP = PVP:GetGlobal('PVP_KEEPTYPE_BORDER_KEEP')
local PVP_ALLIANCE_BASE_IC = PVP:GetGlobal('PVP_ALLIANCE_BASE_IC')
PVP.accountWideDefaults = {
accountWide = true
}
PVP.defaults = {
enabled = true,
unlocked = true,
controlScale = 1.0,
counterControlScale = 1.0,
feedControlScale = 1.0,
namesControlScale = 1.0,
KOSControlScale = 1.0,
campControlScale = 1.0,
targetNameFrameScale = 1.0,
feedTextAlign = TEXT_ALIGN_CENTER,
targetTextAlign = TEXT_ALIGN_CENTER,
playKOSSound = true,
playKillingBlowSound = true,
playNewAttackerSound = true,
playBattleReportSound = true,
playCampSound = true,
playBuffsSound = true,
-- stealthOnly=false,
showAttacks = true,
showImportant = true,
showHeavyAttacks = true,
showSnipes = true,
-- showNumberStealthed=true,
showKOSFrame = true,
showPlayerNotes = true,
showFriends = true,
showGuildMates = true,
showCounterFrame = true,
showCampFrame = true,
showCaptureFrame = true,
showNeighbourCaptureFrame = true,
showKillFeedFrame = true,
showKillFeedChat = true,
showKillFeedInMainChat = false,
userDisplayNameType = "character",
killFeedNameType = "link",
showOnlyOwnKillingBlows = false,
showNamesFrame = true,
showTargetNameFrame = true,
showNewAttackerFrame = true,
showMedalsFrame = true,
show3DIcons = true,
showTug = false,
group3d = false,
groupleader3d = true,
showOnScreen = true,
onScreenReplace = true,
allgroup3d = false,
onlyGroupLeader3d = false,
outputNewKos = true,
groupLeaderIconSize = 9,
groupIconSize = 10,
shadowImage3d = true,
delayedStart = true,
showTargetIcon = true,
targetNameFrameAlpha = 0.9,
newAttackerFrameAlpha = 0.9,
newAttackerFrameScale = 1,
targetNameFrameFadeoutTime = 1500,
newAttackerFrameDelayBeforeFadeout = 1500,
targetNameFrameDelayBeforeFadeout = 250,
-- cameraDistance = 10,
min3DIconsDistance = 0,
max3DIconsDistance = 0.20,
maxResource3DIconsDistance = 0.065,
max3DIconsPOIDistance = 0.075,
max3DCaptureDistance = 0.075,
neighboringDistrictsAlpha = 0.5,
showCompass3d = true,
compass3dHeight = 225,
compass3dSize = 100,
-- compass3dOpacity = 0.5,
compass3dColor = { 0, 0, 0.5, 0.5 },
compass3dColorNorth = { 0.5, 0, 0, 0.5 },
useDepthBufferCompass = true,
pingWaypoint = true,
showNewTargetInfo = true,
showMaxTargetCP = true,
showJoinedPlayers = true,
showPerformance = false,
bgToggle = false,
show6star = true,
offsetX = 0,
offsetY = -100,
counterOffsetX = 400,
counterOffsetY = 400,
tugOffsetX = 0,
tugOffsetY = 0,
feedOffsetX = 0,
feedOffsetY = 550,
campOffsetX = 350,
campOffsetY = 350,
newAttackerOffsetX = 0,
newAttackerOffsetY = 0,
targetOffsetX = 0,
targetOffsetY = 0,
medalsOffsetX = 0,
medalsOffsetY = 350,
captureOffsetX = 200,
captureOffsetY = 200,
namesOffsetX = 350,
namesOffsetY = 350,
KOSOffsetX = -300,
KOSOffsetY = -300,
onScreenOffsetX = 0,
onScreenOffsetY = -300,
onScreenScale = 1,
KOSmode = 4,
showHybridJustification = false,
reportSavedInfo = false,
colors = {
normal = "EEEE00",
stealthed = "AB0100",
piercing = "FFAA00",
},
playersDB = {},
KOSList = {},
}
PVP.accents = {
["à"] = "a",
["á"] = "a",
["â"] = "a",
["ã"] = "a",
["ä"] = "a",
["å"] = "a",
["ą"] = "a",
["ß"] = "b",
["ĥ"] = "h",
["ç"] = "c",
["æ"] = "ae",
["è"] = "e",
["é"] = "e",
["ê"] = "e",
["ë"] = "e",
["ę"] = "e",
["ì"] = "i",
["í"] = "i",
["î"] = "i",
["ï"] = "i",
["ı"] = "i",
["į"] = "i",
["ł"] = "l",
["ñ"] = "n",
["ð"] = "d",
["š"] = "s",
["þ"] = "p",
["ò"] = "o",
["ó"] = "o",
["ô"] = "o",
["õ"] = "o",
["ö"] = "o",
["ō"] = "o",
["ð"] = "o",
["ø"] = "o",
["ǫ"] = "o",
["ẅ"] = "w",
["ş"] = "s",
["š"] = "s",
["ù"] = "u",
["ú"] = "u",
["û"] = "u",
["ü"] = "u",
["ų"] = "u",
["ý"] = "y",
["ÿ"] = "y",
["ŷ"] = "y",
["À"] = "A",
["Á"] = "A",
["Â"] = "A",
["Ã"] = "A",
["Ä"] = "A",
["Å"] = "A",
["Ą"] = "A",
["ẞ"] = "B",
["Ĥ"] = "H",
["Ç"] = "C",
["Æ"] = "Ae",
["È"] = "E",
["É"] = "E",
["Ê"] = "E",
["Ë"] = "E",
["Ę"] = "E",
["Ì"] = "I",
["Í"] = "I",
["Î"] = "I",
["Ï"] = "I",
["Į"] = "I",
["Ł"] = "L",
["Ñ"] = "N",
["Ð"] = "D",
["Š"] = "S",
["Ş"] = "S",
["Þ"] = "P",
["Ò"] = "O",
["Ó"] = "O",
["Ô"] = "O",
["Õ"] = "O",
["Ö"] = "O",
["Ø"] = "O",
["Ǫ"] = "O",
["Ẅ"] = "W",
["Ù"] = "U",
["Ú"] = "U",
["Û"] = "U",
["Ü"] = "U",
["Ų"] = "U",
["Ý"] = "Y",
["Ÿ"] = "Y",
["Ŷ"] = "Y",
}
PVP.classIcons = {
PVP_DRAGONKNIGHT_ICON,
PVP_SORCERER_ICON,
PVP_NIGHTBLADE_ICON,
PVP_WARDEN_ICON,
PVP_NECRO_ICON,
PVP_TEMPLAR_ICON,
[117] = PVP_ARCANIST_ICON,
}
PVP.classIconsLarge = {
PVP_DRAGONKNIGHT_ICON_LARGE,
PVP_SORCERER_ICON_LARGE,
PVP_NIGHTBLADE_ICON_LARGE,
PVP_WARDEN_ICON_LARGE,
PVP_NECRO_ICON_LARGE,
PVP_TEMPLAR_ICON_LARGE,
[117] = PVP_ARCANIST_ICON_LARGE,
}
PVP.mundusColors = {
["Warrior"] = "00FF00",
["Tower"] = "00FF00",
["Serpent"] = "00FF00",
["Atronach"] = "2080FF",
["Mage"] = "2080FF",
["Apprentice"] = "2080FF",
-- ["Apprentice"] = "426CA0",
["Ritual"] = "FF0000",
["Lord"] = "FF0000",
["Lady"] = "FF0000",
["Lover"] = "FF00FF",
["Thief"] = "FF00FF",
["Shadow"] = "FF00FF",
["Steed"] = "999999",
}
PVP.snipeNames = {
["Lethal Arrow"] = true,
["Focused Aim"] = true,
["Snipe"] = true,
["Dark Flare"] = true,
["Solar Flare"] = true,
["Assassin's Will"] = true,
["Assassin's Scourge"] = true,
["Crystal Fragments"] = true,
["Crystal Blast"] = true,
["Crystal Shard"] = true,
["Uppercut"] = true,
["Wrecking Blow"] = true,
["Dizzying Swing"] = true,
["Crushing Swipe"] = true,
["Fatecarver"] = true,
["Exhausting Fatecarver"] = true,
["Pragmatic Fatecarver"] = true,
}
PVP.snipeId = {
[38685] = 1, --Lethal Arrow Active
[40893] = 2, --Lethal Arrow Active
[40895] = 3, --Lethal Arrow Active
[40897] = 4, --Lethal Arrow Active
[38687] = 1, --Focused Aim Active
[40899] = 2, --Focused Aim Active
[40903] = 3, --Focused Aim Active
[40907] = 4, --Focused Aim Active
[28882] = 1, --Snipe Active
[40890] = 2, --Snipe Active
[40891] = 3, --Snipe Active
[40892] = 4, --Snipe Active
[22110] = 1, --Dark Flare Active
[24129] = 2, --Dark Flare Active
[24139] = 3, --Dark Flare Active
[24147] = 4, --Dark Flare Active
[22057] = 1, --Solar Flare Active
[24080] = 2, --Solar Flare Active
[24101] = 3, --Solar Flare Active
[24110] = 4, --Solar Flare Active
[61930] = 1, --Assassin's Will Active
[62132] = 2, --Assassin's Will Active
[62135] = 3, --Assassin's Will Active
[62138] = 4, --Assassin's Will Active
[61932] = 1, --Assassin's Scourge Active
[62126] = 2, --Assassin's Scourge Active
[62128] = 3, --Assassin's Scourge Active
[62130] = 4, --Assassin's Scourge Active
[46324] = 1, --Crystal Fragments Active
[47565] = 2, --Crystal Fragments Active
[47567] = 3, --Crystal Fragments Active
[47569] = 4, --Crystal Fragments Active
[46331] = 1, --Crystal Blast Active
[47554] = 2, --Crystal Blast Active
[47557] = 3, --Crystal Blast Active
[47560] = 4, --Crystal Blast Active
[43714] = 1, --Crystal Shard Active
[47548] = 2, --Crystal Shard Active
[47550] = 3, --Crystal Shard Active
[47552] = 4, --Crystal Shard Active
[28279] = 1, --Uppercut Active
[39962] = 2, --Uppercut Active
[39965] = 3, --Uppercut Active
[39968] = 4, --Uppercut Active
[38807] = 1, --Wrecking Blow Active
[40000] = 2, --Wrecking Blow Active
[40004] = 3, --Wrecking Blow Active
[40008] = 4, --Wrecking Blow Active
[38814] = 1, --Dizzying Swing Active
[39976] = 2, --Dizzying Swing Active
[39980] = 3, --Dizzying Swing Active
[39984] = 4, --Dizzying Swing Active
[89128] = 1, --Crushing Swipe
[89220] = 2, --Crushing Swipe
[185808] = -1, -- Fatecarver
[185805] = 1, -- Fatecarver
[20185805] = 2, -- Fatecarver
[30185805] = 3, -- Fatecarver
[40185805] = 4, -- Fatecarver
[183123] = -1, -- Exhausting Fatecarver
[183122] = 1, -- Exhausting Fatecarver
[20183122] = 2, -- Exhausting Fatecarver
[30183122] = 3, -- Exhausting Fatecarver
[40183122] = 4, -- Exhausting Fatecarver
[186370] = -1, -- Pragmatic Fatecarver
[186366] = 1, -- Pragmatic Fatecarver
[20186366] = 2, -- Pragmatic Fatecarver
[30186366] = 3, -- Pragmatic Fatecarver
[40186366] = 4, -- Pragmatic Fatecarver
}
PVP.ambushId = {
[25493] = 1, --Lotus Fan Active
[35874] = 2, --Lotus Fan Active
[35878] = 3, --Lotus Fan Active
[35882] = 4, --Lotus Fan Active
[25484] = 1, --Ambush Active
[35886] = 2, --Ambush Active
[35892] = 3, --Ambush Active
[35898] = 4, --Ambush Active
[18342] = 1, --Teleport Strike Active
[35864] = 2, --Teleport Strike Active
[35868] = 3, --Teleport Strike Active
[35871] = 4, --Teleport Strike Active
}
PVP.excludedAbilityIds = {
[46858] = true,
[36304] = true,
[43754] = true,
[20542] = true,
[38433] = true,
[46270] = true,
[22469] = true,
[64674] = true,
[5605] = true,
[5044] = true,
[8077] = true,
[5614] = true,
--NEW NEEDS MORE TESTING
[46272] = true,
[31373] = true,
[64303] = true, --drinking mead
[55041] = true, --webdrop
[10298] = true, --boss
[15954] = true, --boss
[31367] = true, --daedric synergy
[68511] = true, --anchor summon
[31115] = true, --anchor summon
[26017] = true, --feast slow
[51941] = true, --cleave stance
[44635] = true, --daedric souls average
[53273] = true, --portal spawn
[4114] = true, --howl
}
PVP.staminaAbilitiesSmall = {
["Dawnbreaker of Smiting"] = true,
}
PVP.magickaAbilitiesSmall = {
["Fossilize"] = true,
["Defensive Rune"] = true,
["Toppling Charge"] = true,
["Concealed Weapon"] = true,
-- ["Petrify"] = true,
}
PVP.staminaAbilities = {
---nightblade
["Incapacitating Strike"] = true,
["Ambush"] = true,
["Killer's Blade"] = true,
["Relentless Focus"] = true,
["Power Extraction"] = true,
["Assassin's Scourge"] = true,
["Surprise Attack"] = true,
---sorcerer-----
["Bound Armaments"] = true,
["Hurricane"] = true,
["Critical Surge"] = true,
----dk-----
["Venomous Claw"] = true,
["Noxious Breath"] = true,
["Corrosive Armor"] = true,
["Take Flight"] = true,
-----templar----
["Biting Jabs"] = true,
["Binding Javelin"] = true,
["Power of the Light"] = true,
["Crescent Sweep"] = true,
-----warden----
["Cutting Dive"] = true,
["Subterranian Assault"] = true,
["Soothing Spores"] = true,
----AVA----
["Resolving Vigor"] = true,
["Echoing Vigor"] = true,
["Vigor"] = true,
["Rearming Trap"] = true,
["Trap Beast"] = true,
["Lightweight Beast Trap"] = true,
["Silver Bolts"] = true,
["Silver Shards"] = true,
["Silver Leash"] = true,
["Flawless Dawnbreaker"] = true,
["Spiked Bone Shield"] = true,
["Pounce"] = true,
["Brutal Pounce"] = true,
["Feral Pounce"] = true,
["Roar"] = true,
["Ferocious Roar"] = true,
["Rousing Roar"] = true,
["Piercing Howl"] = true,
["Howl of Despair"] = true,
["Howl of Agony"] = true,
["Infectious Claws"] = true,
["Claws of Anguish"] = true,
["Claws of Life"] = true,
["Trapping Webs"] = true,
["Shadow Silk"] = true,
["Tangling Webs"] = true,
["Tremorscale"] = true,
["Viper"] = true,
["Heavy Attack (2H)"] = true,
["Heavy Attack (Bow)"] = true,
}
PVP.staminaAbilitiesSmallID = {
[40158] = true, --Dawnbreaker of Smiting
}
PVP.magickaAbilitiesSmallID = {
[32685] = true, --Fossilize
[24574] = true, --Defensive Rune
[15540] = true, --Toppling Charge
[25267] = true, --Concealed Weapon
}
PVP.staminaAbilitiesID = {
[36508] = true, --Incapacitating Strike
[25484] = true, --Ambush
[34843] = true, --Killer's Blade
[61927] = true, --Relentless Focus
[36901] = true, --Power Extraction
[61932] = true, --Assassin's Scourge
[25260] = true, --Surprise Attack
---sorcerer-----
[24165] = true, --Bound Armaments
[23231] = true, --Hurricane
[23678] = true, --Critical Surge
----dk-----
[20668] = true, --Venomous Claw
[20944] = true, --Noxious Breath
[17878] = true, --Corrosive Armor
[32719] = true, --Take Flight
-----templar----
[26792] = true, --Biting Jabs
[26804] = true, --Binding Javelin
[21763] = true, --Power of the Light
[22139] = true, --Crescent Sweep
----AVA----
[61507] = true, --Resolving Vigor
[61505] = true, --Echoing Vigor
[63236] = true, --Vigor
[40382] = true, --Rearming Trap
[35750] = true, --Trap Beast
[40372] = true, --Lightweight Beast Trap
[35721] = true, --Silver Bolts
[40300] = true, --Silver Shards
[40336] = true, --Silver Leash
[40161] = true, --Flawless Dawnbreaker
[35713] = true, --Dawnbreaker
[42138] = true, --Spiked Bone Shield
[32632] = true, --Pounce
[39105] = true, --Brutal Pounce
[39104] = true, --Feral Pounce
[32633] = true, --Roar
[39113] = true, --Ferocious Roar
[39114] = true, --Rousing Roar
[58405] = true, --Piercing Howl
[58742] = true, --Howl of Despair
[58798] = true, --Howl of Agony
[58855] = true, --Infectious Claws
[58864] = true, --Claws of Anguish
[58879] = true, --Claws of Life
["Trapping Webs"] = true,
["Shadow Silk"] = true,
["Tangling Webs"] = true,
["Tremorscale"] = true,
["Viper"] = true,
["Heavy Attack (2H)"] = true,
["Heavy Attack (Bow)"] = true,
}
PVP.selfStamAbilities = {
["Shuffle"] = true,
["Elude"] = true,
["Boon: The Serpent"] = true,
["Boon: The Warrior"] = true,
}
PVP.selfMagAbilities = {
["Channeled Focus"] = true,
["Boon: The Mage"] = true,
["Boon: The Atronach"] = true,
}
PVP.selfBigStamAbilities = {
["Relentless Focus"] = true,
["Bound Armaments"] = true,
["Critical Surge"] = true,
["Rally"] = true,
["Momentum"] = true,
["Hurricane"] = true,
["Hawk Eye"] = true,
["Increase Max Health & Stamina"] = true,
["Increase Max Health & Health"] = true,
["Bull Netch"] = true,
["Green Lotus"] = true,
["Boon: The Serpent"] = true,
["Boon: The Warrior"] = true,
["Boon: The Tower"] = true,
}
PVP.selfBigMagAbilities = {
["Bound Aegis"] = true,
["Hardened Ward"] = true,
["Empowered Ward"] = true,
["Power Surge"] = true,
["Harness Magicka"] = true,
["Dampen Magic"] = true,
["Merciless Resolve"] = true,
["Summon Twilight Tormentor"] = true,
["Summon Twilight Matriarch"] = true,
["Crystal Fragments Proc"] = true,
["Boundless Storm"] = true,
["Flames of Oblivion"] = true,
["Sea of Flames"] = true,
["Inferno"] = true,
["Increase Max Health & Magicka"] = true,
["Witchmother's Potent Brew"] = true,
["Blue Betty"] = true,
["Lotus Blossom"] = true,
["Boon: The Atronach"] = true,
["Boon: The Mage"] = true,
["Boon: The Apprentice"] = true,
}
PVP.magickaAbilities = {
----nightblade----
-- ["Impale"] = true,
["Lotus Fan"] = true,
["Merciless Resolve"] = true,
["Twisting Path"] = true,
["Path of Darkness"] = true,
["Refreshing Path"] = true,
["Funnel Health"] = true,
["Swallow Soul"] = true,
["Strife"] = true,
["Crippling Grasp"] = true,
["Debilitate"] = true,
["Cripple"] = true,
["Sap Essence"] = true,
["Prolonged Suffering"] = true,
["Malefic Wreath"] = true,
["Agony"] = true,
----sorcerer----
["Dark Conversion"] = true,
["Unstable Clannfear"] = true,
["Volatile Familiar"] = true,
["Daedric Curse"] = true,
["Haunting Curse"] = true,
["Daedric Prey"] = true,
["Bound Aegis"] = true,
["Conjured Ward"] = true,
["Hardened Ward"] = true,
["Empowered Ward"] = true,
["Crystal Shard"] = true,
["Crystal Fragments"] = true,
["Crystal Blast"] = true,
["Mage's Wrath"] = true,
["Endless Fury"] = true,
["Mage's Fury"] = true,
["Liquid Lightning"] = true,
["Lightning Flood"] = true,
["Power Surge"] = true,
["Rune Cage"] = true,
["Rune Prison"] = true,
["Boundless Storm"] = true,
-----dk-----
["Engulfing Flames"] = true,
["Lava Whip"] = true,
["Molten Whip"] = true,
["Flame Lash"] = true,
["Cauterize"] = true,
["Burning Talons"] = true,
["Choking Talons"] = true,
["Inhale"] = true,
["Deep Breath"] = true,
["Draw Essence"] = true,
["Ash Cloud"] = true,
["Cinder Storm"] = true,
["Eruption"] = true,
["Ferocious Leap"] = true,
["Burning Embers"] = true,
["Shattering Rocks"] = true,
----templar----
["Puncturing Sweep"] = true,
["Empowering Sweep"] = true,
["Aurora Javelin"] = true,
["Luminous Shards"] = true,
["Spear Shards"] = true,
["Blazing Spear"] = true,
["Explosive Charge"] = true,
["Focused Charge"] = true,
["Sun Fire"] = true,
["Vampire's Bane"] = true,
["Reflective Light"] = true,
["Dark Flare"] = true,
["Solar Barrage"] = true,
["Purifying Light"] = true,
["Blazing Shield"] = true,
["Radiant Ward"] = true,
["Nova"] = true,
["Solar Prison"] = true,
["Solar Disturbance"] = true,
["Radiant Glory"] = true,
["Radiant Oppresion"] = true,
["Rushed Ceremony"] = true,
["Honor the Dead"] = true,
["Breath of Life"] = true,
["Ritual of Rebirth"] = true,
["Lingering Ritual"] = true,
["Healing Ritual"] = true,
["Hasty Prayer"] = true,
["Radiant Aura"] = true,
["Rite of Passage"] = true,
["Remembrance"] = true,
["Practiced Incantation"] = true,
["Eclipse"] = true,
["Total Dark"] = true,
["Unstable Core"] = true,
-- warden
["Screaming Cliff Racer"] = true,
["Deep Fissure"] = true,
["Fetcher Infection"] = true,
["Growing Swarm"] = true,
["Enchanted Growth"] = true,
["Budding Seeds"] = true,
["Winter's Revenge"] = true,
["Northern Storm"] = true,
["Meteor"] = true,
["Shooting Star"] = true,
["Ice Comet"] = true,
["Bat Swarm"] = true,
["Devouring Swarm"] = true,
["Clouding Swarm"] = true,
["Accelerating Drain"] = true,
["Invigorating Drain"] = true,
["Drain Essence"] = true,
["Baleful Mist"] = true,
["Soul Strike"] = true,
["Shatter Soul"] = true,
["Soul Assault"] = true,
["Soul Trap"] = true,
["Soul Spitting Trap"] = true,
["Consuming Trap"] = true,
----AVA----
["Proximity Detonation"] = true,
["Entrophy"] = true,
["Degeneration"] = true,
["Structured Entropy"] = true,
["Inevitable Detonation"] = true,
["Volcanic Rune"] = true,
["Scalding Rune"] = true,
["Necrotic Orb"] = true,
["Mystic Orb"] = true,
["Energy Orb"] = true,
["Heavy Attack (Flame)"] = true,
["Heavy Attack (Frost)"] = true,
["Heavy Attack (Shock)"] = true,
["Heavy Attack (Restoration)"] = true,
}
PVP.staminaSkillLines = {
["Two Handed"] = true,
["One Handed and Shield"] = true,
["Dual Wield"] = true,
["Bow"] = true,
}
PVP.magickaSkillLines = {
["Destruction Staff"] = true,
["Restoration Staff"] = true,
}
PVP.importantAbilities = {
["Meteor"] = true,
["Ice Comet"] = true,
["Shooting Star"] = true,
["Assassin's Will"] = true,
["Assassin's Scourge"] = true,
["Crystal Fragments"] = true,
["Crystal Blast"] = true,
["Crystal Shard"] = true,
["Shock Touch"] = true,
["Shock Reach"] = true,
["Flame Reach"] = true,
["Flame Touch"] = true,
["Aurora Javelin"] = true,
["Piercing Javelin"] = true,
["Binding Javelin"] = true,
["Stonefist"] = true,
["Obsidian Shard"] = true,
["Stone Giant"] = true,
-- ["Unrelenting Grip"] = true,
["The Tide King's Gaze"] = true,
["Rush of Agony"] = true,
["Warden's Knife"] = true,
["Warden's Vault"] = true,
["Warden's Soul"] = true,
["Warden's Burst"] = true,
["Warden's Throw"] = true,
["Warden's Contingency"] = true,
["Warden's Explosion"] = true,
["Warden's Trample"] = true,
["Warden's Torch"] = true,
["Warden's Smash"] = true,
}
PVP.majorImportantAbilitiesNames = {
-- Intended to be used with Scribing Abilities, ignore specific IDs in PVP.abilityIdIgnoreList
["Warden's Knife"] = true,
["Warden's Vault"] = true,
["Warden's Soul"] = true,
["Warden's Burst"] = true,
["Warden's Throw"] = true,
["Warden's Contingency"] = true,
["Warden's Explosion"] = true,
["Warden's Trample"] = true,
["Warden's Torch"] = true,
["Warden's Smash"] = true,
}
PVP.smallImportantAbilitiesNames = {
["Cutting Dive"] = true,
["Screaming Cliff Racer"] = true,
["Dive"] = true,
-- ["Unrelenting Grip"] = true,
}
PVP.importantAbilitiesId = {
[61930] = 1, --Assassin's Will Active
[62132] = 2, --Assassin's Will Active
[62135] = 3, --Assassin's Will Active
[62138] = 4, --Assassin's Will Active
[61932] = 1, --Assassin's Scourge Active
[62126] = 2, --Assassin's Scourge Active
[62128] = 3, --Assassin's Scourge Active
[62130] = 4, --Assassin's Scourge Active
[46324] = 1, --Crystal Fragments Active
[47565] = 2, --Crystal Fragments Active
[47567] = 3, --Crystal Fragments Active
[47569] = 4, --Crystal Fragments Active
[46331] = 1, --Crystal Blast Active
[47554] = 2, --Crystal Blast Active
[47557] = 3, --Crystal Blast Active
[47560] = 4, --Crystal Blast Active
[43714] = 1, --Crystal Shard Active
[47548] = 2, --Crystal Shard Active