-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValuateUI.lua
More file actions
7318 lines (6452 loc) · 315 KB
/
ValuateUI.lua
File metadata and controls
7318 lines (6452 loc) · 315 KB
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
-- ValuateUI.lua
-- UI Window for Valuate stat weight calculator
-- Ensure Valuate namespace exists (defensive check)
if not Valuate then
Valuate = {}
end
-- ========================================
-- UI Constants
-- ========================================
-- Window dimensions
-- Standardized spacing
local PADDING = 12 -- Outer padding from window edges
local ELEMENT_SPACING = 8 -- Between major UI sections
local INNER_SPACING = 4 -- Within elements
local COLUMN_GAP = 6 -- Gap between stat columns
-- Component sizing
local BUTTON_HEIGHT = 24
local ENTRY_HEIGHT = 24
local SCROLLBAR_WIDTH = 20 -- Width reserved for scrollbars (18px bar + 2px gap)
-- Stat editor sizing (5-column layout)
local NUM_COLUMNS = 5 -- Number of stat columns
local COLUMN_WIDTH = 160 -- Each stat column width
local ROW_HEIGHT = 16 -- Stat row height
local ROW_SPACING = 1 -- Spacing between stat rows
local HEADER_HEIGHT = 14 -- Category header height
local HEADER_SPACING = 6 -- Spacing above headers
-- Scale list sizing
local SCALE_LIST_WIDTH = 200 -- Left panel width for scale list
-- Dynamic window sizing based on layout requirements
-- Window width calculation: Content padding + Scale list + Gap + Editor content (columns + gaps) + Content padding
local EDITOR_CONTENT_WIDTH = NUM_COLUMNS * COLUMN_WIDTH + (NUM_COLUMNS - 1) * COLUMN_GAP
local WINDOW_WIDTH = PADDING + SCALE_LIST_WIDTH + PADDING + EDITOR_CONTENT_WIDTH + PADDING
-- Result: 12 + 200 + 12 + (5*160 + 4*6) + 12 = 12 + 200 + 12 + 824 + 12 = 1060
local MIN_WINDOW_HEIGHT = 600
local MAX_WINDOW_HEIGHT = 900
-- ========================================
-- Color Palette (Modern, clean look)
-- ========================================
local COLORS = {
-- Backgrounds
windowBg = { 0.06, 0.06, 0.06, 0.98 },
panelBg = { 0.04, 0.04, 0.04, 0.95 },
inputBg = { 0.08, 0.08, 0.08, 0.95 },
buttonBg = { 0.15, 0.15, 0.15, 1 },
buttonHover = { 0.22, 0.22, 0.22, 1 },
buttonPressed = { 0.1, 0.1, 0.1, 1 },
-- Borders
border = { 0.35, 0.35, 0.35, 1 },
borderLight = { 0.45, 0.45, 0.45, 1 },
borderDark = { 0.25, 0.25, 0.25, 1 },
-- Text
textTitle = { 0.9, 0.9, 0.9, 1 },
textHeader = { 0.75, 0.75, 0.75, 1 },
textBody = { 0.85, 0.85, 0.85, 1 },
textDim = { 0.5, 0.5, 0.5, 1 },
textAccent = { 0.4, 0.7, 0.9, 1 }, -- Soft blue accent
-- States
selected = { 0.25, 0.45, 0.65, 1 },
selectedBorder = { 0.4, 0.6, 0.8, 1 },
disabled = { 0.3, 0.3, 0.3, 0.6 },
}
-- Standardized Border Styles
local BORDER_TOOLTIP = "Interface\\Tooltips\\UI-Tooltip-Border" -- Clean, minimal border
local BORDER_EDGE_SIZE = 12
-- Backdrop presets for consistent styling
local BACKDROP_WINDOW = {
bgFile = "Interface\\Buttons\\WHITE8X8",
edgeFile = BORDER_TOOLTIP,
edgeSize = 16,
tile = false,
insets = { left = 4, right = 4, top = 4, bottom = 4 }
}
local BACKDROP_PANEL = {
bgFile = "Interface\\Buttons\\WHITE8X8",
edgeFile = BORDER_TOOLTIP,
edgeSize = BORDER_EDGE_SIZE,
tile = false,
insets = { left = 2, right = 2, top = 2, bottom = 2 }
}
local BACKDROP_INPUT = {
bgFile = "Interface\\Buttons\\WHITE8X8",
edgeFile = BORDER_TOOLTIP,
edgeSize = 10,
tile = false,
insets = { left = 2, right = 2, top = 2, bottom = 2 }
}
local BACKDROP_BUTTON = {
bgFile = "Interface\\Buttons\\WHITE8X8",
edgeFile = BORDER_TOOLTIP,
edgeSize = BORDER_EDGE_SIZE,
tile = false,
insets = { left = 2, right = 2, top = 2, bottom = 2 }
}
-- ========================================
-- Input Validation Functions
-- ========================================
-- Validates and cleans numeric stat value input
-- Allows: up to 5 digits, one decimal point, minus sign at start only
-- Returns: cleaned string that meets validation rules
local function ValidateStatValueInput(text)
if not text or text == "" then return "" end
-- Allow lone minus sign temporarily (for better UX when typing)
if text == "-" then return "-" end
-- Check if starts with minus
local hasNegative = text:sub(1, 1) == "-"
local workingText = hasNegative and text:sub(2) or text
-- Remove all invalid characters (keep only digits and one decimal)
local cleaned = ""
local decimalCount = 0
local digitCount = 0
for i = 1, #workingText do
local char = workingText:sub(i, i)
if char == "." then
-- Only allow one decimal point
if decimalCount == 0 then
cleaned = cleaned .. char
decimalCount = decimalCount + 1
end
elseif char:match("%d") then
-- Only allow up to 5 digits total
if digitCount < 5 then
cleaned = cleaned .. char
digitCount = digitCount + 1
end
end
-- Silently skip any other characters
end
-- Prevent malformed inputs like ".", ".5" without leading zero is ok, but lone "." is not
if cleaned == "." then
cleaned = ""
end
-- Add back negative sign if it was present
if hasNegative and cleaned ~= "" then
cleaned = "-" .. cleaned
end
return cleaned
end
-- Validates whole number input (for decimal places setting)
-- Allows: only digits 0-9, no decimals or signs
-- Returns: cleaned string with only digits
local function ValidateWholeNumberInput(text)
if not text or text == "" then return "" end
-- Remove all non-digit characters
local cleaned = text:gsub("[^0-9]", "")
return cleaned
end
-- Applies validation to an EditBox for stat values
local function ApplyStatValueValidation(editBox)
-- Intercept text changes (handles both typing and pasting)
editBox:SetScript("OnTextChanged", function(self, userInput)
if userInput then
local text = self:GetText()
local validText = ValidateStatValueInput(text)
if text ~= validText then
local cursorPos = self:GetCursorPosition()
self:SetText(validText)
-- Adjust cursor position to stay at roughly the same place
self:SetCursorPosition(math.min(cursorPos, #validText))
end
end
end)
end
-- Applies validation to an EditBox for whole numbers
local function ApplyWholeNumberValidation(editBox)
-- Intercept text changes (handles both typing and pasting)
editBox:SetScript("OnTextChanged", function(self, userInput)
if userInput then
local text = self:GetText()
local validText = ValidateWholeNumberInput(text)
if text ~= validText then
local cursorPos = self:GetCursorPosition()
self:SetText(validText)
-- Adjust cursor position to stay at roughly the same place
self:SetCursorPosition(math.min(cursorPos, #validText))
end
end
end)
end
-- Font Standards (all use white/highlight fonts for modern look)
local FONT_TITLE = "GameFontHighlightLarge" -- ~16pt, white
local FONT_H1 = "GameFontHighlight" -- ~12pt, white
local FONT_H2 = "GameFontHighlightSmall" -- ~10pt, white
local FONT_H3 = "GameFontHighlightSmall" -- ~10pt, white
local FONT_BODY = "GameFontHighlight" -- ~12pt, white
local FONT_SMALL = "GameFontHighlightSmall" -- ~10pt, white
-- Helper function: Safe tooltip display (checks if dragging)
local function ShowTooltipSafe(frame, anchorType)
if not IsDraggingFrame then
GameTooltip:SetOwner(frame, anchorType or "ANCHOR_RIGHT")
return true
end
return false
end
-- Main UI Frame
local ValuateUIFrame = nil
local CurrentSelectedScale = nil
local EditingScaleName = nil
local OriginalScaleData = nil
local IsDraggingFrame = false -- Track if any frame is being dragged
-- Icon Picker state
local IconPickerFrame = nil
local IconPickerCallback = nil
-- Template Picker state
local TemplatePickerFrame = nil -- Full picker (all classes)
local ClassSpecificPickerFrame = nil -- Class-specific picker
-- Forward declaration for overwrite callback
local ValuateUI_OnTemplateOverwrite = nil
-- Curated icon list (safe, common icons that exist in WotLK 3.3.5a)
local SCALE_ICON_LIST = {
-- No Icon Option (always first)
"", -- Empty = no icon (clear selection)
-- Classes
"Interface\\Icons\\ClassIcon_Warrior",
"Interface\\Icons\\ClassIcon_Paladin",
"Interface\\Icons\\ClassIcon_Hunter",
"Interface\\Icons\\ClassIcon_Rogue",
"Interface\\Icons\\ClassIcon_Priest",
"Interface\\Icons\\ClassIcon_DeathKnight",
"Interface\\Icons\\ClassIcon_Shaman",
"Interface\\Icons\\ClassIcon_Mage",
"Interface\\Icons\\ClassIcon_Warlock",
"Interface\\Icons\\ClassIcon_Druid",
-- Warrior Abilities
"Interface\\Icons\\Ability_Warrior_OffensiveStance",
"Interface\\Icons\\Ability_Warrior_DefensiveStance",
"Interface\\Icons\\Ability_Warrior_BattleShout",
"Interface\\Icons\\Ability_Warrior_InnerRage",
"Interface\\Icons\\Ability_Warrior_SavageBlow",
"Interface\\Icons\\Ability_Warrior_Charge",
"Interface\\Icons\\Ability_Warrior_BattleShout",
"Interface\\Icons\\Ability_Warrior_Revenge",
"Interface\\Icons\\Ability_Warrior_Sunder",
"Interface\\Icons\\Ability_Warrior_ShieldBash",
-- Paladin Abilities
"Interface\\Icons\\Spell_Holy_HolyBolt",
"Interface\\Icons\\Spell_Holy_HolySmite",
"Interface\\Icons\\Spell_Holy_SealOfMight",
"Interface\\Icons\\Spell_Holy_SealOfWrath",
"Interface\\Icons\\Spell_Holy_DivineIntervention",
"Interface\\Icons\\Spell_Holy_LayOnHands",
"Interface\\Icons\\Ability_Paladin_ShieldoftheTemplar",
"Interface\\Icons\\Spell_Holy_RighteousFury",
"Interface\\Icons\\Spell_Holy_SealOfSacrifice",
"Interface\\Icons\\Spell_Holy_AuraOfLight",
-- Hunter Abilities
"Interface\\Icons\\Ability_Hunter_AimedShot",
"Interface\\Icons\\Ability_Hunter_MarkedForDeath",
"Interface\\Icons\\Ability_Hunter_BeastCall",
"Interface\\Icons\\Ability_Hunter_SilencingShot",
"Interface\\Icons\\Ability_Hunter_RunningShot",
"Interface\\Icons\\Ability_Hunter_RapidFire",
"Interface\\Icons\\Ability_Hunter_SteadyShot",
"Interface\\Icons\\Ability_Hunter_Pet_Bear",
"Interface\\Icons\\Ability_Hunter_Pet_Cat",
"Interface\\Icons\\Ability_Hunter_Pet_Wolf",
-- Rogue Abilities
"Interface\\Icons\\Ability_Rogue_Eviscerate",
"Interface\\Icons\\Ability_Rogue_ShadowDance",
"Interface\\Icons\\Ability_Rogue_Ambush",
"Interface\\Icons\\Ability_Rogue_Feint",
"Interface\\Icons\\Ability_Rogue_SliceDice",
"Interface\\Icons\\Ability_Rogue_Sprint",
"Interface\\Icons\\Ability_Rogue_Garrote",
"Interface\\Icons\\Ability_Rogue_KidneyShot",
"Interface\\Icons\\Ability_Rogue_RuptureFemaleBloodElf",
"Interface\\Icons\\Ability_Rogue_Dismantle",
-- Priest Abilities
"Interface\\Icons\\Spell_Holy_PowerWordShield",
"Interface\\Icons\\Spell_Holy_FlashHeal",
"Interface\\Icons\\Spell_Holy_GuardianSpirit",
"Interface\\Icons\\Spell_Holy_PrayerOfHealing",
"Interface\\Icons\\Spell_Shadow_ShadowWordPain",
"Interface\\Icons\\Spell_Shadow_VampiricEmbrace",
"Interface\\Icons\\Spell_Shadow_Shadowform",
"Interface\\Icons\\Spell_Holy_Renew",
"Interface\\Icons\\Spell_Holy_DivineSpirit",
"Interface\\Icons\\Spell_Holy_Resurrection",
-- Death Knight Abilities
"Interface\\Icons\\Spell_Deathknight_IceTouch",
"Interface\\Icons\\Spell_Deathknight_Strangulate",
"Interface\\Icons\\Spell_Shadow_DeathScream",
"Interface\\Icons\\Spell_Deathknight_FrostPresence",
"Interface\\Icons\\Spell_Deathknight_BloodPresence",
"Interface\\Icons\\Spell_Deathknight_UnholyPresence",
"Interface\\Icons\\Spell_Deathknight_DeathStrike",
"Interface\\Icons\\Spell_Shadow_SoulLeech_2",
"Interface\\Icons\\Spell_Shadow_RaiseDead",
"Interface\\Icons\\Spell_Shadow_AnimateDead",
-- Shaman Abilities
"Interface\\Icons\\Spell_Nature_Lightning",
"Interface\\Icons\\Spell_Nature_LightningShield",
"Interface\\Icons\\Spell_Nature_MagicImmunity",
"Interface\\Icons\\Spell_Nature_ChainLightning",
"Interface\\Icons\\Spell_Shaman_LavaLash",
"Interface\\Icons\\Spell_Fire_Elemental_Totem",
"Interface\\Icons\\Spell_Nature_HealingWaveGreater",
"Interface\\Icons\\Spell_Nature_MagicImmunity",
"Interface\\Icons\\Spell_Shaman_Hex",
"Interface\\Icons\\Ability_Shaman_Stormstrike",
-- Mage Abilities
"Interface\\Icons\\Spell_Fire_FireBolt02",
"Interface\\Icons\\Spell_Frost_FrostBolt02",
"Interface\\Icons\\Spell_Arcane_Blast",
"Interface\\Icons\\Spell_Fire_Flamebolt",
"Interface\\Icons\\Spell_Frost_IceStorm",
"Interface\\Icons\\Spell_Arcane_Blink",
"Interface\\Icons\\Spell_Fire_MeteorStorm",
"Interface\\Icons\\Spell_Frost_FrostNova",
"Interface\\Icons\\Spell_Arcane_MassDispel",
"Interface\\Icons\\Spell_Arcane_PortalDalaran",
-- Warlock Abilities
"Interface\\Icons\\Spell_Shadow_ShadowBolt",
"Interface\\Icons\\Spell_Shadow_AbominationExplosion",
"Interface\\Icons\\Spell_Shadow_CurseOfTounges",
"Interface\\Icons\\Spell_Shadow_DeathCoil",
"Interface\\Icons\\Spell_Shadow_MetamorphosisStun",
"Interface\\Icons\\Spell_Shadow_RainOfFire",
"Interface\\Icons\\Spell_Shadow_SiphonMana",
"Interface\\Icons\\Spell_Shadow_SummonFelHunter",
"Interface\\Icons\\Spell_Shadow_SummonImp",
"Interface\\Icons\\Spell_Shadow_UnstableAffliction_3",
-- Druid Abilities
"Interface\\Icons\\Spell_Nature_StarFall",
"Interface\\Icons\\Spell_Nature_HealingTouch",
"Interface\\Icons\\Ability_Racial_BearForm",
"Interface\\Icons\\Ability_Druid_CatForm",
"Interface\\Icons\\Spell_Nature_ForceOfNature",
"Interface\\Icons\\Ability_Druid_TreeofLife",
"Interface\\Icons\\Spell_Nature_Rejuvenation",
"Interface\\Icons\\Spell_Nature_ThornAura",
"Interface\\Icons\\Ability_Druid_Enrage",
"Interface\\Icons\\Ability_Druid_Swipe",
-- Weapon Icons
"Interface\\Icons\\INV_Sword_04",
"Interface\\Icons\\INV_Sword_27",
"Interface\\Icons\\INV_Axe_09",
"Interface\\Icons\\INV_Mace_01MD",
"Interface\\Icons\\INV_Staff_13",
"Interface\\Icons\\INV_Weapon_Bow_07",
"Interface\\Icons\\INV_Weapon_Crossbow_06",
"Interface\\Icons\\INV_Weapon_Rifle_01",
"Interface\\Icons\\INV_ThrowingKnife_04",
"Interface\\Icons\\INV_Wand_07",
-- Shield/Offhand
"Interface\\Icons\\INV_Shield_06",
"Interface\\Icons\\INV_Shield_17",
"Interface\\Icons\\INV_Offhand_Hyjal_D_01",
"Interface\\Icons\\Ability_Defend",
-- Dual Wield & Combat Styles
"Interface\\Icons\\Ability_DualWield",
"Interface\\Icons\\Ability_Warrior_DecisiveStrike",
"Interface\\Icons\\Ability_Backstab",
"Interface\\Icons\\Ability_MeleeDamage",
-- Armor Types
"Interface\\Icons\\INV_Helmet_25",
"Interface\\Icons\\INV_Chest_Leather_08",
"Interface\\Icons\\INV_Chest_Chain_03",
"Interface\\Icons\\INV_Chest_Plate01",
"Interface\\Icons\\INV_Shoulder_23",
"Interface\\Icons\\INV_Gauntlets_19",
"Interface\\Icons\\INV_Belt_20",
"Interface\\Icons\\INV_Pants_06",
"Interface\\Icons\\INV_Boots_Plate_01",
-- Jewelry
"Interface\\Icons\\INV_Jewelry_Ring_03",
"Interface\\Icons\\INV_Jewelry_Ring_08",
"Interface\\Icons\\INV_Jewelry_Necklace_05",
"Interface\\Icons\\INV_Jewelry_Talisman_03",
-- Spell Schools
"Interface\\Icons\\Spell_Fire_FlameShock",
"Interface\\Icons\\Spell_Frost_FrostShock",
"Interface\\Icons\\Spell_Nature_NatureTouchGrow",
"Interface\\Icons\\Spell_Arcane_StarFire",
"Interface\\Icons\\Spell_Shadow_ChillTouch",
"Interface\\Icons\\Spell_Holy_InnerFire",
-- Stats & Attributes
"Interface\\Icons\\Spell_ChargePositive",
"Interface\\Icons\\Spell_ChargeNegative",
"Interface\\Icons\\Spell_Misc_Drink",
"Interface\\Icons\\Spell_Holy_MindVision",
"Interface\\Icons\\Ability_Racial_Avatar",
"Interface\\Icons\\Ability_Stealth",
-- Gems & Crafting
"Interface\\Icons\\INV_Misc_Gem_02",
"Interface\\Icons\\INV_Misc_Gem_Ruby_01",
"Interface\\Icons\\INV_Misc_Gem_Sapphire_01",
"Interface\\Icons\\INV_Misc_Gem_Emerald_01",
"Interface\\Icons\\INV_Misc_Gem_Diamond_01",
"Interface\\Icons\\Trade_Engineering",
"Interface\\Icons\\Trade_Blacksmithing",
"Interface\\Icons\\Trade_Engraving",
"Interface\\Icons\\Trade_Alchemy",
-- PvP Icons
"Interface\\Icons\\Achievement_PVP_A_01",
"Interface\\Icons\\Achievement_PVP_H_01",
"Interface\\Icons\\Achievement_Arena_2v2_1",
"Interface\\Icons\\Achievement_Arena_3v3_1",
"Interface\\Icons\\Achievement_Arena_5v5_1",
"Interface\\Icons\\Achievement_BG_killXenemies_generalsroom",
-- Raid & Dungeon
"Interface\\Icons\\Achievement_Boss_Archimonde",
"Interface\\Icons\\Achievement_Boss_Illidan",
"Interface\\Icons\\Achievement_Boss_LichKing",
"Interface\\Icons\\INV_Misc_Head_Dragon_01",
"Interface\\Icons\\Achievement_Dungeon_UlduarRaid_Misc_05",
-- Misc Useful Icons
"Interface\\Icons\\INV_Misc_Gear_01",
"Interface\\Icons\\INV_Misc_Book_09",
"Interface\\Icons\\Spell_Holy_GreaterBlessingofKings",
"Interface\\Icons\\INV_Misc_MonsterClaw_04",
"Interface\\Icons\\INV_Misc_MonsterFang_01",
"Interface\\Icons\\Ability_Hunter_BeastTaming",
"Interface\\Icons\\INV_Misc_QuestionMark",
"Interface\\Icons\\Spell_Misc_EmotionHappy",
"Interface\\Icons\\Spell_Misc_EmotionAfraid",
"Interface\\Icons\\Spell_Shadow_Skull",
"Interface\\Icons\\INV_Misc_Bone_HumanSkull_01",
"Interface\\Icons\\Achievement_General",
"Interface\\Icons\\Achievement_Reputation_01",
"Interface\\Icons\\Achievement_Quests_Completed_08",
"Interface\\Icons\\Trade_Engineering",
"Interface\\Icons\\INV_Misc_Coin_01",
"Interface\\Icons\\INV_Misc_Trophy_Gold",
"Interface\\Icons\\INV_Misc_Trophy_Silver",
"Interface\\Icons\\INV_Misc_Trophy_Bronze",
"Interface\\Icons\\Spell_Holy_MindSooth",
"Interface\\Icons\\Ability_Tracking",
-- Special Effects
"Interface\\Icons\\Spell_Nature_ShamanRage",
"Interface\\Icons\\Spell_Shadow_MindSteal",
"Interface\\Icons\\Spell_Holy_Dizzy",
"Interface\\Icons\\Spell_Nature_Polymorph",
"Interface\\Icons\\Spell_Ice_Lament",
"Interface\\Icons\\Spell_Fire_SoulBurn",
"Interface\\Icons\\Ability_Rogue_MasterOfSubtlety",
"Interface\\Icons\\Spell_Nature_WispSplode",
-- More Weapons - Swords
"Interface\\Icons\\INV_Sword_01",
"Interface\\Icons\\INV_Sword_02",
"Interface\\Icons\\INV_Sword_05",
"Interface\\Icons\\INV_Sword_06",
"Interface\\Icons\\INV_Sword_09",
"Interface\\Icons\\INV_Sword_11",
"Interface\\Icons\\INV_Sword_15",
"Interface\\Icons\\INV_Sword_18",
"Interface\\Icons\\INV_Sword_20",
"Interface\\Icons\\INV_Sword_27",
"Interface\\Icons\\INV_Sword_39",
"Interface\\Icons\\INV_Sword_48",
"Interface\\Icons\\INV_Sword_62",
-- More Weapons - Axes
"Interface\\Icons\\INV_Axe_01",
"Interface\\Icons\\INV_Axe_02",
"Interface\\Icons\\INV_Axe_03",
"Interface\\Icons\\INV_Axe_06",
"Interface\\Icons\\INV_Axe_11",
"Interface\\Icons\\INV_Axe_23",
"Interface\\Icons\\INV_Axe_68",
"Interface\\Icons\\INV_Axe_80",
"Interface\\Icons\\INV_Axe_113",
-- More Weapons - Maces
"Interface\\Icons\\INV_Mace_01",
"Interface\\Icons\\INV_Mace_02",
"Interface\\Icons\\INV_Mace_03",
"Interface\\Icons\\INV_Mace_04",
"Interface\\Icons\\INV_Mace_07",
"Interface\\Icons\\INV_Mace_11",
"Interface\\Icons\\INV_Mace_15",
"Interface\\Icons\\INV_Hammer_01",
"Interface\\Icons\\INV_Hammer_02",
"Interface\\Icons\\INV_Hammer_09",
"Interface\\Icons\\INV_Hammer_15",
"Interface\\Icons\\INV_Hammer_20",
-- More Weapons - Daggers
"Interface\\Icons\\INV_Weapon_ShortBlade_05",
"Interface\\Icons\\INV_Weapon_ShortBlade_12",
"Interface\\Icons\\INV_Weapon_ShortBlade_15",
"Interface\\Icons\\INV_Weapon_ShortBlade_25",
"Interface\\Icons\\INV_Weapon_ShortBlade_78",
-- More Weapons - Staves
"Interface\\Icons\\INV_Staff_01",
"Interface\\Icons\\INV_Staff_02",
"Interface\\Icons\\INV_Staff_05",
"Interface\\Icons\\INV_Staff_08",
"Interface\\Icons\\INV_Staff_13",
"Interface\\Icons\\INV_Staff_30",
"Interface\\Icons\\INV_Staff_56",
-- More Weapons - Polearms
"Interface\\Icons\\INV_Spear_01",
"Interface\\Icons\\INV_Spear_02",
"Interface\\Icons\\INV_Spear_03",
"Interface\\Icons\\INV_Spear_05",
"Interface\\Icons\\INV_Spear_07",
-- More Weapons - Fist Weapons
"Interface\\Icons\\INV_Gauntlets_05",
"Interface\\Icons\\INV_Gauntlets_04",
"Interface\\Icons\\INV_Weapon_Hand_01",
-- More Ranged Weapons
"Interface\\Icons\\INV_Weapon_Bow_01",
"Interface\\Icons\\INV_Weapon_Bow_08",
"Interface\\Icons\\INV_Weapon_Bow_13",
"Interface\\Icons\\INV_Weapon_Crossbow_02",
"Interface\\Icons\\INV_Weapon_Crossbow_07",
"Interface\\Icons\\INV_Weapon_Rifle_07",
"Interface\\Icons\\INV_Weapon_Rifle_08",
-- More Shields
"Interface\\Icons\\INV_Shield_01",
"Interface\\Icons\\INV_Shield_02",
"Interface\\Icons\\INV_Shield_04",
"Interface\\Icons\\INV_Shield_05",
"Interface\\Icons\\INV_Shield_09",
"Interface\\Icons\\INV_Shield_19",
"Interface\\Icons\\INV_Shield_20",
"Interface\\Icons\\INV_Shield_27",
-- Totems & Relics
"Interface\\Icons\\INV_Misc_MonsterClaw_03",
"Interface\\Icons\\Spell_Frost_SummonWaterElemental_2",
"Interface\\Icons\\Spell_Fire_TotemOfWrath",
"Interface\\Icons\\Spell_Nature_EarthBindTotem",
"Interface\\Icons\\Spell_Fire_SearingTotem",
"Interface\\Icons\\INV_Relics_IdolofFerocity",
"Interface\\Icons\\INV_Relics_LibramofHope",
"Interface\\Icons\\INV_Relics_TotemofRage",
"Interface\\Icons\\INV_Jewelry_Talisman_07",
-- More Armor - Helmets
"Interface\\Icons\\INV_Helmet_01",
"Interface\\Icons\\INV_Helmet_03",
"Interface\\Icons\\INV_Helmet_08",
"Interface\\Icons\\INV_Helmet_09",
"Interface\\Icons\\INV_Helmet_15",
"Interface\\Icons\\INV_Helmet_23",
"Interface\\Icons\\INV_Helmet_31",
"Interface\\Icons\\INV_Helmet_62",
"Interface\\Icons\\INV_Helmet_74",
"Interface\\Icons\\INV_Helmet_96",
-- More Armor - Chest
"Interface\\Icons\\INV_Chest_Cloth_07",
"Interface\\Icons\\INV_Chest_Cloth_25",
"Interface\\Icons\\INV_Chest_Cloth_45",
"Interface\\Icons\\INV_Chest_Leather_01",
"Interface\\Icons\\INV_Chest_Leather_03",
"Interface\\Icons\\INV_Chest_Leather_06",
"Interface\\Icons\\INV_Chest_Chain_11",
"Interface\\Icons\\INV_Chest_Chain_16",
"Interface\\Icons\\INV_Chest_Plate03",
"Interface\\Icons\\INV_Chest_Plate06",
"Interface\\Icons\\INV_Chest_Plate16",
-- More Armor - Shoulders
"Interface\\Icons\\INV_Shoulder_01",
"Interface\\Icons\\INV_Shoulder_02",
"Interface\\Icons\\INV_Shoulder_05",
"Interface\\Icons\\INV_Shoulder_10",
"Interface\\Icons\\INV_Shoulder_14",
"Interface\\Icons\\INV_Shoulder_22",
"Interface\\Icons\\INV_Shoulder_25",
"Interface\\Icons\\INV_Shoulder_36",
-- More Armor - Gloves
"Interface\\Icons\\INV_Gauntlets_03",
"Interface\\Icons\\INV_Gauntlets_09",
"Interface\\Icons\\INV_Gauntlets_17",
"Interface\\Icons\\INV_Gauntlets_27",
"Interface\\Icons\\INV_Gauntlets_32",
"Interface\\Icons\\INV_Gauntlets_62",
-- More Armor - Legs
"Interface\\Icons\\INV_Pants_01",
"Interface\\Icons\\INV_Pants_02",
"Interface\\Icons\\INV_Pants_03",
"Interface\\Icons\\INV_Pants_04",
"Interface\\Icons\\INV_Pants_08",
"Interface\\Icons\\INV_Pants_14",
-- More Armor - Boots
"Interface\\Icons\\INV_Boots_01",
"Interface\\Icons\\INV_Boots_02",
"Interface\\Icons\\INV_Boots_05",
"Interface\\Icons\\INV_Boots_08",
"Interface\\Icons\\INV_Boots_Chain_04",
"Interface\\Icons\\INV_Boots_Plate_03",
-- More Armor - Belts
"Interface\\Icons\\INV_Belt_01",
"Interface\\Icons\\INV_Belt_03",
"Interface\\Icons\\INV_Belt_07",
"Interface\\Icons\\INV_Belt_09",
"Interface\\Icons\\INV_Belt_13",
"Interface\\Icons\\INV_Belt_16",
"Interface\\Icons\\INV_Belt_23",
-- More Armor - Cloaks
"Interface\\Icons\\INV_Misc_Cape_02",
"Interface\\Icons\\INV_Misc_Cape_07",
"Interface\\Icons\\INV_Misc_Cape_11",
"Interface\\Icons\\INV_Misc_Cape_18",
"Interface\\Icons\\INV_Misc_Cape_20",
-- More Jewelry - Rings
"Interface\\Icons\\INV_Jewelry_Ring_01",
"Interface\\Icons\\INV_Jewelry_Ring_02",
"Interface\\Icons\\INV_Jewelry_Ring_04",
"Interface\\Icons\\INV_Jewelry_Ring_05",
"Interface\\Icons\\INV_Jewelry_Ring_07",
"Interface\\Icons\\INV_Jewelry_Ring_11",
"Interface\\Icons\\INV_Jewelry_Ring_15",
"Interface\\Icons\\INV_Jewelry_Ring_36",
"Interface\\Icons\\INV_Jewelry_Ring_51",
-- More Jewelry - Necklaces
"Interface\\Icons\\INV_Jewelry_Necklace_01",
"Interface\\Icons\\INV_Jewelry_Necklace_03",
"Interface\\Icons\\INV_Jewelry_Necklace_07",
"Interface\\Icons\\INV_Jewelry_Necklace_08",
"Interface\\Icons\\INV_Jewelry_Necklace_12",
"Interface\\Icons\\INV_Jewelry_Necklace_16",
-- Trinkets
"Interface\\Icons\\INV_Jewelry_Talisman_01",
"Interface\\Icons\\INV_Jewelry_Talisman_04",
"Interface\\Icons\\INV_Jewelry_Talisman_06",
"Interface\\Icons\\INV_Jewelry_Talisman_08",
"Interface\\Icons\\INV_Jewelry_Talisman_11",
"Interface\\Icons\\INV_Misc_PocketWatch_01",
"Interface\\Icons\\INV_Misc_PocketWatch_02",
"Interface\\Icons\\INV_Misc_Rune_01",
"Interface\\Icons\\INV_Misc_Rune_06",
-- More Gems
"Interface\\Icons\\INV_Misc_Gem_01",
"Interface\\Icons\\INV_Misc_Gem_03",
"Interface\\Icons\\INV_Misc_Gem_04",
"Interface\\Icons\\INV_Misc_Gem_05",
"Interface\\Icons\\INV_Misc_Gem_Stone_01",
"Interface\\Icons\\INV_Misc_Gem_Bloodstone_01",
"Interface\\Icons\\INV_Misc_Gem_Topaz_01",
"Interface\\Icons\\INV_Misc_Gem_Amethyst_01",
"Interface\\Icons\\INV_Misc_Gem_Pearl_01",
"Interface\\Icons\\INV_Misc_Gem_Pearl_03",
"Interface\\Icons\\INV_Misc_Gem_Opal_01",
"Interface\\Icons\\INV_Misc_Gem_Variety_01",
-- More Spell Effects - Fire
"Interface\\Icons\\Spell_Fire_Immolation",
"Interface\\Icons\\Spell_Fire_Fire",
"Interface\\Icons\\Spell_Fire_FelFlameRing",
"Interface\\Icons\\Spell_Fire_FelFlameStrike",
"Interface\\Icons\\Spell_Fire_FelfireGreen",
"Interface\\Icons\\Spell_Fire_Burnout",
"Interface\\Icons\\Spell_Fire_BlueFlameRing",
"Interface\\Icons\\Spell_Fire_BlueHellfire",
"Interface\\Icons\\Spell_Fire_Volcano",
"Interface\\Icons\\Spell_Fire_Twilightimmolation",
-- More Spell Effects - Frost
"Interface\\Icons\\Spell_Frost_IceFloes",
"Interface\\Icons\\Spell_Frost_Frost",
"Interface\\Icons\\Spell_Frost_FreezingBreath",
"Interface\\Icons\\Spell_Frost_FrostArmor02",
"Interface\\Icons\\Spell_Frost_FrostBlast",
"Interface\\Icons\\Spell_Frost_ChillingBlast",
"Interface\\Icons\\Spell_Frost_ArcticWinds",
"Interface\\Icons\\Spell_Frost_Glacier",
"Interface\\Icons\\Spell_Ice_MagicDamage",
-- More Spell Effects - Nature
"Interface\\Icons\\Spell_Nature_Thorns",
"Interface\\Icons\\Spell_Nature_NatureTouched",
"Interface\\Icons\\Spell_Nature_NatureWrath",
"Interface\\Icons\\Spell_Nature_Regeneration",
"Interface\\Icons\\Spell_Nature_Earthquake",
"Interface\\Icons\\Spell_Nature_Cyclone",
"Interface\\Icons\\Spell_Nature_StormReach",
"Interface\\Icons\\Spell_Nature_RavenForm",
"Interface\\Icons\\Spell_Nature_Tranquility",
"Interface\\Icons\\Spell_Nature_ResistNature",
-- More Spell Effects - Shadow
"Interface\\Icons\\Spell_Shadow_DarkRitual",
"Interface\\Icons\\Spell_Shadow_DemonicFortitude",
"Interface\\Icons\\Spell_Shadow_DemonicEmpathy",
"Interface\\Icons\\Spell_Shadow_DemonBreath",
"Interface\\Icons\\Spell_Shadow_NightOfTheDead",
"Interface\\Icons\\Spell_Shadow_Shadowfiend",
"Interface\\Icons\\Spell_Shadow_Shades",
"Interface\\Icons\\Spell_Shadow_ShadowEmbrace",
"Interface\\Icons\\Spell_Shadow_Twilight",
"Interface\\Icons\\Spell_Shadow_Possession",
-- More Spell Effects - Holy/Light
"Interface\\Icons\\Spell_Holy_Heal",
"Interface\\Icons\\Spell_Holy_HolyProtection",
"Interface\\Icons\\Spell_Holy_Silence",
"Interface\\Icons\\Spell_Holy_SealOfWisdom",
"Interface\\Icons\\Spell_Holy_Purify",
"Interface\\Icons\\Spell_Holy_PrayerOfMentalAgility",
"Interface\\Icons\\Spell_Holy_PrayerOfSpirit",
"Interface\\Icons\\Spell_Holy_SummonChampion",
"Interface\\Icons\\Spell_Holy_AshesToAshes",
"Interface\\Icons\\Spell_Holy_BlessedRecovery",
-- More Spell Effects - Arcane
"Interface\\Icons\\Spell_Arcane_ArcanePotency",
"Interface\\Icons\\Spell_Arcane_ArcaneResilience",
"Interface\\Icons\\Spell_Arcane_ArcaneTorrent",
"Interface\\Icons\\Spell_Arcane_MindMastery",
"Interface\\Icons\\Spell_Arcane_PrismaticCloak",
"Interface\\Icons\\Spell_Arcane_StudentOfMagic",
"Interface\\Icons\\Spell_Arcane_Arcane01",
"Interface\\Icons\\Spell_Arcane_Arcane02",
"Interface\\Icons\\Spell_Arcane_Arcane03",
-- Stat Icons
"Interface\\Icons\\Ability_Warrior_StrengthOfArmsMortal",
"Interface\\Icons\\Ability_Hunter_Pet_Dragonhawk",
"Interface\\Icons\\Spell_Nature_AstralRecalGroup",
"Interface\\Icons\\Ability_Warrior_Trauma",
"Interface\\Icons\\Ability_Warrior_Vigilance",
"Interface\\Icons\\Ability_Warrior_VictoryRush",
"Interface\\Icons\\Ability_Warrior_WarCry",
"Interface\\Icons\\Spell_Holy_ElunesGrace",
"Interface\\Icons\\Spell_Holy_MindSooth",
-- Profession Icons - More Detailed
"Interface\\Icons\\Trade_Alchemy",
"Interface\\Icons\\Trade_BlackSmithing",
"Interface\\Icons\\Trade_BrewPoison",
"Interface\\Icons\\Trade_Engineering",
"Interface\\Icons\\Trade_Engraving",
"Interface\\Icons\\Trade_Fishing",
"Interface\\Icons\\Trade_Herbalism",
"Interface\\Icons\\Trade_LeatherWorking",
"Interface\\Icons\\Trade_Mining",
"Interface\\Icons\\Trade_Tailoring",
"Interface\\Icons\\INV_Inscription_Tradeskill01",
"Interface\\Icons\\INV_Misc_Food_15",
"Interface\\Icons\\INV_Misc_Food_95_Tacodish",
"Interface\\Icons\\INV_Drink_05",
-- Consumables
"Interface\\Icons\\INV_Potion_01",
"Interface\\Icons\\INV_Potion_02",
"Interface\\Icons\\INV_Potion_03",
"Interface\\Icons\\INV_Potion_52",
"Interface\\Icons\\INV_Potion_54",
"Interface\\Icons\\INV_Potion_61",
"Interface\\Icons\\INV_Alchemy_Elixir_01",
"Interface\\Icons\\INV_Alchemy_Elixir_02",
"Interface\\Icons\\INV_Alchemy_Elixir_04",
"Interface\\Icons\\Spell_Shadow_ImpPhaseShift",
-- More Achievements
"Interface\\Icons\\Achievement_General_StayClassy",
"Interface\\Icons\\Achievement_Character_Human_Female",
"Interface\\Icons\\Achievement_Character_Human_Male",
"Interface\\Icons\\Achievement_Character_Orc_Female",
"Interface\\Icons\\Achievement_Character_Orc_Male",
"Interface\\Icons\\Achievement_Feats_of_strength_01",
"Interface\\Icons\\Achievement_Feats_of_strength_02",
"Interface\\Icons\\Achievement_BG_winWSG",
"Interface\\Icons\\Achievement_BG_winAB",
"Interface\\Icons\\Achievement_BG_winAV",
"Interface\\Icons\\Achievement_BG_winEOTS",
-- Boss & Creature Icons
"Interface\\Icons\\INV_Misc_Head_Dragon_Black",
"Interface\\Icons\\INV_Misc_Head_Dragon_Blue",
"Interface\\Icons\\INV_Misc_Head_Dragon_Bronze",
"Interface\\Icons\\INV_Misc_Head_Dragon_Green",
"Interface\\Icons\\INV_Misc_Head_Dragon_Red",
"Interface\\Icons\\INV_Misc_MonsterHead_01",
"Interface\\Icons\\INV_Misc_MonsterHead_02",
"Interface\\Icons\\INV_Misc_MonsterHead_03",
"Interface\\Icons\\Ability_Mount_Drake_Proto",
"Interface\\Icons\\Ability_Mount_Drake_Twilight",
-- Elements & Nature
"Interface\\Icons\\Spell_Fire_ElementalDevastation",
"Interface\\Icons\\Spell_Frost_SummonWaterElemental",
"Interface\\Icons\\Spell_Nature_ElementalShields",
"Interface\\Icons\\Spell_Shadow_SummonVoidWalker",
"Interface\\Icons\\Spell_Arcane_TeleportStormwind",
"Interface\\Icons\\Spell_Arcane_TeleportIronForge",
-- Money & Rewards
"Interface\\Icons\\INV_Misc_Coin_02",
"Interface\\Icons\\INV_Misc_Coin_16",
"Interface\\Icons\\INV_Misc_Coin_17",
"Interface\\Icons\\INV_Misc_Bag_10",
"Interface\\Icons\\INV_Misc_Bag_16",
"Interface\\Icons\\INV_Misc_Bag_26",
"Interface\\Icons\\INV_Box_01",
"Interface\\Icons\\INV_Box_02",
"Interface\\Icons\\INV_Box_04",
"Interface\\Icons\\INV_Chest_Cloth_04",
-- Misc Useful
"Interface\\Icons\\INV_Misc_ArmorKit_03",
"Interface\\Icons\\INV_Misc_ArmorKit_17",
"Interface\\Icons\\INV_Misc_Note_01",
"Interface\\Icons\\INV_Scroll_02",
"Interface\\Icons\\INV_Scroll_05",
"Interface\\Icons\\INV_Banner_02",
"Interface\\Icons\\INV_Misc_Map02",
"Interface\\Icons\\INV_Misc_Orb_01",
"Interface\\Icons\\INV_Misc_Orb_02",
"Interface\\Icons\\INV_Misc_Orb_03",
"Interface\\Icons\\INV_Misc_Orb_04",
"Interface\\Icons\\INV_Misc_Orb_05",
"Interface\\Icons\\Spell_Nature_InvisibilityTotem",
"Interface\\Icons\\Ability_Ambush",
"Interface\\Icons\\Ability_Kick",
"Interface\\Icons\\Ability_Vanish",
-- Buffs & Debuffs
"Interface\\Icons\\Spell_Magic_MageArmor",
"Interface\\Icons\\Spell_Magic_LesserInvisibilty",
"Interface\\Icons\\Spell_Magic_GreaterInvisibilty",
"Interface\\Icons\\Spell_Holy_BlessingOfStrength",
"Interface\\Icons\\Spell_Holy_BlessingOfStamina",
"Interface\\Icons\\Spell_Holy_GreaterBlessingofWisdom",
"Interface\\Icons\\Spell_Holy_GreaterBlessingofSalvation",
"Interface\\Icons\\Spell_Holy_GreaterHeal",
"Interface\\Icons\\Ability_Warrior_CommandingShout",
"Interface\\Icons\\Ability_Warrior_BattleShout",
-- Racial Abilities
"Interface\\Icons\\Ability_Racial_BloodRage",
"Interface\\Icons\\Ability_Racial_BerserkerRage",
"Interface\\Icons\\Ability_Racial_Cannibalize",
"Interface\\Icons\\Ability_Racial_ForgedInFlames",
"Interface\\Icons\\Spell_Shadow_RaceUndead",
"Interface\\Icons\\Spell_Nature_TimeStop",
-- Mounts & Pets
"Interface\\Icons\\Ability_Mount_RidingHorse",
"Interface\\Icons\\Ability_Mount_Dreadsteed",
"Interface\\Icons\\Ability_Mount_ChargedDeathcharger",
"Interface\\Icons\\Ability_Mount_GriffonGold",
"Interface\\Icons\\Ability_Mount_WhiteTiger",
"Interface\\Icons\\INV_Misc_Fish_02",
"Interface\\Icons\\Ability_Hunter_Pet_Bat",
"Interface\\Icons\\Ability_Hunter_Pet_Boar",
"Interface\\Icons\\Ability_Hunter_Pet_Crab",
"Interface\\Icons\\Ability_Hunter_Pet_Gorilla",
"Interface\\Icons\\Ability_Hunter_Pet_Owl",
"Interface\\Icons\\Ability_Hunter_Pet_Raptor",
"Interface\\Icons\\Ability_Hunter_Pet_Spider",
"Interface\\Icons\\Ability_Hunter_Pet_WindSerpent",
}
-- ValuateOptions and ValuateScales are per-character SavedVariablesPerCharacter
-- accessed via Valuate:GetOptions() and Valuate:GetScales()
-- ========================================
-- Class/Spec Templates
-- ========================================
-- Template data for creating pre-configured scales for each class/spec
local CLASS_SPEC_TEMPLATES = {
{
class = "Warrior",
color = "C79C6E",
description = "Masters of melee combat, warriors charge into battle with unyielding strength and indomitable will.",
specs = {
{
name = "Arms",
icon = "Interface\\Icons\\Ability_Warrior_SavageBlow",
color = "FF4444", -- Red - aggressive DPS
role = "DAMAGER",
description = "Master of two-handed weapons, delivering devastating strikes and mortal wounds.",
weights = {
Strength = 1.0, AttackPower = 0.5, CritRating = 0.8, HitRating = 1.0,
HasteRating = 0.6, ExpertiseRating = 0.9, ArmorPenetration = 0.7,
Agility = 0.3, Stamina = 0.2, Armor = 0.05, Spirit = 0.005,
Hp5 = 0.01, Health = 0.005, DefenseRating = 0.005, DodgeRating = 0.005,
ParryRating = 0.005, FireResist = 0.01, FrostResist = 0.01,
ShadowResist = 0.01, NatureResist = 0.01, ArcaneResist = 0.01,
AllResist = 0.01, TwoHandDps = 0.75
},
unusable = {
-- Weapons (class cannot use)
IsWand = true, IsStaff = true,
-- Weapons (spec uses 2H only)
IsAxe = true, IsMace = true, IsSword = true, IsDagger = true, IsFist = true,
-- Offhands
IsFrill = true, IsShield = true,
-- Relics
IsLibram = true, IsTotem = true, IsSigil = true, IsIdol = true,
-- DPS Stats (2H only spec)
OffHandDps = true, MainHandDps = true, OneHandDps = true,
-- Feral Stats
FeralAP = true,
-- Block Stats (can't use shields)
BlockRating = true, BlockValue = true,
-- Caster Stats (non-caster class)
Intellect = true, Mana = true, Mp5 = true, SpellPower = true,
SpellPenetration = true, HolySpellPower = true, FireSpellPower = true,
FrostSpellPower = true, ShadowSpellPower = true, NatureSpellPower = true,
ArcaneSpellPower = true
}
},
{
name = "Fury",
icon = "Interface\\Icons\\Ability_Warrior_InnerRage",
color = "FF8800", -- Orange - berserker fury
role = "DAMAGER",
description = "Berserker wielding dual weapons, striking with reckless fury and brutal speed.",
weights = {
Strength = 1.0, AttackPower = 0.5, CritRating = 0.9, HitRating = 1.0,
HasteRating = 0.7, ExpertiseRating = 0.9, ArmorPenetration = 0.8,
Agility = 0.3, Stamina = 0.2, Armor = 0.05, Spirit = 0.005,
Hp5 = 0.01, Health = 0.005, DefenseRating = 0.005, DodgeRating = 0.005,
ParryRating = 0.005, FireResist = 0.01, FrostResist = 0.01,
ShadowResist = 0.01, NatureResist = 0.01, ArcaneResist = 0.01,
AllResist = 0.01, MainHandDps = 0.7, OffHandDps = 0.5, OneHandDps = 0.6
},
unusable = {
-- Weapons
IsWand = true, IsStaff = true,
-- Offhands
IsFrill = true, IsShield = true,
-- Relics
IsLibram = true, IsTotem = true, IsSigil = true, IsIdol = true,