-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathLibItemBuffs-Database-1.0.lua
4620 lines (4607 loc) · 217 KB
/
LibItemBuffs-Database-1.0.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
--[[
LibItemBuffs-1.0 - buff-to-item database.
(c) 2013-2018 Adirelle ([email protected])
This file is part of LibItemBuffs-1.0.
LibItemBuffs-1.0 is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
LibItemBuffs-1.0 is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with LibItemBuffs-1.0. If not, see <http://www.gnu.org/licenses/>.
--]]
local version
local trinkets = {}
local consumables = {
-- Special case: Alchemist's Flask
[79638] = 75525,
[79639] = 75525,
[79640] = 75525,
-- Empowered Augment Runes
[175456] = { -- Hyper Augmentation
118630, -- Hyper Augment Rune
128475, -- Empowered Augment Rune (Horde)
128482, -- Empowered Augment Rune (Alliance)
},
[175439] = { -- Stout Augmentation
118631, -- Stout Augment Rune
128475, -- Empowered Augment Rune (Horde)
128482, -- Empowered Augment Rune (Alliance)
},
[175457] = { -- Focus Augmentation
118632, -- Focus Augment Rune
128475, -- Empowered Augment Rune (Horde)
128482, -- Empowered Augment Rune (Alliance)
},
}
local enchantments = {
-- MoP enchantments
-- Weapon (we assign it to the main hand weapon though it could come from the off-hand)
[109085] = INVSLOT_MAINHAND, -- Engineering: Lord Blastington's Scope of Doom
[118334] = INVSLOT_MAINHAND, -- Enchanting: Dancing Steel (agility)
[118335] = INVSLOT_MAINHAND, -- Enchanting: Dancing Steel (strength)
[104993] = INVSLOT_MAINHAND, -- Enchanting: Jade Spirit
[116660] = INVSLOT_MAINHAND, -- Enchanting: River's Song -- NEED CONFIRMATION
[116631] = INVSLOT_MAINHAND, -- Enchanting: Colossus
[104423] = INVSLOT_MAINHAND, -- Enchanting: Windsong (haste)
[104510] = INVSLOT_MAINHAND, -- Enchanting: Windsong (mastery)
[104509] = INVSLOT_MAINHAND, -- Enchanting: Windsong (critical strike)
-- Glove
[108788] = INVSLOT_HAND, -- Engineering: Phase Fingers -- NEED CONFIRMATION
[ 96228] = INVSLOT_HAND, -- Engineering: Synapse Springs, Mark II (agility)
[ 96229] = INVSLOT_HAND, -- Engineering: Synapse Springs, Mark II (strength)
[ 96230] = INVSLOT_HAND, -- Engineering: Synapse Springs, Mark II (intellect)
-- Belt
[131459] = INVSLOT_WAIST, -- Engineering: Watergliding Jets
-- Cloak
[126389] = INVSLOT_BACK, -- Engineering: Goblin Glider -- NEED CONFIRMATION
[125488] = INVSLOT_BACK, -- Tailoring: Darkglow Embroidery, rank 3 -- NEED CONFIRMATION
[125487] = INVSLOT_BACK, -- Tailoring: Lightweave Embroidery, rank 3
[125489] = INVSLOT_BACK, -- Tailoring: Swordguard Embroidery, rank 3 -- NEED CONFIRMATION
-- Legendary meta gems
[137593] = INVSLOT_HEAD, -- Indomitable Primal Diamond
[137288] = INVSLOT_HEAD, -- Courageous Primal Diamond
[137596] = INVSLOT_HEAD, -- Capacitive Primal Diamond
[137590] = INVSLOT_HEAD, -- Sinister Primal Diamond
}
-- Anything below this line is generated with the extractor. Editing it is useless.
--== CUT HERE ==--
version = 20180909081722
-- Trinkets
trinkets[ 408] = 32492 -- Kidney Shot (Ashtongue Talisman of Lethality)
trinkets[ 835] = 1404 -- Tidal Charm
trinkets[ 1139] = 5079 -- Cold Eye (Cold Basilisk Eye)
trinkets[ 1943] = 32492 -- Rupture (Ashtongue Talisman of Lethality)
trinkets[ 4079] = 4397 -- Cloaking (Gnomish Cloaking Device)
trinkets[ 5171] = 32492 -- Slice and Dice (Ashtongue Talisman of Lethality)
trinkets[ 10342] = 1490 -- Guardian Effect (Guardian Talisman)
trinkets[ 10368] = 11302 -- Uther's Light Effect (Uther's Strength)
trinkets[ 12438] = { -- Slow Fall
10684, -- Colossal Parachute
18951, -- Evonice's Landin' Pilla
60680, -- S.A.F.E. "Parachute"
}
trinkets[ 12733] = 10418 -- Mithril Insignia (Glimmering Mithril Insignia)
trinkets[ 12766] = 10455 -- Poison Cloud (Chained Essence of Eranikus)
trinkets[ 13183] = 10727 -- Goblin Dragon Gun
trinkets[ 13237] = 10577 -- Goblin Mortar
trinkets[ 13278] = 10645 -- Gnomish Death Ray
trinkets[ 13744] = 2802 -- Blazing Emblem
trinkets[ 14530] = 2820 -- Speed (Nifty Stopwatch)
trinkets[ 15595] = 11810 -- Force of Will
trinkets[ 15601] = 11815 -- Hand of Justice
trinkets[ 15604] = 11819 -- Second Wind
trinkets[ 15646] = 11832 -- Burst of Knowledge
trinkets[ 17275] = 13164 -- Heart of the Scale
trinkets[ 17330] = 13213 -- Poison (Smolderweb's Eye)
trinkets[ 18946] = 14557 -- The Lion Horn of Stormwind
trinkets[ 20587] = 15873 -- Ragged John's Neverending Cup
trinkets[ 21956] = 17759 -- Physical Protection (Mark of Resolution)
trinkets[ 21970] = 17774 -- Mark of the Chosen
trinkets[ 23097] = 18638 -- Fire Reflector (Hyper-Radiant Flame Reflector)
trinkets[ 23131] = 18634 -- Frost Reflector (Gyrofreeze Ice Reflector)
trinkets[ 23132] = 18639 -- Shadow Reflector (Ultra-Flash Shadow Reflector)
trinkets[ 23271] = 18820 -- Ephemeral Power (Talisman of Ephemeral Power)
trinkets[ 23506] = 19024 -- Aura of Protection (Arena Grand Master)
trinkets[ 23684] = 19288 -- Aura of the Blue Dragon (Darkmoon Card: Blue Dragon)
trinkets[ 23720] = 19337 -- Blessing of the Black Book (The Black Book)
trinkets[ 23721] = 19336 -- Arcane Infused (Arcane Infused Gem)
trinkets[ 23723] = 19339 -- Mind Quickening (Mind Quickening Gem)
trinkets[ 23724] = 19340 -- Metamorphosis Rune (Rune of Metamorphosis)
trinkets[ 23725] = 19341 -- Gift of Life (Lifegiving Gem)
trinkets[ 23726] = 19342 -- Venomous Totem
trinkets[ 23733] = 19343 -- Blinding Light (Scrolls of Blinding Light)
trinkets[ 23734] = 19344 -- Nature Aligned (Natural Alignment Crystal)
trinkets[ 23780] = 19345 -- Aegis of Preservation
trinkets[ 23991] = { -- Damage Absorb
20071, -- Talisman of Arathor
20072, -- Defiler's Talisman
}
trinkets[ 24268] = 19930 -- Mar'li's Brain Boost (Mar'li's Eye)
trinkets[ 24347] = 19979 -- Master Angler (Hook of the Master Angler)
trinkets[ 24352] = 19991 -- Devilsaur Fury (Devilsaur Eye)
trinkets[ 24354] = 19990 -- Prayer Beads Blessing (Blessed Prayer Beads)
trinkets[ 24389] = 20036 -- Chaos Fire (Fire Ruby)
trinkets[ 24427] = 20130 -- Diamond Flask
trinkets[ 24610] = 19947 -- Pagle's Broken Reel (Nat Pagle's Broken Reel)
trinkets[ 24865] = 20512 -- Sanctified Orb
trinkets[ 24998] = 20636 -- Healing of the Ages (Hibernation Crystal)
trinkets[ 25746] = { -- Damage Absorb
21115, -- Defiler's Talisman
21117, -- Talisman of Arathor
}
trinkets[ 25747] = { -- Damage Absorb
21116, -- Defiler's Talisman
21118, -- Talisman of Arathor
}
trinkets[ 25750] = { -- Damage Absorb
21119, -- Talisman of Arathor
21120, -- Defiler's Talisman
65286, -- Ancient Seed Casing
}
trinkets[ 25891] = 21180 -- Earthstrike
trinkets[ 26166] = 21473 -- Obsidian Insight (Eye of Moam)
trinkets[ 26168] = 21488 -- Chitinous Spikes (Fetish of Chitinous Spikes)
trinkets[ 26400] = 21647 -- Arcane Shroud (Fetish of the Sand Reaver)
trinkets[ 26467] = 21625 -- Persistent Shield (Scarab Brooch)
trinkets[ 26480] = 21670 -- Badge of the Swarmguard
trinkets[ 26551] = 21748 -- Jade Owl (Figurine - Jade Owl)
trinkets[ 26581] = 21760 -- Truesilver Crab (Figurine - Truesilver Crab)
trinkets[ 26593] = 21763 -- Truesilver Boar (Figurine - Truesilver Boar)
trinkets[ 26599] = 21769 -- Ruby Serpent (Figurine - Ruby Serpent)
trinkets[ 26600] = 21777 -- Emerald Owl (Figurine - Emerald Owl)
trinkets[ 26609] = 21784 -- Black Diamond Crab (Figurine - Black Diamond Crab)
trinkets[ 26614] = 21789 -- Dark Iron Scorpid (Figurine - Dark Iron Scorpid)
trinkets[ 27675] = 22268 -- Chromatic Infusion (Draconic Infused Emblem)
trinkets[ 28200] = 22678 -- Ascendance (Talisman of Ascendance)
trinkets[ 28777] = 23041 -- Slayer's Crest
trinkets[ 28778] = 23042 -- Loatheb's Reflection
trinkets[ 28779] = 23046 -- Essence of Sapphiron (The Restrained Essence of Sapphiron)
trinkets[ 28780] = 23047 -- The Eye of the Dead (Eye of the Dead)
trinkets[ 28862] = 23001 -- The Eye of Diminution (Eye of Diminution)
trinkets[ 28866] = 22954 -- Kiss of the Spider
trinkets[ 29506] = 23558 -- The Burrower's Shell
trinkets[ 29601] = 28727 -- Enlightenment (Pendant of the Violet Eye)
trinkets[ 29602] = 23570 -- Jom Gabbar
trinkets[ 31038] = 24124 -- Felsteel Boar (Figurine - Felsteel Boar)
trinkets[ 31039] = 24125 -- Dawnstone Crab (Figurine - Dawnstone Crab)
trinkets[ 31040] = 24126 -- Living Ruby Serpent (Figurine - Living Ruby Serpent)
trinkets[ 31045] = 24127 -- Talasite Owl (Figurine - Talasite Owl)
trinkets[ 31047] = 24128 -- Nightseye Panther (Figurine - Nightseye Panther)
trinkets[ 31771] = { -- Shell of Deterrence
24376, -- Runed Fungalcap
127184, -- Runed Fungalcap
}
trinkets[ 31794] = 24390 -- Focused Mind (Auslese's Light Channeler)
trinkets[ 32355] = { -- Focused Power
25619, -- Glowing Crystal Insignia
25620, -- Ancient Crystal Talisman
}
trinkets[ 32362] = { -- Burning Hatred
25628, -- Ogre Mauler's Badge
25633, -- Uniting Charm
}
trinkets[ 32367] = 25634 -- Power of Prayer (Oshu'gun Relic)
trinkets[ 32600] = 25787 -- Avoidance (Charm of Alacrity)
trinkets[ 32645] = 32492 -- Envenom (Ashtongue Talisman of Lethality)
trinkets[ 33012] = 26055 -- Consume Essence (Oculus of the Hidden Eye)
trinkets[ 33014] = 27416 -- Consume Life (Fetish of the Fallen)
trinkets[ 33089] = { -- Vigilance of the Colossus
27529, -- Figurine of the Colossus
123992, -- Figurine of the Colossus
}
trinkets[ 33370] = { -- Fungal Frenzy
27683, -- Quagmirran's Eye
127201, -- Quagmirran's Eye
}
trinkets[ 33400] = { -- Accelerated Mending
27828, -- Warp-Scarab Brooch
127245, -- Warp-Scarab Brooch
}
trinkets[ 33479] = 27891 -- Adamantine Shell (Adamantine Figurine)
trinkets[ 33523] = { -- Mark of Vindication
27926, -- Mark of Vindication
27927, -- Mark of Vindication
}
trinkets[ 33649] = { -- Rage of the Unraveller
28034, -- Hourglass of the Unraveller
127441, -- Hourglass of the Unraveller
}
trinkets[ 33662] = 28040 -- Arcane Energy (Vengeance of the Illidari)
trinkets[ 33667] = 28041 -- Ferocity (Bladefist's Breadth)
trinkets[ 33668] = 28042 -- Tenacity (Regal Protectorate)
trinkets[ 33758] = 28109 -- Essence Infused Mushroom
trinkets[ 33807] = 28288 -- Abacus of Violent Odds
trinkets[ 33943] = 32481 -- Travel Form (Charm of Swift Flight)
trinkets[ 34000] = 28223 -- The Arcanist's Stone (Arcanist's Stone)
trinkets[ 34106] = 28121 -- Unyielding Courage (Icon of Unyielding Courage)
trinkets[ 34321] = { -- Call of the Nexus
28418, -- Shiffar's Nexus-Horn
127173, -- Shiffar's Nexus-Horn
}
trinkets[ 34519] = 28528 -- Time's Favor (Moroes' Lucky Pocket Watch)
trinkets[ 34747] = 28789 -- Recurring Power (Eye of Magtheridon)
trinkets[ 34775] = 28830 -- Dragonspine Flurry (Dragonspine Trophy)
trinkets[ 35163] = 29370 -- Blessing of the Silver Crescent (Icon of the Silver Crescent)
trinkets[ 35165] = 29376 -- Essence of the Martyr
trinkets[ 35166] = 29383 -- Lust for Battle (Bloodlust Brooch)
trinkets[ 35337] = { -- Spell Power
29132, -- Scryer's Bloodgem
29179, -- Xi'ri's Gift
}
trinkets[ 35733] = 29776 -- Ancient Power (Core of Ar'kelos)
trinkets[ 36347] = 30293 -- Healing Power (Heavenly Inspiration)
trinkets[ 36372] = 30300 -- Phalanx (Dabiri's Enigma)
trinkets[ 36432] = 30340 -- Spell Power (Starkiller's Bauble)
trinkets[ 37174] = 30450 -- Perceived Weakness (Warp-Spring Coil)
trinkets[ 37198] = 30447 -- Blessing of Righteousness (Tome of Fiery Redemption)
trinkets[ 37243] = 30663 -- Revitalize (Fathom-Brooch of the Tidewalker)
trinkets[ 37508] = 30448 -- Shot Power (Talon of Al'ar)
trinkets[ 37656] = 32496 -- Wisdom (Memento of Tyrande)
trinkets[ 38324] = 30619 -- Regeneration (Fel Reaver's Piston)
trinkets[ 38325] = 30620 -- Regeneration (Spyglass of the Hidden Fleet)
trinkets[ 38332] = 28590 -- Blessing of Life (Ribbon of Sacrifice)
trinkets[ 38348] = 30626 -- Unstable Currents (Sextant of Unstable Currents)
trinkets[ 38351] = 30629 -- Displacement (Scarab of Displacement)
trinkets[ 39200] = 25937 -- Heroism (Terokkar Tablet of Precision)
trinkets[ 39201] = 25936 -- Spell Power (Terokkar Tablet of Vim)
trinkets[ 39228] = 27770 -- Argussian Compass
trinkets[ 39439] = 31856 -- Aura of the Crusader (Darkmoon Card: Crusade)
trinkets[ 39443] = 31857 -- Aura of Wrath (Darkmoon Card: Wrath)
trinkets[ 40120] = 32481 -- Travel Form (Charm of Swift Flight)
trinkets[ 40396] = 32483 -- Fel Infusion (The Skull of Gul'dan)
trinkets[ 40402] = 30665 -- Deep Meditation (Earring of Soulful Meditation)
trinkets[ 40459] = 32485 -- Fire Blood (Ashtongue Talisman of Valor)
trinkets[ 40464] = 32501 -- Protector's Vigor (Shadowmoon Insignia)
trinkets[ 40477] = 32505 -- Forceful Strike (Madness of the Betrayer)
trinkets[ 40480] = 32493 -- Power of the Ashtongue (Ashtongue Talisman of Shadows)
trinkets[ 40483] = 32488 -- Insight of the Ashtongue (Ashtongue Talisman of Insight)
trinkets[ 40487] = 32487 -- Deadly Aim (Ashtongue Talisman of Swiftness)
trinkets[ 40538] = 32534 -- Tenacity (Brooch of the Immortal King)
trinkets[ 40729] = 32658 -- Heightened Reflexes (Badge of Tenacity)
trinkets[ 41261] = 32770 -- Combat Valor (Skyguard Silver Cross)
trinkets[ 41263] = 32771 -- Combat Gallantry (Airman's Ribbon of Gallantry)
trinkets[ 42084] = 30627 -- Fury of the Crashing Waves (Tsunami Talisman)
trinkets[ 43710] = 33828 -- Diabolic Remedy (Tome of Diabolic Remedy)
trinkets[ 43712] = 33829 -- Mojo Madness (Hex Shrunken Head)
trinkets[ 43713] = 33830 -- Hardened Skin (Ancient Aqir Artifact)
trinkets[ 43716] = 33831 -- Call of the Berserker (Berserker's Call)
trinkets[ 44055] = { -- Tremendous Fortitude
33832, -- Battlemaster's Determination
34049, -- Battlemaster's Audacity
34050, -- Battlemaster's Perseverance
34162, -- Battlemaster's Depravity
34163, -- Battlemaster's Cruelty
34576, -- Battlemaster's Cruelty
34577, -- Battlemaster's Depravity
34578, -- Battlemaster's Determination
34579, -- Battlemaster's Audacity
34580, -- Battlemaster's Perseverance
35326, -- Battlemaster's Alacrity
35327, -- Battlemaster's Alacrity
}
trinkets[ 45040] = 34427 -- Battle Trance (Blackened Naaru Sliver)
trinkets[ 45042] = 34429 -- Power Circle (Shifting Naaru Sliver)
trinkets[ 45049] = 34428 -- Tenacity (Steely Naaru Sliver)
trinkets[ 45052] = 34430 -- Evocation (Glimmering Naaru Sliver)
trinkets[ 45053] = { -- Disdain
34472, -- Shard of Contempt
133463, -- Shard of Contempt
}
trinkets[ 45058] = { -- Evasive Maneuvers
34473, -- Commendation of Kael'thas
133464, -- Commendation of Kael'thas
}
trinkets[ 46567] = 23836 -- Rocket Launch (Goblin Rocket Launcher)
trinkets[ 46780] = 35693 -- Empyrean Tortoise (Figurine - Empyrean Tortoise)
trinkets[ 46783] = 35700 -- Crimson Serpent (Figurine - Crimson Serpent)
trinkets[ 46784] = 35702 -- Shadowsong Panther (Figurine - Shadowsong Panther)
trinkets[ 46785] = 35703 -- Seaspray Albatross (Figurine - Seaspray Albatross)
trinkets[ 47215] = 35935 -- Runic Infusion (Infused Coldstone Rune)
trinkets[ 47217] = 35937 -- Foaming Rage (Braxley's Backyard Moonshine)
trinkets[ 47806] = 36871 -- Towering Rage (Fury of the Encroaching Storm)
trinkets[ 47807] = 36872 -- Healing Focus (Mender of the Oncoming Dawn)
trinkets[ 47816] = { -- Spell Power
36874, -- Horn of the Herald
38257, -- Strike of the Seas
}
trinkets[ 48846] = { -- Runic Infusion
37555, -- Warsong's Wrath
38213, -- Harbinger's Wrath
}
trinkets[ 48847] = 37556 -- Precise Strikes (Talisman of the Tundra)
trinkets[ 48848] = 37557 -- Feral Fury (Warsong's Fervor)
trinkets[ 48855] = 37558 -- Healing Purity (Tidal Boon)
trinkets[ 48865] = 37560 -- Perfumed Grace (Vial of Renewal)
trinkets[ 48868] = 37562 -- Skycaller's Swiftness (Fury of the Crimson Drake)
trinkets[ 48875] = { -- Spell Power
38760, -- Mendicant's Charm
38762, -- Insignia of Bloody Fire
}
trinkets[ 49623] = 37835 -- Effervescence (Je'Tze's Bell)
trinkets[ 50261] = 38258 -- Nimble Fingers (Sailor's Knotted Charm)
trinkets[ 50263] = 38259 -- Quickness of the Sailor (First Mate's Pocketwatch)
trinkets[ 50708] = 19992 -- Primal Instinct (Devilsaur Tooth)
trinkets[ 51348] = 38359 -- Venture Company Beatdown! (Goblin Repetition Reducer)
trinkets[ 51952] = 38289 -- Dark Iron Luck (Coren's Lucky Coin)
trinkets[ 51953] = 38290 -- Dark Iron Pipeweed (Dark Iron Smoking Pipe)
trinkets[ 51954] = 38288 -- Hopped Up (Direbrew Hops)
trinkets[ 51955] = 38287 -- Dire Drunkard (Empty Mug of Direbrew)
trinkets[ 51978] = 38080 -- Jormungar Slime (Automated Weapon Coater)
trinkets[ 51985] = 38070 -- Far-Seeing Eyes (Foresight's Anticipation)
trinkets[ 51987] = 38081 -- Arcane Infusion (Scarab of Isanoth)
trinkets[ 52419] = 38674 -- Deflection (Soul Harvester's Charm)
trinkets[ 52424] = 38675 -- Retaliation (Signet of the Dark Brotherhood)
trinkets[ 54092] = 40354 -- Monster Slayer's Kit
trinkets[ 54329] = 40601 -- Argent Dawn Banner
trinkets[ 54418] = 40593 -- Argent Tome Bunny Spawn (Argent Tome)
trinkets[ 54696] = 38212 -- Wracking Pains (Death Knight's Anguish)
trinkets[ 54739] = 37559 -- Star of Light (Serrah's Star)
trinkets[ 54839] = 38071 -- Purified Spirit (Valonforth's Remembrance)
trinkets[ 55018] = 40767 -- Sonic Awareness (Sonic Booster)
trinkets[ 55019] = 40865 -- Sonic Shield (Noise Machine)
trinkets[ 55039] = 41121 -- Gnomish Lightning Generator
trinkets[ 55915] = { -- Tremendous Fortitude
42128, -- Battlemaster's Hostility
42129, -- Battlemaster's Accuracy
42130, -- Battlemaster's Avidity
42131, -- Battlemaster's Conviction
42132, -- Battlemaster's Bravery
}
trinkets[ 56121] = 42341 -- Ruby Hare (Figurine - Ruby Hare)
trinkets[ 56184] = 42395 -- Twilight Serpent (Figurine - Twilight Serpent)
trinkets[ 56186] = 42413 -- Sapphire Owl (Figurine - Sapphire Owl)
trinkets[ 56188] = 42418 -- Emerald Boar (Figurine - Emerald Boar)
trinkets[ 57350] = 42988 -- Illusionary Barrier (Darkmoon Card: Illusion)
trinkets[ 58157] = 30446 -- Solarian's Grace (Solarian's Sapphire)
trinkets[ 58904] = 43573 -- Tears of Anguish (Tears of Bitter Anguish)
trinkets[ 59657] = { -- Argent Valor
44013, -- Cannoneer's Fuselighter
44015, -- Cannoneer's Morale
}
trinkets[ 59658] = 44014 -- Argent Heroism (Fezzik's Pocketwatch)
trinkets[ 59757] = 44063 -- Figurine - Monarch Crab
trinkets[ 59789] = 44074 -- Oracle Ablutions (Oracle Talisman of Ablution)
trinkets[ 59821] = 44073 -- Frenzyheart Fury (Frenzyheart Insignia of Fury)
trinkets[ 60054] = 40683 -- Valor Medal of the First War
trinkets[ 60062] = { -- Essence of Life
40685, -- The Egg of Mortal Essence
49078, -- Ancient Pickled Egg
}
trinkets[ 60064] = 44912 -- Now is the time! (Flow of Knowledge)
trinkets[ 60065] = 44914 -- Reflection of Torment (Anvil of Titans)
trinkets[ 60180] = { -- Resolute
37638, -- Offering of Sacrifice
39292, -- Repelling Charge
}
trinkets[ 60196] = 42989 -- Berserker! (Darkmoon Card: Berserker!)
trinkets[ 60214] = 36993 -- Seal of the Pantheon
trinkets[ 60215] = 37872 -- Lavanthor's Talisman
trinkets[ 60218] = 37220 -- Essence of Gossamer
trinkets[ 60258] = 40372 -- Rune of Repulsion
trinkets[ 60286] = 40257 -- Defender's Code
trinkets[ 60299] = 37723 -- Incisor Fragment
trinkets[ 60302] = { -- Meteorite Whetstone
37390, -- Meteorite Whetstone
127493, -- Meteorite Whetstone
}
trinkets[ 60305] = { -- Heart of a Dragon
37166, -- Sphere of Red Dragon's Blood
127594, -- Sphere of Red Dragon's Blood
}
trinkets[ 60314] = 40431 -- Fury of the Five Flights
trinkets[ 60319] = 40531 -- Mark of Norgannon
trinkets[ 60437] = 40256 -- Grim Toll
trinkets[ 60439] = 39257 -- Loatheb's Shadow
trinkets[ 60471] = 36972 -- Tome of Arcane Phenomena
trinkets[ 60479] = 37660 -- Forge Ember
trinkets[ 60480] = 37873 -- Mark of the War Prisoner
trinkets[ 60486] = 40432 -- Illustration of the Dragon Soul
trinkets[ 60492] = 39229 -- Embrace of the Spider
trinkets[ 60494] = 40255 -- Dying Curse
trinkets[ 60517] = 37734 -- Talisman of Troll Divinity
trinkets[ 60520] = 37657 -- Spark of Life
trinkets[ 60521] = { -- Winged Talisman
37844, -- Winged Talisman
127512, -- Winged Talisman
}
trinkets[ 60525] = 40430 -- Majestic Dragon Figurine
trinkets[ 60527] = 39388 -- Essence Flow (Spirit-World Glass)
trinkets[ 60530] = 40258 -- Forethought Talisman
trinkets[ 60538] = 40382 -- Soul of the Dead
trinkets[ 61426] = 38763 -- Infinite Spirit (Futuresight Rune)
trinkets[ 61427] = 38764 -- Infinite Speed (Rune of Finite Variation)
trinkets[ 61428] = 38765 -- Infinite Power (Rune of Infinite Power)
trinkets[ 61617] = 43837 -- Warm Glow (Softly Glowing Orb)
trinkets[ 61619] = 43838 -- Tentacles (Chuchu's Tiny Box of Horrors)
trinkets[ 61620] = 43836 -- Bleeding Heart (Thorny Rose Brooch)
trinkets[ 61671] = 43829 -- Crusader's Glory (Crusader's Locket)
trinkets[ 61778] = 38761 -- Scything Talons (Talon of Hatred)
trinkets[ 62088] = 39811 -- Infiltrator's Guile (Badge of the Infiltrator)
trinkets[ 63250] = { -- Jouster's Fury
45131, -- Jouster's Fury
45219, -- Jouster's Fury
}
trinkets[ 64524] = 46086 -- Platinum Disks of Battle
trinkets[ 64525] = 46087 -- Platinum Disks of Sorcery
trinkets[ 64527] = 46088 -- Platinum Disks of Swiftness
trinkets[ 64707] = { -- Scale of Fates
45466, -- Scale of Fates
156187, -- Scale of Fates
}
trinkets[ 64712] = { -- Living Flame
45148, -- Living Flame
155947, -- Living Flame
}
trinkets[ 64713] = { -- Flame of the Heavens
45518, -- Flare of the Heavens
156230, -- Flare of the Heavens
}
trinkets[ 64763] = { -- Heart of Iron
45158, -- Heart of Iron
155952, -- Heart of Iron
}
trinkets[ 64765] = { -- The General's Heart
45507, -- The General's Heart
156221, -- The General's Heart
}
trinkets[ 64772] = 45609 -- Comet's Trail
trinkets[ 64790] = { -- Blood of the Old God
45522, -- Blood of the Old God
156234, -- Blood of the Old God
}
trinkets[ 64800] = { -- Wrathstone
45263, -- Wrathstone
156000, -- Wrathstone
}
trinkets[ 64999] = 46051 -- Meteoric Inspiration (Meteorite Crystal)
trinkets[ 65003] = { -- Memories of Love
45929, -- Sif's Remembrance
156308, -- Sif's Remembrance
}
trinkets[ 65004] = { -- Alacrity of the Elements
45866, -- Elemental Focus Stone
156288, -- Elemental Focus Stone
}
trinkets[ 65006] = { -- Eye of the Broodmother
45308, -- Eye of the Broodmother
156036, -- Eye of the Broodmother
}
trinkets[ 65008] = { -- Energy Siphon
45292, -- Energy Siphon
156021, -- Energy Siphon
}
trinkets[ 65011] = { -- Furnace Stone
45313, -- Furnace Stone
156041, -- Furnace Stone
}
trinkets[ 65012] = { -- Royal Seal of King Llane
46021, -- Royal Seal of King Llane
156345, -- Royal Seal of King Llane
}
trinkets[ 65014] = { -- Pyrite Infusion
45286, -- Pyrite Infuser
156016, -- Pyrite Infuser
}
trinkets[ 65019] = { -- Mjolnir Runestone
45931, -- Mjolnir Runestone
156310, -- Mjolnir Runestone
}
trinkets[ 65024] = 46038 -- Implosion (Dark Matter)
trinkets[ 67596] = { -- Tremendous Fortitude
42133, -- Battlemaster's Fury
42134, -- Battlemaster's Precision
42135, -- Battlemaster's Vivacity
42136, -- Battlemaster's Rage
42137, -- Battlemaster's Ruination
}
trinkets[ 67631] = 47216 -- Aegis (The Black Heart)
trinkets[ 67669] = 47213 -- Elusive Power (Abyssal Rune)
trinkets[ 67671] = 47214 -- Fury (Banner of Victory)
trinkets[ 67683] = 48722 -- Celerity (Shard of the Crystal Heart)
trinkets[ 67684] = 48724 -- Hospitality (Talisman of Resurgence)
trinkets[ 67694] = 47735 -- Defensive Tactics (Glyph of Indomitability)
trinkets[ 67695] = 47734 -- Rage (Mark of Supremacy)
trinkets[ 67696] = { -- Energized
47041, -- Solace of the Defeated
47271, -- Solace of the Fallen
}
trinkets[ 67699] = { -- Fortitude
47080, -- Satrina's Impeding Scarab
47290, -- Juggernaut's Vitality
}
trinkets[ 67726] = { -- Escalating Power
47728, -- Binding Light
47880, -- Binding Stone
}
trinkets[ 67728] = { -- Hardening Armor
47727, -- Fervor of the Frostborn
47882, -- Eitrigg's Oath
}
trinkets[ 67738] = { -- Rising Fury
47725, -- Victor's Call
47881, -- Vengeance of the Forsaken
}
trinkets[ 67740] = { -- Escalating Power
47947, -- Binding Light
48019, -- Binding Stone
}
trinkets[ 67742] = { -- Hardening Armor
47949, -- Fervor of the Frostborn
48021, -- Eitrigg's Oath
}
trinkets[ 67747] = { -- Rising Fury
47948, -- Victor's Call
48020, -- Vengeance of the Forsaken
}
trinkets[ 67750] = { -- Energized
47059, -- Solace of the Defeated
47432, -- Solace of the Fallen
}
trinkets[ 67753] = { -- Fortitude
47088, -- Satrina's Impeding Scarab
47451, -- Juggernaut's Vitality
}
trinkets[ 68443] = 49080 -- Drunken Evasiveness (Brawler's Souvenir)
trinkets[ 71396] = 50355 -- Rage of the Fallen (Herkuml War Token)
trinkets[ 71401] = 50342 -- Icy Rage (Whispering Fanged Skull)
trinkets[ 71403] = 50198 -- Fatal Flaws (Needle-Encrusted Scorpion)
trinkets[ 71541] = 50343 -- Icy Rage (Whispering Fanged Skull)
trinkets[ 71569] = 50235 -- Increased Fortitude (Ick's Rotting Thumb)
trinkets[ 71570] = 50340 -- Cultivated Power (Muradin's Spyglass)
trinkets[ 71572] = 50345 -- Cultivated Power (Muradin's Spyglass)
trinkets[ 71575] = 50341 -- Invigorated (Unidentifiable Organ)
trinkets[ 71577] = 50344 -- Invigorated (Unidentifiable Organ)
trinkets[ 71579] = 50357 -- Elusive Power (Maghia's Misguided Quill)
trinkets[ 71584] = 50358 -- Revitalized (Purified Lunar Dust)
trinkets[ 71586] = 50356 -- Hardened Skin (Corroded Skeleton Key)
trinkets[ 71601] = 50353 -- Surge of Power (Dislodged Foreign Object)
trinkets[ 71605] = 50360 -- Siphoned Power (Phylactery of the Nameless Lich)
trinkets[ 71633] = 50352 -- Thick Skin (Corpse Tongue Coin)
trinkets[ 71635] = 50361 -- Aegis of Dalaran (Sindragosa's Flawless Fang)
trinkets[ 71636] = 50365 -- Siphoned Power (Phylactery of the Nameless Lich)
trinkets[ 71638] = 50364 -- Aegis of Dalaran (Sindragosa's Flawless Fang)
trinkets[ 71639] = 50349 -- Thick Skin (Corpse Tongue Coin)
trinkets[ 71644] = 50348 -- Surge of Power (Dislodged Foreign Object)
trinkets[ 73522] = 52351 -- King of Boars (Figurine - King of Boars)
trinkets[ 73549] = 52199 -- Demon Panther (Figurine - Demon Panther)
trinkets[ 73550] = 52352 -- Earthen Guardian (Figurine - Earthen Guardian)
trinkets[ 73551] = 52353 -- Jeweled Serpent (Figurine - Jeweled Serpent)
trinkets[ 73552] = 52354 -- Dream Owl (Figurine - Dream Owl)
trinkets[ 75456] = 54590 -- Piercing Twilight (Sharpened Twilight Scale)
trinkets[ 75458] = 54569 -- Piercing Twilight (Sharpened Twilight Scale)
trinkets[ 75466] = 54572 -- Twilight Flames (Charred Twilight Scale)
trinkets[ 75473] = 54588 -- Twilight Flames (Charred Twilight Scale)
trinkets[ 75477] = 54571 -- Scaly Nimbleness (Petrified Twilight Scale)
trinkets[ 75480] = 54591 -- Scaly Nimbleness (Petrified Twilight Scale)
trinkets[ 75490] = 54573 -- Eyes of Twilight (Glowing Twilight Scale)
trinkets[ 75495] = 54589 -- Eyes of Twilight (Glowing Twilight Scale)
trinkets[ 78830] = 56847 -- Projectile Vomit (Chelsea's Nightmare)
trinkets[ 84212] = 23040 -- Glyph of Deflection
trinkets[ 84213] = 29387 -- Gnome Ingenuity (Gnomeregan Auto-Dodger 600)
trinkets[ 84960] = { -- Tremendous Fortitude
61026, -- Vicious Gladiator's Emblem of Cruelty
61030, -- Vicious Gladiator's Emblem of Proficiency
61031, -- Vicious Gladiator's Emblem of Meditation
61032, -- Vicious Gladiator's Emblem of Tenacity
}
trinkets[ 84966] = 61034 -- Call of Victory (Vicious Gladiator's Badge of Victory)
trinkets[ 84968] = 61035 -- Call of Dominance (Vicious Gladiator's Badge of Dominance)
trinkets[ 84969] = 61033 -- Call of Conquest (Vicious Gladiator's Badge of Conquest)
trinkets[ 85022] = 61047 -- Surge of Conquest (Vicious Gladiator's Insignia of Conquest)
trinkets[ 85027] = 61045 -- Surge of Dominance (Vicious Gladiator's Insignia of Dominance)
trinkets[ 85032] = 61046 -- Surge of Victory (Vicious Gladiator's Insignia of Victory)
trinkets[ 89091] = 62047 -- Volcanic Destruction (Darkmoon Card: Volcano)
trinkets[ 89181] = 62048 -- Mighty Earthquake (Darkmoon Card: Earthquake)
trinkets[ 89182] = 62050 -- Giant Wave (Darkmoon Card: Tsunami)
trinkets[ 90842] = 57346 -- Mindfletcher (Mindfletcher Talisman)
trinkets[ 90847] = { -- Prismatic
59661, -- Pelagic Prism
59664, -- Pelagic Prism
}
trinkets[ 90854] = { -- Visionary
59630, -- Severed Visionary Tentacle
59633, -- Severed Visionary Tentacle
}
trinkets[ 90885] = 55787 -- Witching Hour (Witching Hourglass)
trinkets[ 90887] = 56320 -- Witching Hour (Witching Hourglass)
trinkets[ 90889] = 61429 -- Fury of the Earthen (Insignia of the Earthen Lord)
trinkets[ 90895] = 61411 -- Kiss of Death (Stonemother's Kiss)
trinkets[ 90896] = 55810 -- Tendrils of Darkness (Tendrils of Burrowing Dark)
trinkets[ 90898] = { -- Tendrils of Darkness
56339, -- Tendrils of Burrowing Dark
133216, -- Tendrils of Burrowing Dark
}
trinkets[ 90900] = 63842 -- Focus (World-Queller Focus)
trinkets[ 90953] = 56138 -- Dead Winds (Gale of Shadows)
trinkets[ 90985] = { -- Dead Winds
56462, -- Gale of Shadows
133304, -- Gale of Shadows
}
trinkets[ 90989] = 55889 -- Hymn of Power (Anhuur's Hymnal)
trinkets[ 90992] = 56407 -- Hymn of Power (Anhuur's Hymnal)
trinkets[ 90996] = 55879 -- Crescendo of Suffering (Sorrowsong)
trinkets[ 91002] = { -- Crescendo of Suffering
56400, -- Sorrowsong
133275, -- Sorrowsong
}
trinkets[ 91007] = 59326 -- Dire Magic (Bell of Enraging Resonance)
trinkets[ 91019] = 58183 -- Soul Power (Soul Casket)
trinkets[ 91024] = 59519 -- Revelation (Theralion's Mirror)
trinkets[ 91047] = { -- Battle Magic
62465, -- Stump of Time
62470, -- Stump of Time
}
trinkets[ 91075] = 63839 -- Vengeful Wisp (Harmlight Token)
trinkets[ 91135] = 55256 -- Leviathan (Sea Star)
trinkets[ 91136] = { -- Leviathan
56290, -- Sea Star
133201, -- Sea Star
}
trinkets[ 91138] = 55819 -- Cleansing Tears (Tear of Blood)
trinkets[ 91139] = { -- Cleansing Tears
56351, -- Tear of Blood
133227, -- Tear of Blood
}
trinkets[ 91141] = 55854 -- Anthem (Rainsong)
trinkets[ 91143] = 133252 -- Anthem (Rainsong)
trinkets[ 91147] = 55995 -- Blessing of Isiset (Blood of Isiset)
trinkets[ 91149] = 56414 -- Blessing of Isiset (Blood of Isiset)
trinkets[ 91155] = 58184 -- Expansive Soul (Core of Ripeness)
trinkets[ 91184] = 59500 -- Grounded Soul (Fall of Mortality)
trinkets[ 91192] = { -- Pattern of Light
62467, -- Mandala of Stirring Patterns
62472, -- Mandala of Stirring Patterns
}
trinkets[ 91296] = 56136 -- Egg Shell (Corrupted Egg Shell)
trinkets[ 91308] = { -- Egg Shell
56463, -- Corrupted Egg Shell
133305, -- Corrupted Egg Shell
}
trinkets[ 91336] = 57316 -- Heavy Lifting (Egg-Lift Talisman)
trinkets[ 91338] = 59792 -- Dietary Enhancement (Petrified Spider Crab)
trinkets[ 91340] = { -- Typhoon
56285, -- Might of the Ocean
133197, -- Might of the Ocean
}
trinkets[ 91341] = 66994 -- Typhoon (Soul's Anguish)
trinkets[ 91344] = { -- Battle!
59685, -- Kvaldir Battle Standard
59689, -- Kvaldir Battle Standard
}
trinkets[ 91345] = 61448 -- Favored (Oremantle's Favor)
trinkets[ 91351] = 55814 -- Polarization (Magnetite Mirror)
trinkets[ 91352] = { -- Polarization
56345, -- Magnetite Mirror
133222, -- Magnetite Mirror
}
trinkets[ 91355] = { -- Fatality
63838, -- Shrine-Cleansing Purifier
63841, -- Tank-Commander Insignia
}
trinkets[ 91363] = 55868 -- Heartened (Heart of Solace)
trinkets[ 91364] = { -- Heartened
56393, -- Heart of Solace
133268, -- Heart of Solace
}
trinkets[ 91368] = 56431 -- Eye of Doom (Right Eye of Rajh)
trinkets[ 91370] = 56100 -- Eye of Doom (Right Eye of Rajh)
trinkets[ 91374] = { -- Battle Prowess
56458, -- Mark of Khardros
133300, -- Mark of Khardros
}
trinkets[ 91376] = 56132 -- Battle Prowess (Mark of Khardros)
trinkets[ 91810] = 58180 -- Slayer (License to Slay)
trinkets[ 91816] = 59224 -- Rageheart (Heart of Rage)
trinkets[ 91821] = 59506 -- Race Against Death (Crushing Weight)
trinkets[ 91828] = { -- Thrill of Victory
62464, -- Impatience of Youth
62469, -- Impatience of Youth
}
trinkets[ 92043] = 57325 -- Invigorated (Bileberry Smelling Salts)
trinkets[ 92045] = { -- Power of Focus
59707, -- Wavespeaker's Focus
59710, -- Wavespeaker's Focus
}
trinkets[ 92052] = 66969 -- Herald of Doom (Heart of the Vile)
trinkets[ 92055] = 61462 -- Gear Detected! (Gear Detector)
trinkets[ 92069] = 55795 -- Final Key (Key to the Endless Chamber)
trinkets[ 92071] = { -- Nimble
63840, -- Juju of Nimbleness
63843, -- Blood-Soaked Ale Mug
}
trinkets[ 92085] = 55874 -- Grace (Tia's Grace)
trinkets[ 92087] = 56295 -- Herald of Doom (Grace of the Herald)
trinkets[ 92089] = { -- Grace
56394, -- Tia's Grace
133269, -- Tia's Grace
}
trinkets[ 92091] = { -- Final Key
56328, -- Key to the Endless Chamber
133206, -- Key to the Endless Chamber
}
trinkets[ 92094] = 56427 -- Eye of Vengeance (Left Eye of Rajh)
trinkets[ 92096] = 56102 -- Eye of Vengeance (Left Eye of Rajh)
trinkets[ 92098] = 56115 -- Speed of Thought (Skardyn's Grace)
trinkets[ 92099] = { -- Speed of Thought
56440, -- Skardyn's Grace
133282, -- Skardyn's Grace
}
trinkets[ 92104] = 58181 -- River of Death (Fluid Death)
trinkets[ 92108] = 59520 -- Heedless Carnage (Unheeded Warning)
trinkets[ 92123] = { -- Enigma
62463, -- Unsolvable Riddle
62468, -- Unsolvable Riddle
}
trinkets[ 92124] = 59441 -- Nefarious Plot (Prestor's Talisman of Machination)
trinkets[ 92126] = 59473 -- Twisted (Essence of the Cyclone)
trinkets[ 92162] = 59617 -- Mentally Prepared (Mentalist's Protective Bottle)
trinkets[ 92166] = 65804 -- Hardened Shell (Talisman of Sinister Order)
trinkets[ 92172] = 61433 -- Great Fortitude (Insignia of Diplomacy)
trinkets[ 92174] = { -- Hardened Shell
56280, -- Porcelain Crab
133192, -- Porcelain Crab
}
trinkets[ 92179] = 55816 -- Lead Plating (Leaden Despair)
trinkets[ 92184] = { -- Lead Plating
56347, -- Leaden Despair
133224, -- Leaden Despair
}
trinkets[ 92186] = 55845 -- Amazing Fortitude (Heart of Thunder)
trinkets[ 92187] = { -- Amazing Fortitude
56370, -- Heart of Thunder
133246, -- Heart of Thunder
}
trinkets[ 92188] = { -- Master Tactician
63742, -- Za'brox's Lucky Tooth
63745, -- Za'brox's Lucky Tooth
}
trinkets[ 92199] = 55881 -- Blademaster (Impetuous Query)
trinkets[ 92200] = 133281 -- Blademaster (Impetuous Query)
trinkets[ 92205] = { -- Duelist
56449, -- Throngus's Finger
133291, -- Throngus's Finger
}
trinkets[ 92208] = 56121 -- Duelist (Throngus's Finger)
trinkets[ 92213] = 59515 -- Memory of Invincibility (Vial of Stolen Memories)
trinkets[ 92216] = 64763 -- Surge of Conquest (Bloodthirsty Gladiator's Insignia of Victory)
trinkets[ 92218] = 64762 -- Surge of Dominance (Bloodthirsty Gladiator's Insignia of Dominance)
trinkets[ 92220] = 64761 -- Surge of Conquest (Bloodthirsty Gladiator's Insignia of Conquest)
trinkets[ 92222] = { -- Image of Immortality
62466, -- Mirror of Broken Images
62471, -- Mirror of Broken Images
}
trinkets[ 92223] = { -- Tremendous Fortitude
64740, -- Bloodthirsty Gladiator's Emblem of Cruelty
64741, -- Bloodthirsty Gladiator's Emblem of Meditation
64742, -- Bloodthirsty Gladiator's Emblem of Tenacity
}
trinkets[ 92224] = 64689 -- Call of Victory (Bloodthirsty Gladiator's Badge of Victory)
trinkets[ 92225] = 64688 -- Call of Dominance (Bloodthirsty Gladiator's Badge of Dominance)
trinkets[ 92226] = 64687 -- Call of Conquest (Bloodthirsty Gladiator's Badge of Conquest)
trinkets[ 92233] = 58182 -- Tectonic Shift (Bedrock Talisman)
trinkets[ 92235] = 59332 -- Turn of the Worm (Symbiotic Worm)
trinkets[ 92318] = 65053 -- Dire Magic (Bell of Enraging Resonance)
trinkets[ 92320] = 65105 -- Revelation (Theralion's Mirror)
trinkets[ 92332] = 65124 -- Grounded Soul (Fall of Mortality)
trinkets[ 92342] = 65118 -- Race Against Death (Crushing Weight)
trinkets[ 92345] = 65072 -- Rageheart (Heart of Rage)
trinkets[ 92349] = 65026 -- Nefarious Plot (Prestor's Talisman of Machination)
trinkets[ 92351] = 65140 -- Twisted (Essence of the Cyclone)
trinkets[ 92355] = 65048 -- Turn of the Worm (Symbiotic Worm)
trinkets[ 92357] = 65109 -- Memory of Invincibility (Vial of Stolen Memories)
trinkets[ 93248] = { -- Horn of the Traitor
63632, -- Horn of the Traitor
63633, -- Horn of the Traitor
}
trinkets[ 93740] = 65931 -- Poison Cloud (Essence of Eranikus' Shade)
trinkets[ 93791] = 63241 -- Pilla (Very Soft Pillow)
trinkets[ 95227] = 63192 -- Tosselwrench's Shrinker
trinkets[ 95870] = 66879 -- Lightning in a Bottle (Bottled Lightning)
trinkets[ 95872] = 67101 -- Undying Flames (Unquenchable Flame)
trinkets[ 95874] = 67037 -- Searing Words (Binding Promise)
trinkets[ 95875] = 67118 -- Heartsparked (Electrospark Heartstarter)
trinkets[ 95877] = 67152 -- La-La's Song (Lady La-La's Singing Shell)
trinkets[ 95879] = 62978 -- Devourer's Stomach
trinkets[ 95880] = 62966 -- Emissary's Watch
trinkets[ 95881] = 62984 -- Omarion's Gift
trinkets[ 95882] = 62995 -- Underlord's Mandible
trinkets[ 96908] = 68926 -- Victory (Jaws of Defeat)
trinkets[ 96911] = 68927 -- Devour (The Hungerer)
trinkets[ 96945] = 68981 -- Loom of Fate (Spidersilk Spindle)
trinkets[ 96962] = 68982 -- Soul Fragment (Necromantic Focus)
trinkets[ 96980] = 68995 -- Accelerated (Vessel of Acceleration)
trinkets[ 96988] = 68996 -- Stay of Execution
trinkets[ 97007] = 68998 -- Mark of the Firelord (Rune of Zeth)
trinkets[ 97008] = 69000 -- Fiery Quintessence
trinkets[ 97009] = 69001 -- Ancient Petrified Seed
trinkets[ 97010] = 69002 -- Essence of the Eternal Flame
trinkets[ 97121] = 69111 -- Victory (Jaws of Defeat)
trinkets[ 97125] = 69112 -- Devour (The Hungerer)
trinkets[ 97129] = 69138 -- Loom of Fate (Spidersilk Spindle)
trinkets[ 97131] = 69139 -- Soul Fragment (Necromantic Focus)
trinkets[ 97142] = 69167 -- Accelerated (Vessel of Acceleration)
trinkets[ 99711] = 70517 -- Call of Conquest (Vicious Gladiator's Badge of Conquest)
trinkets[ 99712] = 70518 -- Call of Dominance (Vicious Gladiator's Badge of Dominance)
trinkets[ 99713] = 70519 -- Call of Victory (Vicious Gladiator's Badge of Victory)
trinkets[ 99714] = { -- Tremendous Fortitude
70563, -- Vicious Gladiator's Emblem of Cruelty
70564, -- Vicious Gladiator's Emblem of Meditation
70565, -- Vicious Gladiator's Emblem of Tenacity
}
trinkets[ 99717] = 70577 -- Surge of Conquest (Vicious Gladiator's Insignia of Conquest)
trinkets[ 99719] = 70578 -- Surge of Dominance (Vicious Gladiator's Insignia of Dominance)
trinkets[ 99721] = 70579 -- Surge of Victory (Vicious Gladiator's Insignia of Victory)
trinkets[ 99737] = { -- Tremendous Fortitude
70396, -- Ruthless Gladiator's Emblem of Cruelty
70397, -- Ruthless Gladiator's Emblem of Meditation
70398, -- Ruthless Gladiator's Emblem of Tenacity
}
trinkets[ 99739] = 70399 -- Call of Conquest (Ruthless Gladiator's Badge of Conquest)
trinkets[ 99740] = 70400 -- Call of Victory (Ruthless Gladiator's Badge of Victory)
trinkets[ 99741] = 70401 -- Call of Dominance (Ruthless Gladiator's Badge of Dominance)
trinkets[ 99742] = 70402 -- Surge of Dominance (Ruthless Gladiator's Insignia of Dominance)
trinkets[ 99746] = 70403 -- Surge of Victory (Ruthless Gladiator's Insignia of Victory)
trinkets[ 99748] = 70404 -- Surge of Conquest (Ruthless Gladiator's Insignia of Conquest)
trinkets[100309] = 70141 -- Pumped Up Aura (Dwyer's Caber)
trinkets[100612] = 70142 -- Summon Moonwell (Moonwell Chalice)
trinkets[101287] = 71335 -- Reflection of Torment (Coren's Chilled Chromium Coaster)
trinkets[101289] = 71336 -- Essence of Life (Petrified Pickled Egg)
trinkets[101291] = 71337 -- Now is the time! (Mithril Stopwatch)
trinkets[101293] = 71338 -- Drunken Evasiveness (Brawler's Trophy)
trinkets[101492] = 70143 -- Summon Splashing Waters (Moonwell Phial)
trinkets[102432] = 72455 -- Surge of Victory (Ruthless Gladiator's Insignia of Victory)
trinkets[102434] = 72450 -- Call of Victory (Ruthless Gladiator's Badge of Victory)
trinkets[102435] = 72449 -- Surge of Dominance (Ruthless Gladiator's Insignia of Dominance)
trinkets[102437] = 72448 -- Call of Dominance (Ruthless Gladiator's Badge of Dominance)
trinkets[102438] = { -- Tremendous Fortitude
72359, -- Ruthless Gladiator's Emblem of Cruelty
72360, -- Ruthless Gladiator's Emblem of Tenacity
72361, -- Ruthless Gladiator's Emblem of Meditation
}
trinkets[102439] = 72309 -- Surge of Conquest (Ruthless Gladiator's Insignia of Conquest)
trinkets[102441] = 72304 -- Call of Conquest (Ruthless Gladiator's Badge of Conquest)
trinkets[102659] = { -- Arrow of Time
72897, -- Arrow of Time
133420, -- Arrow of Time
}
trinkets[102667] = 72900 -- Veil of Lies
trinkets[102740] = { -- Strength of Courage
73062, -- Zealous Idol of Battle
73155, -- Ebonsoul Idol of Battle
73165, -- Valiant Idol of Battle
}
trinkets[102741] = { -- Avoidance of the Snake
73060, -- Zealous Defender's Idol
73157, -- Ebonsoul Defender's Idol
73167, -- Valiant Defender's Idol
88636, -- Monastic Defender's Idol
}
trinkets[102742] = { -- Mastery of Nimbleness
73042, -- Zealous Defender's Stone
73061, -- Zealous Stone of Battle
73067, -- Wildsoul Stone of Rage
73121, -- Shadowstalking Stone of Rage
73135, -- Stormbinder Stone of Rage
73150, -- Beastsoul Stone of Rage
73154, -- Ebonsoul Stone of Battle
73160, -- Ebonsoul Defender's Stone
73164, -- Valiant Stone of Battle
73170, -- Valiant Defender's Stone
88634, -- Monastic Defender's Stone
88639, -- Monastic Stone of Rage
}
trinkets[102744] = { -- Haste of the Mongoose
73065, -- Wildsoul Stone of Destruction
73101, -- Magesoul Stone of Destruction
73106, -- Dreadsoul Stone of Destruction
73116, -- Seraphic Stone of Destruction
73140, -- Stormbinder Stone of Destruction
}
trinkets[102746] = { -- Spirit of Wisdom
73063, -- Zealous Idol of Wisdom
73114, -- Seraphic Idol of Wisdom
73129, -- Wildsoul Idol of Wisdom
73142, -- Stormbinder Idol of Wisdom
88647, -- Monastic Idol of Wisdom
}
trinkets[102747] = { -- Agility of the Tiger
73068, -- Wildsoul Idol of Rage
73124, -- Shadowstalking Idol of Rage
73132, -- Stormbinder Idol of Rage
73147, -- Beastsoul Idol of Rage
88642, -- Monastic Idol of Rage
}
trinkets[102748] = { -- Intellect of the Sage
73066, -- Wildsoul Idol of Destruction
73104, -- Magesoul Idol of Destruction
73109, -- Dreadsoul Idol of Destruction
73119, -- Seraphic Idol of Destruction
73137, -- Stormbinder Idol of Destruction
}
trinkets[105132] = 73648 -- Call of Conquest (Cataclysmic Gladiator's Badge of Conquest)
trinkets[105133] = 73496 -- Call of Victory (Cataclysmic Gladiator's Badge of Victory)
trinkets[105134] = 73498 -- Call of Dominance (Cataclysmic Gladiator's Badge of Dominance)
trinkets[105135] = 73643 -- Surge of Conquest (Cataclysmic Gladiator's Insignia of Conquest)
trinkets[105137] = 73497 -- Surge of Dominance (Cataclysmic Gladiator's Insignia of Dominance)
trinkets[105139] = 73491 -- Surge of Victory (Cataclysmic Gladiator's Insignia of Victory)
trinkets[105144] = { -- Tremendous Fortitude
73591, -- Cataclysmic Gladiator's Emblem of Meditation
73592, -- Cataclysmic Gladiator's Emblem of Tenacity
73593, -- Cataclysmic Gladiator's Emblem of Cruelty
}
trinkets[107947] = 77113 -- Agile (Kiroptyric Sigil)
trinkets[107948] = { -- Ultimate Power
77114, -- Bottled Wishes
77115, -- Reflection of the Light
}
trinkets[107949] = 77116 -- Titanic Strength (Rotting Skull)
trinkets[107951] = 77117 -- Elusive (Fire of the Deep)
trinkets[107960] = 77197 -- Combat Trance (Wrath of Unchaining)
trinkets[107962] = 77199 -- Expansive Mind (Heart of Unliving)
trinkets[107966] = 77200 -- Titanic Strength (Eye of Unmaking)
trinkets[107968] = 77201 -- Preternatural Evasion (Resolve of Undying)
trinkets[107970] = 77198 -- Combat Mind (Will of Unbinding)
trinkets[107982] = 77204 -- Velocity (Seal of the Seven Signs)
trinkets[107986] = 77206 -- Master Tactician (Soulshifter Vortex)
trinkets[107988] = 77205 -- Find Weakness (Creche of the Final Dragon)
trinkets[109709] = 77973 -- Velocity (Starcatcher Compass)
trinkets[109711] = 77993 -- Velocity (Starcatcher Compass)
trinkets[109714] = 133537 -- Agile (Kiroptyric Sigil)
trinkets[109717] = 77974 -- Combat Trance (Wrath of Unchaining)
trinkets[109719] = 77994 -- Combat Trance (Wrath of Unchaining)
trinkets[109742] = 77972 -- Find Weakness (Creche of the Final Dragon)
trinkets[109744] = 77992 -- Find Weakness (Creche of the Final Dragon)
trinkets[109746] = 133540 -- Titanic Strength (Rotting Skull)
trinkets[109748] = 77977 -- Titanic Strength (Eye of Unmaking)
trinkets[109750] = 77997 -- Titanic Strength (Eye of Unmaking)
trinkets[109774] = 77970 -- Master Tactician (Soulshifter Vortex)
trinkets[109776] = 77990 -- Master Tactician (Soulshifter Vortex)
trinkets[109778] = 133541 -- Elusive (Fire of the Deep)
trinkets[109780] = 77978 -- Preternatural Evasion (Resolve of Undying)
trinkets[109782] = 77998 -- Preternatural Evasion (Resolve of Undying)
trinkets[109787] = 77971 -- Velocity (Insignia of the Corrupted Mind)
trinkets[109789] = 77991 -- Velocity (Insignia of the Corrupted Mind)
trinkets[109791] = { -- Ultimate Power
133538, -- Bottled Wishes
133539, -- Reflection of the Light
}
trinkets[109793] = 77975 -- Combat Mind (Will of Unbinding)
trinkets[109795] = 77995 -- Combat Mind (Will of Unbinding)
trinkets[109802] = 77969 -- Velocity (Seal of the Seven Signs)
trinkets[109804] = 77989 -- Velocity (Seal of the Seven Signs)
trinkets[109811] = 77976 -- Expansive Mind (Heart of Unliving)
trinkets[109813] = 77996 -- Expansive Mind (Heart of Unliving)
trinkets[109993] = 74035 -- Master Pit Fighter
trinkets[109994] = 74034 -- Pit Fighter
trinkets[117642] = 80773 -- Singing Cricket Medallion
trinkets[117643] = 80774 -- Grove Viper Medallion
trinkets[117644] = 80775 -- Coral Adder Medallion
trinkets[117645] = 80776 -- Flamelager Medallion
trinkets[117646] = 80777 -- Amberfly Idol
trinkets[117647] = 80778 -- Silkbead Emblem (Silkbead Idol)
trinkets[117648] = 80779 -- Mirror Strider Emblem
trinkets[117649] = 80780 -- Greenpaw Idol
trinkets[117650] = 80781 -- Shoots of Life