forked from mdX7/PrintQuests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrackingQuests.lua
More file actions
2627 lines (2482 loc) · 167 KB
/
Copy pathTrackingQuests.lua
File metadata and controls
2627 lines (2482 loc) · 167 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
PrintQuests.UnsurelyNamedTrackingQuests = {
[83281] = "Weaver Weekly turnin???",
[86931] = "Weaver Weekly turnin / Bronze Celebration Tokens on first weekly turnin?",
[81602] = "Severed Threads - The General: Reached Crony (2/8) reputation",
[81626] = "Severed Threads - The General: Reached Crony (2/8) reputation",
[81598] = "Severed Threads - The Weaver: Reached Crony (2/8) reputation",
[81627] = "Severed Threads - The Weaver: Reached Crony (2/8) reputation",
[80415] = "First War Supply Chest looted 1/2? (daily/weekly?)",
[80416] = "First War Supply Chest looted 2/2? (daily/weekly?)",
[84873] = "Siren Isle Rare: Kill X Rares?",
[85714] = "Siren Isle: Rune-Sealed Coffer solved (in Stormtide Dregs)?",
[86171] = "Siren Isle: Rune-Sealed Coffer looted (in Stormtide Dregs)?",
[85723] = "Anniversary Worldboss: First Worldboss kill of day/week? Azuregos/Doomwalker",
[85168] = "Anniversary Worldboss: Second Worldboss kill of day/week? Lord Kazzak",
[84614] = "Khaz Algar Worldboss killed? Aggregation of Horrors",
[83280] = "Related to Spark of Omens, weekly",
[84819] = "Looting Zekvir Hulking Raptorial Claw in Waterworks Tier 8",
[84818] = "Looting Zekvir Hulking Raptorial Claw in Kriegval's Rest Tier 8",
[86325] = "Zekvirs Lair kill?",
[86873] = "Sidestreet Sluice Tier 11 (Overcharged, Bountiful) clear + finished Delvers Journey Season 2?",
[85463] = "Renown: The Cartels of Undermine Level 2",
[87286] = "Looted Delve Nemesis Cache (weekly?)",
[85395] = "Fractured Spark of Fortunes related 5/x?",
[90134] = "Pristine Mysterious Satchel? mail feet? epic item? Fortuitous Satchel?",
[90752] = "First daily Bottle of Mysterious Wisdom attempt",
[87510] = "Dastardly Duos: First completion? (account)",
[90775] = "Dastardly Duos: Awarded after turning in Who are the Dastardly Duos (86503) (account)",
[87527] = "Dastardly Duos: Gained after getting Duos Underdog achievement (account)",
[87381] = "Horrific Visions Revisited: On completion (weekly)",
[88906] = "Horrific Visions Revisited: On completion (weekly)",
[87387] = "Horrific Visions Revisited: Stormwind full clear: Veteran vendor unlock?",
[88907] = "Horrific Visions Revisited: Stormwind full clear: Long Night Mask dropped?",
[87427] = "Horrific Visions Revisited: Mage District / Valley of Wisdom clear",
[87389] = "Horrific Visions Revisited: Stormwind 2nd full clear?",
[88905] = "Horrific Visions Revisited: Stormwind 2nd full clear?",
[87382] = "Horrific Visions Revisited: Full clear with 1 mask",
[88908] = "Horrific Visions Revisited: Full clear with 1 mask",
[87383] = "Horrific Visions Revisited: Full clear with 2 masks",
[88909] = "Horrific Visions Revisited: Full clear with 2 masks",
[87384] = "Horrific Visions Revisited: Full clear with 3 masks",
[88910] = "Horrific Visions Revisited: Full clear with 3 masks",
[87385] = "Horrific Visions Revisited: Full clear with 4 masks",
[88911] = "Horrific Visions Revisited: Full clear with 4 masks",
[87386] = "Horrific Visions Revisited: Full clear with 5 masks",
[88912] = "Horrific Visions Revisited: Full clear with 5 masks",
[92626] = "After turning in The Shadowguard Shattered (84967)",
[91812] = "Completed after rewarding The Tabiqa (84910) (accwide)",
[92032] = "Related to entering Manaforge Omega or auto accept of Meet the Vandals (92031)",
[92033] = "Related to entering Manaforge Omega or auto accept of Meet the Vandals (92031)",
[92835] = "After triggering Obelisk to spawn Challenger in Normal World Tier",
[48064] = "Tomb of Sargeras: Goroth Intro?",
[47195] = "Stormheim Legion Assault finished? First Assault finished?",
[91962] = "Legion Remix: Entered Infinite Bazaar platform in Dalaran? (character)",
[93033] = "Legion Remix: Entered Infinite Bazaar platform in Dalaran? (account)",
[47661] = "Broken Shore: Entered zone? 1/2",
[47699] = "Broken Shore: Entered zone? 2/2",
[45405] = "Suramar Insurrection: Turned in Breaching the Sanctum (44719)",
[43144] = "Suramar Building an Army: Looted Spellmask of Alla'onus 1/2",
[43128] = "Suramar Building an Army: Looted Spellmask of Alla'onus 2/2",
[90787] = "First time interaction with Legion Obelisk (character)",
[46775] = "Legionfall Campaign: Turned in Champions of Legionfall",
[92857] = "After killing small Infernal of End Times / Looting Pamphlet / First Infernal / First Pamphlet",
[93817] = "Enable Midnight (12.0) intro skip?",
[92714] = "Achievement: Echoes of Midnight, triggered by Flag Midnight Promotional spell",
[82772] = "After completing Tier 1/Tier11 Midnight delve 1/3, first delve of the week? (daily, account)",
[85719] = "After completing Tier 1/Tier11 Midnight delve 2/3, first delve of the week? (daily, account)",
[92087] = "After completing The Shadow Enclave Tier 1 while on Void Walk With Me quest 3/3",
[89196] = "Selecting Midnight questzone (rewarded on selecting Adventure Map quest, revert on turning that in)",
[92088] = "After completing The Gulf of Memory Tier 1 while on Down the Rootways quest",
[90806] = "Completed Midnight Main Campaign / Unlocked WQs?",
[75754] = "Seen story so far on Midnight Launch?",
[88770] = "Abundance unlock / finished Tutorial?",
[91432] = "Abundance: Started Abundant Harvest in Watha'nan Crypts / Eversong Woods?",
[94426] = "Abundance: Finished Abundant Harvest in Watha'nan Crypts / Eversong Woods?",
[94410] = "Pinnacle Cache containing Adventurer equipment looted?",
[93168] = "Prey Normal: Turned in 1/x?",
[93872] = "Prey Normal/Nightmare: Eversong Woods/Harandar turned in 1st of week? Wing of Akil'zon, Champion Chest 1/2 (weekly)",
[93170] = "Prey Normal/Nightmare: Eversong Woods/Harandar turned in 1st of week? Wing of Akil'zon, Champion Chest 2/2 (weekly)",
[91414] = "Prey Hard: Selected random (Consul Nebulor)?",
[93861] = "Prey Hard/Nightmare: Harandar/Zul'Aman/Voidspire turned in 2nd of week? Lieutenant Blazewing, Champion Chest 1/2",
[93873] = "Prey Hard/Nightmare: Harandar/Zul'Aman/Voidspire turned in 2nd of week? Lieutenant Blazewing, Champion Chest 2/2",
[93863] = "Prey Hard/Nightmare: Zul'Aman turned in? 3rd of week? Executor Kaenius 1/2",
[93874] = "Prey Hard/Nightmare: Zul'Aman finished? 3rd of week? Executor Kaenius 2/2 (weekly)",
[93875] = "Prey Hard/Nightmare: Voidstorm/Eversong Woods turned in? 4th of week? Knight-Errant Bloodshatter 1/2 (weekly)",
[93864] = "Prey Hard/Nightmare: Voidstorm/Eversong Woods turned in? 4th of week? Knight-Errant Bloodshatter 2/2",
[93275] = "Received Spark of Radiance from Lady Liadrin (weekly?)",
[92710] = "Bought Deed of Patronage (Housing endeavor) See item 253802",
[95535] = "Voidspire Boss: Normal Crown of the Cosmos killed 1/3",
[95536] = "Voidspire Boss: Normal Crown of the Cosmos killed 2/3 (weekly)",
[95537] = "Voidspire Boss: Normal Crown of the Cosmos killed 3/3 (weekly)",
[93789] = "Opened Apex Cache 1/x",
--- can't find them with renown 8
[92301] = "Harandar - Dust 'Em Off: Luminous Dust #25 (Renown 1) (42/27)",
[92300] = "Harandar - Dust 'Em Off: Luminous Dust #30 (Renown 1) (40/34)",
[92302] = "Harandar - Dust 'Em Off: Luminous Dust #56 (Renown 1) (51/41)",
[92306] = "Harandar - Dust 'Em Off: Luminous Dust #86 (Renown 1) (68/69)",
}
PrintQuests.ConfidentlyNamedTrackingQuests = {
-----------------------------------------------------------------------------------------------------------------------
-- Darkmoon Faire
[29484] = "Darkmoon Faire: Cooking - Putting the Crunch in the Frog",
[29466] = "Darkmoon Faire: Fishing - Spoilin' for Salty Sea Dogs",
[29467] = "Darkmoon Faire: Engineering - Talkin' Tonks",
[29469] = "Darkmoon Faire: Mining - Rearm, Reuse, Recycle",
-----------------------------------------------------------------------------------------------------------------------
-- Love is in the Air
[74957] = "Love is in the Air: Increased X-45 Heartbreaker Droprate (daily, accwide)",
[79104] = "Love is in the Air: Renewed Proto-Drake: Love Armor Droprate (daily, accwide)",
[86172] = "Love is in the Air: Increased Love Witch's Sweeper Droprate (daily, accwide)",
[86726] = "Love is in the Air: Ensemble: Ornaments of the Spring Butterfly",
[94766] = "Love is in the Air: Increased Spring Butterfly Droprate (daily, accwide)",
-----------------------------------------------------------------------------------------------------------------------
-- Lunar Festival
[86421] = "Ensemble: Ornate Violet Lunar Festival Attire",
-----------------------------------------------------------------------------------------------------------------------
-- Midsummer
[83134] = "Midsummer: cosmetic weapon drop rate from Satchel of Chilled Goods (daily, account)",
[97111] = "Midsummer: Sun Festival's Painted Roc drop attempt from Satchel of Chilled Goods (daily, account)",
[97116] = "Midsummer: Sun Festival's cosmetic drop attempt from Satchel of Chilled Goods (daily, account)",
-----------------------------------------------------------------------------------------------------------------------
-- Timewalking
[78204] = "Turbulent Timeways: Have 5 stacks of Mastery of Timeways",
[85877] = "Turbulent Timeways II: Have 5 stacks of Mastery of Timeways",
[89211] = "Turbulent Timeways III: Have 5 stacks of Mastery of Timeways",
------------------------------------------------------------------------------------------------------------------------
-- Greedy Emissary
[91079] = "Greedy Emissary: Opened Hellcaller Chest 1/10 (weekly, account)",
[91080] = "Greedy Emissary: Opened Hellcaller Chest 2/10 (weekly, account)",
[91081] = "Greedy Emissary: Opened Hellcaller Chest 3/10 (weekly, account)",
[91082] = "Greedy Emissary: Opened Hellcaller Chest 4/10 (weekly, account)",
[91083] = "Greedy Emissary: Opened Hellcaller Chest 5/10 (weekly, account)",
[91166] = "Greedy Emissary: Opened Hellcaller Chest 6/10 (weekly, account)",
[91167] = "Greedy Emissary: Opened Hellcaller Chest 7/10 (weekly, account)",
[91168] = "Greedy Emissary: Opened Hellcaller Chest 8/10 (weekly, account)",
[91169] = "Greedy Emissary: Opened Hellcaller Chest 9/10 (weekly, account)",
[91170] = "Greedy Emissary: Opened Hellcaller Chest 10/10 (weekly, account)",
[91091] = "Greedy Emissary: Looted Blood-Wrapped Treasure Bag",
[91092] = "Greedy Emissary: Looted Treasure Nabbin' Bag",
[76215] = "Greedy Emissary: Killed Treasure Goblin, daily",
[76216] = "Greedy Emissary: Tyraels Charger Bonus Loot / first Goblin kill, daily",
------------------------------------------------------------------------------------------------------------------------
-- Dastardly Duos
[90459] = "Dastardly Duos: Podium Upgrade: Scrappiest",
[90460] = "Dastardly Duos: Podium Upgrade: Longest Survival Run",
[90461] = "Dastardly Duos: Podium Upgrade: Longest Time in Spotlights",
[90462] = "Dastardly Duos: Podium Upgrade: Most Yards Traveled",
[90463] = "Dastardly Duos: Podium Upgrade: Scrappy",
[90464] = "Dastardly Duos: Podium Upgrade: Current Survival Run Length",
[90465] = "Dastardly Duos: Podium Upgrade: Time in Spotlight Last Game",
[90466] = "Dastardly Duos: Podium Upgrade: Yards Moved Last Game",
------------------------------------------------------------------------------------------------------------------------
-- Winds of Mysterious Fortune event
[86695] = "First daily Pristine Mysterious Satchel",
-----------------------------------------------------------------------------------------------------------------------
-- Pepe
[43695] = "Pepe: Used A Tiny Pair of Goggles (The Tangerine Traveler)",
-----------------------------------------------------------------------------------------------------------------------
-- Pandaria Intro
[37186] = "The Art of War",
[37193] = "The King's Command",
-----------------------------------------------------------------------------------------------------------------------
-- Legion Intro
[44659] = "Skip the Legion Introductory quests",
-----------------------------------------------------------------------------------------------------------------------
-- Artifacts
[40781] = "Druid: Balance chosed 1st",
[43977] = "Druid: Guardian chosen 2nd",
[44433] = "Druid: Feral chosen 3rd",
[44326] = "Druid Hidden Artifact Appearance: Daily Dreamway Event Roll",
[44328] = "Druid Hidden Artifact Appearance: Hinterlands - Owlcat Stone active",
[44327] = "Druid Hidden Artifact Appearance: Feralas - Owlcat Stone active",
-----------------------------------------------------------------------------------------------------------------------
-- Stormheim
[44508] = "Stormheim Worldboss: Nithogg killed",
[38774] = "Stormheim Rare: Tiptog the Lost killed",
[40081] = "Stormheim Rare: Tarben killed",
[38626] = "Stormheim Rare: Bloodstalker Alpha killed",
[40093] = "Stormheim Small Treasure Chest: Tideskorn Harbor",
[40091] = "Stormheim Small Treasure Chest: Skold-Ashil",
[40095] = "Stormheim Treasure Chest: Hellmouth Shallows, underwater",
[43195] = "Stormheim Treasure Chest: Gloomshore",
[38763] = "Stormheim Glimmering Treasure Chest: Terrace of the Watchers",
[40108] = "Stormheim Glimmering Treasure Chest: Watchman's Rock",
[43350] = "Halls of Valor: Securing the Aegis (40072) turnin",
-----------------------------------------------------------------------------------------------------------------------
-- Highmountain
[44504] = "Highmountain Worldboss: Flotsam killed",
[40681] = "Highmountain Rare: Sekhan killed",
[39465] = "Highmountain Rare: Skullhat killed",
[39806] = "Highmountain Rare: Crawshuk the Hungry killed",
[39646] = "Highmountain Rare: Majestic Elderhorn killed",
[39762] = "Highmountain Rare: Shara Felbreath killed",
[40242] = "Highmountain Rare: Mellok, Son of Torok killed",
[39994] = "Highmountain Rare: Crab Rider Grmlrml killed",
[40096] = "Highmountain Rare: Mrrklr killed",
[40405] = "Highmountain Rare: Bristlemaul killed",
[40347] = "Highmountain Rare: Gurbog da Basher killed",
[44503] = "Highmountain Rare: Drugon the Frostblood killed",
[40414] = "Highmountain Rare: Devouring Darkness killed",
[40487] = "Highmountain Small Treasure Chest: Skyhorn",
[40471] = "Highmountain Treasure Chest: Hall of Chieftains, underwater",
[40479] = "Highmountain Treasure Chest: The Witchwood",
[40496] = "Highmountain Treasure Chest: Rockcrawler Chasm",
[42453] = "Highmountain Treasure Chest: Understone Breach",
[40476] = "Highmountain Glimmering Treasure Chest: Lifespring Cavern",
-----------------------------------------------------------------------------------------------------------------------
-- Val'sharah
[44509] = "Val'sharah Worldboss: Shar'thos killed",
[39121] = "Val'sharah Rare: Kiranys Duskwhisper killed",
[93243] = "Val'sharah Rare: Thondrax killed",
[38772] = "Val'sharah Rare: Theryssia killed",
[38893] = "Val'sharah Small Treasure Chest: The Undergorge",
[39079] = "Val'sharah Small Treasure Chest: Heathrow Manor",
[38386] = "Val'sharah Small Treasure Chest: Shadowfen",
[38369] = "Val'sharah Small Treasure Chest: Black Rook Hold",
[39087] = "Val'sharah Small Treasure Chest: Moonclaw Vale ",
[39084] = "Val'sharah Treasure Chest: Black Rook Hold",
[38781] = "Val'sharah Treasure Chest: Andu'talah in a cave",
-----------------------------------------------------------------------------------------------------------------------
-- Azsuna
[44506] = "Azsuna Worldboss: Levantus killed",
[44502] = "Azsuna Worldboss: Calamir killed",
[37537] = "Azsuna Rare: Ravyn-Drath killed",
[42221] = "Azsuna Rare: Chief Bitterbrine killed",
[38217] = "Azsuna Rare: Tide Behemoth killed",
[37989] = "Azsuna Rare: Syphonus killed",
[42376] = "Azsuna Rare: Inquisitor Tivos killed",
[37831] = "Azsuna Small Treasure Chest: El'dranil Shallows, in murloc tent",
[42281] = "Azsuna Small Treasure Chest: El'dranil Shallows",
[37596] = "Azsuna Small Treasure Chest: El'dranil Shallows",
[42287] = "Azsuna Small Treasure Chest: El'dranil Shallows, underwater",
[42284] = "Azsuna Small Treasure Chest: Nar'thalas Academy",
[42958] = "Azsuna Small Treasure Chest: Felblaze Ingress, in tree",
[40752] = "Azsuna Small Treasure Chest: Garden of Elune",
[38365] = "Azsuna Disupted Treasure: Old Coast Path",
-----------------------------------------------------------------------------------------------------------------------
-- Suramar
[44507] = "Suramar Worldboss: Na'zak the Fiend killed",
[44501] = "Suramar Worldboss: Ana-Mouz killed",
[43846] = "Suramar Small Treasure Chest: Feathermane Hunting Grounds",
[43835] = "Suramar Small Treasure Chest: The Fel Breach",
[43854] = "Suramar Small Treasure Chest: Inside Tel'anor Cave",
[43834] = "Suramar Treasure Chest: The Lightbreaker",
[43850] = "Suramar Treasure Chest: Cliffclutch Roost",
[43863] = "Suramar Treasure Chest: Azuregale Bale (in a cave)",
[43747] = "Suramar Shimmering Ancient Mana Cluster: Falanaar Tunnels",
[43743] = "Suramar Shimmering Ancient Mana Cluster: Elor'shan",
[44678] = "Suramar Ancient Mana Shard: Meredil",
[42742] = "Suramar Kel'danath's Manaflask used: +100 Ancient Mana max",
[43986] = "Suramar Enchanted Burial Urn used: +100 Ancient Mana max",
[43495] = "Suramar Rare: Cadraeus killed",
[43580] = "Suramar Rare: Apothecary Faldren killed",
[43603] = "Suramar Rare: Randril killed",
[43481] = "Suramar Rare: Arcanist Lylandre killed",
[43449] = "Suramar Rare: Oreth the Vile killed",
[43351] = "Suramar Rare: Mal'Dreth the Corruptor killed",
[43954] = "Suramar Rare: Anax killed",
[43794] = "Suramar Rare: Ambassador D'vwinn killed",
[43793] = "Suramar Rare: Miasu killed",
[43795] = "Suramar: Rovendros freed in Teloth'aran",
[43141] = "Suramar Building an Army: Looted Leyline Broodling",
[43143] = "Suramar Building an Army: Looted Ancient Mana Basin",
[93121] = "Suramar Building an Army: Built a Heroic Army (Heroic World Tier, min 200 Score)",
-----------------------------------------------------------------------------------------------------------------------
-- Broken Shore
[47086] = "Broken Shore Worldboss: Malificus defeated",
[47084] = "Broken Shore Worldboss: Apocron defeated",
[47090] = "Broken Shore Worldboss: Si'vash defeated",
[46951] = "Broken Shore Rare: Fillurlokkr defeated",
[47036] = "Broken Shore Rare: Duke Sithizi defeated",
[47036] = "Broken Shore Rare: Emberfire defeated",
-----------------------------------------------------------------------------------------------------------------------
-- Argus
[43369] = "Krokuun Rare: Siegemaster Voraan",
[47753] = "Krokuun Eredar War Supplies: Darkfall Ridge",
[48336] = "Krokuun Eredar War Supplies: Shattered Fields (near entrance to Xenedar)",
[48000] = "Krokuun Eredar War Supplies: Petrified Forest",
[48339] = "Krokuun Eredar War Supplies: Grova of Naroua",
[48886] = "Krokuun Lost Krokuul Chest: Krokuun",
[48362] = "Eredath Ancient Eredar Chest: Conservatory of the Arcane",
[48350] = "Eredath Ancient Eredar Chest: Arinor Gardens",
[48371] = "Eredath Ancient Eredar Chest: The Seat of the Triumvirate",
[48351] = "Eredath Treasure Chest: Isolon",
[48744] = "Eredath Chest of Ill-Gotten Gains: Circle of Aspirants",
[48745] = "Eredath Student's Surprising Surplus: Eredath",
[48747] = "Eredath Void-Tinged Chest: Umbra Hollows",
[48743] = "Eredath Eredar Treasure Chest: Eredath",
[48748] = "Eredath Augari Secret Stash: Eredath",
[49021] = "Antoran Wastes Timeworn Fel Chest: Antoran Wastes",
[48387] = "Antoran Wastes Legion War Supplies: Shattered Chasm",
[48382] = "Antoran Wastes Legion War Supplies: Felfire Armory",
[48383] = "Antoran Wastes Legion War Supplies: Scavengers Boneyard",
[48388] = "Antoran Wastes Legion War Supplies: Shaper's Rise",
[48391] = "Antoran Wastes Legion War Supplies: Ven'orn's Lair",
[48385] = "Antoran Wastes Legion War Supplies: Fiend's Run",
[48389] = "Antoran Wastes Legion War Supplies: Pits of Punishment",
[49020] = "Antoran Wastes Legion Treasure Hoard: Collector's Hovel",
[48451] = "Vindicaar Matrix Core: Lights Judgment active",
-----------------------------------------------------------------------------------------------------------------------
-- Argus Invasions
[49166] = "Greater Invasion Point: Defeated Inquisitor Meto",
[49167] = "Greater Invasion Point: Defeated Mistress Alluradel",
[49170] = "Greater Invasion Point: Defeated Occularus",
[49169] = "Greater Invasion Point: Defeated Matron Folnuna",
[49171] = "Greater Invasion Point: Defeated Soranathor",
-----------------------------------------------------------------------------------------------------------------------
-- Trial of Valor
[45429] = "Trial of Valor: Odyn defeated",
[46661] = "Trial of Valor LFR: Odyn defeated",
[46662] = "Trial of Valor Normal: Odyn defeated",
[46663] = "Trial of Valor Heroic: Odyn defeated",
[46664] = "Trial of Valor Mythic: Odyn defeated",
[45228] = "Ensemble: Garb of the Chosen Dead",
-----------------------------------------------------------------------------------------------------------------------
-- The Nighthold
[45323] = "The Nighthold: Krosus defeated",
[45328] = "The Nighthold Normal: Krosus defeated",
[46330] = "The Nighthold Heroic: Krosus defeated",
[46331] = "The Nighthold Mythic: Krosus defeated",
-----------------------------------------------------------------------------------------------------------------------
-- Tomb of Sargeras
[48651] = "Tomb of Sargeras: Kil'jaeden defeated",
[48082] = "Tomb of Sargeras LFR: Kil'jaeden defeated",
[48083] = "Tomb of Sargeras Normal: Kil'jaeden defeated",
[48084] = "Tomb of Sargeras Heroic: Kil'jaeden defeated",
[48085] = "Tomb of Sargeras Mythic: Kil'jaeden defeated",
-- -----------------------------------------------------------------------------------------------------------------------
-- Legion Remix
[92192] = "Watched Legion Attack on Dalaran after interacting with Moratari",
[90686] = "Opened loot window with Legion Armor Scraps (241211)",
[90864] = "Finished Legion Remix intro, enables skipping (account)",
[90716] = "Looted Bronze Simulacrum",
[91851] = "Heroic Broken Isles World Quests I achieved",
[92638] = "Druid: Learned Feldruid's Scornwing Idol",
[93155] = "Legionslayer III achieved",
[91934] = "Used Infinite Research reset choices gossip (blocks gossip until completing another research)",
[94420] = "Mythic+ Key completed (daily)",
[94421] = "Mythic+30 Key completed successfully",
[92540] = "Any Broken Shore Worldboss defeated",
[92541] = "Defeated any Greater Invasion boss (daily)",
[93154] = "Heroic Broken Isles World Quests IV achieved",
[95270] = "Legion Remix: Lost Legion Infernal Greater Bronze Cache + Pamphlet (daily)",
[95270] = "Legion Remix: Killed Infernal of the End Times",
[87185] = "Ensemble: Bloodforged Battleplate",
[87177] = "Ensemble: Raiment of Night Eternal",
[87182] = "Ensemble: Ravensteel Mail",
[87169] = "Ensemble: Chains of Nightmare's Embrace",
[87180] = "Ensemble: Guise of the Nightstalker",
[87184] = "Ensemble: Honorforged Valorplate",
[87186] = "Ensemble: Nightforged Felplate",
[87167] = "Ensemble: Nighthide Coat",
[87176] = "Ensemble: Sanguine Oath Vestments",
[87183] = "Ensemble: Scalemail of Devouring Night",
[87164] = "Ensemble: Seawitch's Terrorcloth",
[87172] = "Ensemble: Suramar Silver Plating",
[87179] = "Ensemble: Thirsting Hides",
[87175] = "Ensemble: Vesture of Borrowed Souls",
[65716] = "Ensemble: Barkbinds of the Archdruid's Nightmare",
[87055] = "Ensemble: Battleplate of the Highlord 1/4",
[87056] = "Ensemble: Battleplate of the Highlord 2/4",
[87057] = "Ensemble: Battleplate of the Highlord 3/4",
[87058] = "Ensemble: Battleplate of the Highlord 4/4",
[87188] = "Ensemble: Blazing Dreamscribed Robes",
[45233] = "Ensemble: Chains of the Chosen Dead",
[87075] = "Ensemble: Demonbane Armor 1/4",
[87076] = "Ensemble: Demonbane Armor 2/4",
[87077] = "Ensemble: Demonbane Armor 3/4",
[87078] = "Ensemble: Demonbane Armor 4/4",
[87071] = "Ensemble: Diabolic Raiment 1/4",
[87072] = "Ensemble: Diabolic Raiment 2/4",
[87073] = "Ensemble: Diabolic Raiment 3/4",
[87074] = "Ensemble: Diabolic Raiment 4/4",
[87038] = "Ensemble: Doomblade Battlegear 1/4",
[87039] = "Ensemble: Doomblade Battlegear 2/4",
[87040] = "Ensemble: Doomblade Battlegear 3/4",
[87041] = "Ensemble: Doomblade Battlegear 4/4",
[87051] = "Ensemble: Dreadwyrm Battleplate 1/4",
[87052] = "Ensemble: Dreadwyrm Battleplate 2/4",
[87053] = "Ensemble: Dreadwyrm Battleplate 3/4",
[87054] = "Ensemble: Dreadwyrm Battleplate 4/4",
[72081] = "Ensemble: Dream Defender's Emerald Guardplate",
[87190] = "Ensemble: Dreamseeker Vestments",
[87189] = "Ensemble: Dreamwatcher Vestments",
[87210] = "Ensemble: Dreamweald Dragonscale",
[87042] = "Ensemble: Eagletalon Battlegear 1/4",
[87043] = "Ensemble: Eagletalon Battlegear 2/4",
[87044] = "Ensemble: Eagletalon Battlegear 3/4",
[87045] = "Ensemble: Eagletalon Battlegear 4/4",
[87192] = "Ensemble: Earthrune Robes",
[87087] = "Ensemble: Fanged Slayer's Armor 1/4",
[87088] = "Ensemble: Fanged Slayer's Armor 2/4",
[87089] = "Ensemble: Fanged Slayer's Armor 3/4",
[87090] = "Ensemble: Fanged Slayer's Armor 4/4",
[87196] = "Ensemble: Fel-Bloodied Battlegear",
[43279] = "Ensemble: Fel-Chain Mail Armor",
[43281] = "Ensemble: Fel-Infused Cloth Armor",
[72086] = "Ensemble: Fel-Marked Scales",
[43278] = "Ensemble: Felforged Plate Armor",
[43280] = "Ensemble: Felshroud Leather Armor",
[87212] = "Ensemble: Firewurm Dragonscale",
[45237] = "Ensemble: Funerary Plate of the Chosen Dead",
[87198] = "Ensemble: Gladeraider's Battlegarb",
[87099] = "Ensemble: Gravewarden Armaments 1/4",
[87100] = "Ensemble: Gravewarden Armaments 2/4",
[87101] = "Ensemble: Gravewarden Armaments 3/4",
[87102] = "Ensemble: Gravewarden Armaments 4/4",
[87209] = "Ensemble: Highpeak Dragonscale",
[87214] = "Ensemble: Jarl's Battlehorns",
[87204] = "Ensemble: Jarl's Battlescales",
[87022] = "Ensemble: Legacy of Azj'aqir 1/4",
[87023] = "Ensemble: Legacy of Azj'aqir 2/4",
[87024] = "Ensemble: Legacy of Azj'aqir 3/4",
[87025] = "Ensemble: Legacy of Azj'aqir 4/4",
[87191] = "Ensemble: Nightrune Robes",
[87103] = "Ensemble: Radiant Lightbringer Armor 1/4",
[87104] = "Ensemble: Radiant Lightbringer Armor 2/4",
[87105] = "Ensemble: Radiant Lightbringer Armor 3/4",
[87106] = "Ensemble: Radiant Lightbringer Armor 4/4",
[87014] = "Ensemble: Regalia of Everburning Knowledge 1/4",
[87015] = "Ensemble: Regalia of Everburning Knowledge 2/4",
[87016] = "Ensemble: Regalia of Everburning Knowledge 3/4",
[87017] = "Ensemble: Regalia of Everburning Knowledge 4/4",
[87046] = "Ensemble: Regalia of Shackled Elements 1/4",
[87047] = "Ensemble: Regalia of Shackled Elements 2/4",
[87049] = "Ensemble: Regalia of Shackled Elements 3/4",
[87050] = "Ensemble: Regalia of Shackled Elements 4/4",
[87063] = "Ensemble: Regalia of the Arcane Tempest 1/4",
[87064] = "Ensemble: Regalia of the Arcane Tempest 2/4",
[87065] = "Ensemble: Regalia of the Arcane Tempest 3/4",
[87066] = "Ensemble: Regalia of the Arcane Tempest 4/4",
[45225] = "Ensemble: Regalia of the Chosen Dead",
[87095] = "Ensemble: Regalia of the Skybreaker 1/4",
[87096] = "Ensemble: Regalia of the Skybreaker 2/4",
[87097] = "Ensemble: Regalia of the Skybreaker 3/4",
[87098] = "Ensemble: Regalia of the Skybreaker 4/4",
[87206] = "Ensemble: Ruby Drake Hunter's Kit",
[87197] = "Ensemble: Searaider's Battlegarb",
[87193] = "Ensemble: Skyrune Robes",
[87215] = "Ensemble: Storm Champion's Warharness",
[87079] = "Ensemble: Stormheart Raiment 1/4",
[87080] = "Ensemble: Stormheart Raiment 2/4",
[87081] = "Ensemble: Stormheart Raiment 3/4",
[87082] = "Ensemble: Stormheart Raiment 4/4",
[92400] = "Ensemble: Tidesoaked Battlegear",
[87107] = "Ensemble: Titanic Onslaught Armor 1/4",
[87108] = "Ensemble: Titanic Onslaught Armor 2/4",
[87109] = "Ensemble: Titanic Onslaught Armor 3/4",
[87110] = "Ensemble: Titanic Onslaught Armor 4/4",
[87187] = "Ensemble: Verdant Dreamscribed Robes",
[87026] = "Ensemble: Vestment of Second Sight 1/4",
[87027] = "Ensemble: Vestment of Second Sight 2/4",
[87028] = "Ensemble: Vestment of Second Sight 3/4",
[87029] = "Ensemble: Vestment of Second Sight 4/4",
[87067] = "Ensemble: Vestments of Blind Absolution 1/4",
[87068] = "Ensemble: Vestments of Blind Absolution 2/4",
[87069] = "Ensemble: Vestments of Blind Absolution 3/4",
[87070] = "Ensemble: Vestments of Blind Absolution 4/4",
[87034] = "Ensemble: Vestments of Enveloped Dissonance 1/4",
[87035] = "Ensemble: Vestments of Enveloped Dissonance 2/4",
[87036] = "Ensemble: Vestments of Enveloped Dissonance 3/4",
[87037] = "Ensemble: Vestments of Enveloped Dissonance 4/4",
[87163] = "Ensemble: Vestments of the Manasinged",
[87018] = "Ensemble: Vestments of the Purifier 1/4",
[87019] = "Ensemble: Vestments of the Purifier 2/4",
[87020] = "Ensemble: Vestments of the Purifier 3/4",
[87021] = "Ensemble: Vestments of the Purifier 4/4",
[87059] = "Ensemble: Warplate of the Obsidian Aspect 1/4",
[87060] = "Ensemble: Warplate of the Obsidian Aspect 2/4",
[87061] = "Ensemble: Warplate of the Obsidian Aspect 3/4",
[87062] = "Ensemble: Warplate of the Obsidian Aspect 4/4",
[87091] = "Ensemble: Wildstalker Armor 1/4",
[87092] = "Ensemble: Wildstalker Armor 2/4",
[87093] = "Ensemble: Wildstalker Armor 3/4",
[87094] = "Ensemble: Wildstalker Armor 4/4",
[92614] = "Ensemble: Windrunner Quivers",
[87083] = "Ensemble: Xuen's Battlegear 1/4",
[87084] = "Ensemble: Xuen's Battlegear 2/4",
[87085] = "Ensemble: Xuen's Battlegear 3/4",
[87086] = "Ensemble: Xuen's Battlegear 4/4",
[87166] = "Ensemble: Battlegear of the Dreadhide Stalker",
[87165] = "Ensemble: Moonfall Robes",
[87127] = "Ensemble: Bearmantle Battlegear 1/4",
[87128] = "Ensemble: Bearmantle Battlegear 2/4",
[87129] = "Ensemble: Bearmantle Battlegear 3/4",
[87130] = "Ensemble: Bearmantle Battlegear 4/4",
[92680] = "Ensemble: World-Defiler's Battle Armor",
[87162] = "Ensemble: Xorothian Plate Armor",
[92681] = "Ensemble: Zealous Felslingers Battle Armor 1/4",
[94415] = "Ensemble: Zealous Felslingers Battle Armor 2/4",
[94416] = "Ensemble: Zealous Felslingers Battle Armor 3/4",
[94455] = "Ensemble: Zealous Felslingers Battle Armor 4/4",
[87139] = "Ensemble: Serpentstalker Guise 1/4",
[87140] = "Ensemble: Serpentstalker Guise 2/4",
[87141] = "Ensemble: Serpentstalker Guise 3/4",
[87142] = "Ensemble: Serpentstalker Guise 4/4",
[87250] = "Ensemble: Shrinebreaker's Battlegear",
[87238] = "Ensemble: Stormborn Laminar Armor",
[87220] = "Ensemble: Stygian Hides",
[87252] = "Ensemble: Stygian Silk",
[92863] = "Ensemble: Triumvirate High Guard's Battlegear",
[87221] = "Ensemble: Vestments of Eredathian Sacrifice",
[87159] = "Ensemble: Vileweave Vestments",
[92619] = "Ensemble: Mantles of the Nightwell",
[87251] = "Ensemble: Moonshatter Warplate",
[87160] = "Ensemble: Netherfiend Battlegear",
[87246] = "Ensemble: Oronaar Disciple's Mail Armor",
[87247] = "Ensemble: Praetorium Guard's Plate Armor",
[87135] = "Ensemble: Regalia of the Dashing Scoundrel 1/4",
[87136] = "Ensemble: Regalia of the Dashing Scoundrel 2/4",
[87137] = "Ensemble: Regalia of the Dashing Scoundrel 3/4",
[87138] = "Ensemble: Regalia of the Dashing Scoundrel 4/4",
[87248] = "Ensemble: Riven Priesthood Regalia",
[87111] = "Ensemble: Runebound Regalia 1/4",
[87112] = "Ensemble: Runebound Regalia 2/4",
[87113] = "Ensemble: Runebound Regalia 3/4",
[87114] = "Ensemble: Runebound Regalia 4/4",
[87225] = "Ensemble: Heritage of the Lightforged - Hologemmed",
[87224] = "Ensemble: Heritage of the Lightforged - Holy Gold",
[87227] = "Ensemble: Heritage of the Shal'dorei - Vineyard Red",
[87173] = "Ensemble: Jandvik Diver's Metal",
[87155] = "Ensemble: Juggernaut Battlegear 1/4",
[87156] = "Ensemble: Juggernaut Battlegear 2/4",
[87157] = "Ensemble: Juggernaut Battlegear 3/4",
[87158] = "Ensemble: Juggernaut Battlegear 4/4",
[87242] = "Ensemble: Kal'delar Battleplate",
[87174] = "Ensemble: Leyline Defender's Sunplate Armor",
[87151] = "Ensemble: Light's Vanguard Battleplate 1/4",
[87152] = "Ensemble: Light's Vanguard Battleplate 2/4",
[87153] = "Ensemble: Light's Vanguard Battleplate 3/4",
[87154] = "Ensemble: Light's Vanguard Battleplate 4/4",
[92861] = "Ensemble: Eredath Lightseeker's Regalia",
[87123] = "Ensemble: Felreaper Vestments 1/4",
[87124] = "Ensemble: Felreaper Vestments 2/4",
[87125] = "Ensemble: Felreaper Vestments 3/4",
[87126] = "Ensemble: Felreaper Vestments 4/4",
[92862] = "Ensemble: Forgotten Conservatory Clothes",
[87143] = "Ensemble: Garb of Venerated Spirits 1/4",
[87144] = "Ensemble: Garb of Venerated Spirits 2/4",
[87145] = "Ensemble: Garb of Venerated Spirits 3/4",
[87146] = "Ensemble: Garb of Venerated Spirits 4/4",
[87253] = "Ensemble: Garothi Battleplate",
[87115] = "Ensemble: Gilded Seraph's Raiment 1/4",
[87116] = "Ensemble: Gilded Seraph's Raiment 2/4",
[87117] = "Ensemble: Gilded Seraph's Raiment 3/4",
[87118] = "Ensemble: Gilded Seraph's Raiment 4/4",
[87119] = "Ensemble: Grim Inquisitor's Regalia 1/4",
[87120] = "Ensemble: Grim Inquisitor's Regalia 2/4",
[87121] = "Ensemble: Grim Inquisitor's Regalia 3/4",
[87122] = "Ensemble: Grim Inquisitor's Regalia 4/4",
[87226] = "Ensemble: Heritage of the Lightforged - Crimson Vengeance",
[87222] = "Ensemble: Antoran Guard's Golden Battleplate",
[87219] = "Ensemble: Argussian Demonsbane Armor",
[87170] = "Ensemble: Chains of Helheim",
[87131] = "Ensemble: Chi-Ji's Battlegear 1/4",
[87132] = "Ensemble: Chi-Ji's Battlegear 2/4",
[87133] = "Ensemble: Chi-Ji's Battlegear 3/4",
[87134] = "Ensemble: Chi-Ji's Battlegear 4/4",
[87244] = "Ensemble: Doomsinger's Cloth Armor",
[87236] = "Ensemble: Dreadthorn Battlegear",
[87147] = "Ensemble: Dreadwake Armor 1/4",
[87148] = "Ensemble: Dreadwake Armor 2/4",
[87149] = "Ensemble: Dreadwake Armor 3/4",
[87150] = "Ensemble: Dreadwake Armor 4/4",
[87168] = "Ensemble: Ambervale Bonehide",
[87161] = "Ensemble: Ered'ruin Scalemail",
[92613] = "Ensemble: Tideskorn Hunter's Munitions",
[87211] = "Ensemble: Earthbreaker Dragonscale",
[87203] = "Ensemble: Seaborne Brigandine",
[87201] = "Ensemble: Skyborne Brigandine",
[87208] = "Ensemble: Sunborne Runemail",
[87216] = "Ensemble: Val'kyr's Warharness",
[87205] = "Ensemble: Emerald Drake Hunter's Kit",
[87218] = "Ensemble: Winged Plate of the Valhalas Champion",
[92665] = "Arsenal: Mo'arg Swords",
[92664] = "Arsenal: Mo'arg Hornmaces",
[92663] = "Arsenal: Immortal Maces",
[92665] = "Arsenal: Gems of the Lightforged Draenei",
[92656] = "Arsenal: Bone Scythes",
[92889] = "Arsenal: Odyn's Spears",
[92615] = "Arsenal: Arms of the Felforged Knight",
[93876] = "Illusion: Chronos",
[92586] = "Felscorned Scythe of the Unmaker",
[92588] = "Fallen King's Corrupted Blades",
[92599] = "Scythe of the Unmaker",
[92886] = "Taeshalach",
-----------------------------------------------------------------------------------------------------------------------
-- Artifact Campaign
[62655] = "Artifact Campaign: Changed spec after starting artifact weapon campaign",
[40621] = "Choose Beast Mastery Legendary Weapon questchain",
[40619] = "Choose Survival Legendary Weapon questchain",
[40620] = "Choose Marksmanship Legendary Weapon questchain",
[40708] = "Choose Holy (Priest) Legendary weapon questchain",
[40707] = "Choose Shadow Legendary weapon questchain",
[40709] = "Choose Discipline Legendary weapon questchain",
[42167] = "Demonology warlock artifact quest Ritual Reagents (42128) - Killed Docile Stag with dark magic",
[42205] = "Demonology warlock artifact quest Dark Whispers (42125) - Calydus summoned portal",
-- --------------------------------------------------------------------------------------------------------------------
-- Orderhall Generic
[43837] = "Orderhall: Unlocked Recruiter NPC",
[43901] = "Orderhall: Unlocked Apprentice Recruiter NPC",
[92107] = "Orderhall: First quest skip by Moratari",
[42118] = "Orderhall: Finished Orderhall Campaign (without mount)",
-----------------------------------------------------------------------------------------------------------------------
-- Priest Orderhall
[44059] = "Priest Orderhall: Netherlight Temple attack started",
-----------------------------------------------------------------------------------------------------------------------
-- Shaman Orderhall
[43423] = "Mage Orderhall: Rewarded A Heroes Weapon",
-----------------------------------------------------------------------------------------------------------------------
-- Mage Orderhall
[47234] = "Mage Orderhall: Rewarded A Heroes Weapon",
-----------------------------------------------------------------------------------------------------------------------
-- Paladin Orderhall
[43688] = "Paladin Orderhall: Turned in Shard of Darkness",
[43666] = "Paladin Orderhall: Unlocked hidden artifact appearance: Corrupted Ashbringer",
-----------------------------------------------------------------------------------------------------------------------
-- Hunter Orderhall
[43158] = "Hunter Orderhall: Unlocked Death Hunter Moorgoth Vendor",
[43418] = "Hunter Orderhall: Rewarded A Heroes Weapon",
-----------------------------------------------------------------------------------------------------------------------
-- Rogue Orderhall
[50804] = "Rogue Orderhall: Entered Hall of Shadows for the first time",
[46790] = "Rogue Orderhall: Rewarded A Heroes Weapon",
[43672] = "Rogue Orderhall: Unlocked hidden artifact appearance: Venombite",
-----------------------------------------------------------------------------------------------------------------------
-- Warlock Orderhall
[42085] = "Warlock Orderhall: Selected Lulubelle Fizzlebang on quest Selecting a Sixth (41796)",
-----------------------------------------------------------------------------------------------------------------------
-- Warrior Orderhall
[41359] = "Warrior Orderhall: Unlocked Highmountain jump target",
[44060] = "Warrior Orderhall: Unlocked Azsuna jump target",
[44061] = "Warrior Orderhall: Unlocked Val'sharah jump target",
[44062] = "Warrior Orderhall: Unlocked Suramar jump target",
-----------------------------------------------------------------------------------------------------------------------
-- Mardum
[40232] = "Voras Silk Drape looted",
[40301] = "Lekos Leash looted",
[40251] = "Inquisitors Glowering Eye looted",
[40910] = "Mardum treasure: Small Treasure Chest - Vault of the Betrayer",
[40915] = "Mardum treasure: Small Treasure Chest - The Demon Ward",
[40916] = "Mardum treasure: Small Treasure Chest - Chamber of Night",
-- -----------------------------------------------------------------------------------------------------------------------
-- Return to Karazhan
[45393] = "Return to Karazhan: Moroes encounter end scene played",
[45394] = "Return to Karazhan: Maiden of Virtue encounter end scene played",
[45395] = "Return to Karazhan: The Curator encounter end scene played",
[45396] = "Return to Karazhan: Mana Devourer encounter end scene played",
-----------------------------------------------------------------------------------------------------------------------
-- Battle for Azeroth
[90909] = "Ensemble: Ashvane Smuggler's Attire",
[90925] = "Ensemble: Bloodsail Smuggler's Attire",
[90939] = "Ensemble: Golden Fleet's Sailing Garb",
[90940] = "Ensemble: Zocalo Merchant's Wear",
[54852] = "Kul Tiran unlock questline: Named ship Anduin's Wrath",
[54853] = "Kul Tiran unlock questline: Named ship Dawnsailor",
[54854] = "Kul Tiran unlock questline: Named ship Tiffin's Melody",
[54855] = "Kul Tiran unlock questline: Named ship The Lionheart",
-----------------------------------------------------------------------------------------------------------------------
-- Exiles Reach
[58883] = "Stitched Leather Boots looted",
[59139] = "Spider-Eye Ring looted",
-----------------------------------------------------------------------------------------------------------------------
-- Forbidden Reach
[66010] = "The Forbidden Reach Treasure: Mysterious Wand",
[66965] = "The Forbidden Reach Treasure: Abandoned Weapon Rack",
[67013] = "The Forbidden Reach Treasure: Eviscerated Argali",
[65908] = "The Forbidden Reach Treasure: Suspicious Bottle",
[65909] = "The Forbidden Reach Treasure: Bag of Enchanted Wind",
[66974] = "The Forbidden Reach Treasure: Lost Draconic Hourglass",
[64859] = "The Forbidden Reach Rare: Stormspine",
[66966] = "The Forbidden Reach Rare: Deathrip",
[66967] = "The Forbidden Reach Rare: Scytherin",
[66975] = "The Forbidden Reach Rare: Ketess the Pillager",
[65910] = "The Forbidden Reach Rare: Tripletath the Lost",
[66973] = "The Forbidden Reach Rare: Tazenrath",
-- -----------------------------------------------------------------------------------------------------------------------
-- Dragonriding Cosmetics
[79088] = "Used Renewed Proto-Drake: Love Armor",
[79112] = "Used Winding Slitherdrake: Lunar Festival Armor",
[82167] = "Used Delver's Dirigible Schematic: Front-Mounted Propeller",
[82168] = "Used Delver's Dirigible Schematic: Drill",
[82170] = "Used Delver's Dirigible Schematic: Front-Mounted Lantern",
[82171] = "Used Delver's Dirigible Schematic: Wing-Mounted Propeller",
[82173] = "Used Delver's Dirigible Schematic: Turbine",
[82176] = "Used Delver's Dirigible Schematic: Lantern Wing",
[82179] = "Used Delver's Dirigible Schematic: Exhaust",
[82180] = "Used Delver's Dirigible Schematic: Spoiler",
[82181] = "Used Delver's Dirigible Schematic: Empennage",
[82182] = "Used Delver's Dirigible Schematic: Glider",
[82183] = "Used Delver's Dirigible Schematic: Rotor Blades",
[82185] = "Used Delver's Dirigible Schematic: Zeppelin",
[82187] = "Used Delver's Dirigible Schematic: Brown Paint",
[82190] = "Used Delver's Dirigible Schematic: White Paint",
[82193] = "Used Delver's Dirigible Schematic: Explorer Decal",
[83308] = "Used Delver's Dirigible Schematic: Void",
[85175] = "Used Delver's Gob-Trotter Schematic: Harpoon",
[85177] = "Used Delver's Gob-Trotter Schematic: Flamethrower",
[85179] = "Used Delver's Gob-Trotter Schematic: Pipes",
[85181] = "Used Delver's Gob-Trotter Schematic: Balloon",
[85183] = "Used Delver's Gob-Trotter Schematic: Green",
[86198] = "Used Delver's Dirigible Schematic: Pale Paint",
[86199] = "Used Delver's Dirigible Schematic: Arathi Decal",
[86296] = "Used Delver's Gob-Trotter Schematic: Gold",
[88814] = "Used Delver's Mana-Skimmer Schematic: Canister",
[88815] = "Used Delver's Mana-Skimmer Schematic: Quad Glider",
[88816] = "Used Delver's Mana-Skimmer Schematic: Emitter",
[88817] = "Used Delver's Mana-Skimmer Schematic: Void Paint",
[88819] = "Used Delver's Mana-Skimmer Schematic: Hyperdrive",
[88820] = "Used Delver's Mana-Skimmer Schematic: Energy Thrusters",
-----------------------------------------------------------------------------------------------------------------------
-- Dornogal
[81519] = "Learned Lilac Educator's Knowledge",
[81520] = "Learned Leafy Educator's Knowledge",
[81521] = "Learned Cobalt Educator's Knowledge",
[81522] = "Learned Midnight Educator's Knowledge",
[81523] = "Learned Sandy Quotidian Wear",
[81524] = "Learned Maroon Quotidian Wear",
[81525] = "Learned Earthy Quotidian Wear",
[81526] = "Learned Umber Quotidian Wear",
[81527] = "Learned Taupe Quotidian Wear",
[81528] = "Learned Vermillion Patron's Elegance",
[81529] = "Learned Royal Patron's Elegance",
[81530] = "Learned Verdant Patron's Elegance",
[81531] = "Learned Celestial Patron's Elegance",
[81532] = "Learned Court Patron's Elegance",
[81533] = "Learned Versatile Peddler's Trinkets (Teal)",
[81534] = "Learned Arcane Peddler's Trinkets (Purple)",
[81535] = "Learned Curious Peddler's Trinkets (Green)",
[81536] = "Learned Peculiar Peddler's Trinkets (Blue)",
[81537] = "Learned Occult Peddler's Trinkets (Black)",
[83450] = "Archives: Seeking History (ID: 82679) 1/5 story unlocked",
[83460] = "Archives: Seeking History (ID: 82679) 2/5 story unlocked",
[83462] = "Archives: Seeking History (ID: 82679) 3/5 story unlocked",
[83463] = "Archives: Seeking History (ID: 82679) 4/5 story unlocked",
[83464] = "Archives: Seeking History (ID: 82679) 5/5 story unlocked",
[85156] = "Angorla stay a while and listen",
[85103] = "Apprentice Tanmar stay a while and listen",
[84009] = "Alleria Stay a while and listen after The Fleet Arrives",
[84345] = "Turalyon Stay a while and listen after Embassies and Envoys",
[82461] = "Dagran Thaurissan II Stay a while and listen in The Archive",
[84814] = "Dagran Thaurissan II Stay a while and listen in Vault of Memory",
[85682] = "Magni Bronzebeard Stay a while and listen in front of The Archive",
[82542] = "Rooktender Lufsela Stay a while and listen in front of Thrall, Shraubendre",
[84813] = "Rooktender Lufsela Stay a while and listen in Dhar Oztan",
[86400] = "Received free Carved Undermine Crest for Crest Transmutation TWW S2 (86401)",
[91744] = "Received free Carved Ethereal Crest for Crest Transmutation TWW S3 (86365)",
[86878] = "Used Nightfall Sanctum Campsite",
[85685] = "Weekly Fractured Spark of Starlight",
[93399] = "Shut up Geyarah conversation in Dornogal",
-- -----------------------------------------------------------------------------------------------------------------------
-- Severed Threads
[84539] = "Severed Threads: Renown 22",
-- The Vizier
[81605] = "Severed Threads - The Vizier: Reached Acquiantance (1/8) reputation",
[81606] = "Severed Threads - The Vizier: Reached Crony (2/8) reputation",
[81607] = "Severed Threads - The Vizier: Reached Accomplice (3/8) reputation",
-- missing Collaborator 4/8
[84534] = "Severed Threads - The Vizier: Reached Accessory (5/8) reputation",
[84535] = "Severed Threads - The Vizier: Reached Abettor (6/8) reputation",
[84536] = "Severed Threads - The Vizier: Reached Conspirator (7/8) reputation",
[84537] = "Severed Threads - The Vizier: Reached Mastermind (8/8) reputation",
-- The Weaver
[81597] = "Severed Threads - The Weaver: Reached Acquiantance (1/8) reputation",
-- Crony 2/8 has 2 tracking quests, ref UnsurelyNamedTrackingQuests
[81599] = "Severed Threads - The Weaver: Reached Accomplice (3/8) reputation",
[81600] = "Severed Threads - The Weaver: Reached Collaborator (4/8) reputation",
[84538] = "Severed Threads - The Weaver: Reached Accessory (5/8) reputation",
-- missing Abettor 6/8
[84540] = "Severed Threads - The Weaver: Reached Conspirator (7/8) reputation",
[84541] = "Severed Threads - The Weaver: Reached Mastermind (8/8) reputation",
-- The General
[81601] = "Severed Threads - The General: Reached Acquiantance (1/8) reputation",
-- Crony 2/8 has 2 tracking quests, ref UnsurelyNamedTrackingQuests
[81603] = "Severed Threads - The General: Reached Accomplice (3/8) reputation",
[81604] = "Severed Threads - The General: Reached Collaborator (4/8) reputation",
[84530] = "Severed Threads - The General: Reached Accessory (5/8) reputation",
[84531] = "Severed Threads - The General: Reached Abettor (6/8) reputation",
[84532] = "Severed Threads - The General: Reached Conspirator (7/8) reputation",
[84533] = "Severed Threads - The General: Reached Mastermind (8/8) reputation",
[80545] = "Severed Threads: Weekly Pact selected: The General",
[80544] = "Severed Threads: Weekly Pact selected: The Weaver",
[80546] = "Severed Threads: Weekly Pact selected: The Vizier",
-- -----------------------------------------------------------------------------------------------------------------------
-- Awakening The Machine
[84631] = "Awakening The Machine: Wave 5/20 cleared",
[84632] = "Awakening The Machine: Wave 10/20 cleared",
[84633] = "Awakening The Machine: Wave 15/20 cleared",
[84634] = "Awakening The Machine: Wave 20/20 cleared",
[84644] = "Awakening The Machine: Awakened Cache looted (right)",
[84642] = "Awakening The Machine: Awakened Cache looted (front left)",
[84646] = "Awakening The Machine: Awakened Cache looted (back left)",
[84647] = "Awakening The Machine: Awakened Cache looted (back center)",
-- -----------------------------------------------------------------------------------------------------------------------
-- Alchemy
[81898] = "Alchemy, Bulk Production 20/25 Khaz Algar trait: First flask crafted (daily)",
[82388] = "Alchemy, Bulk Production 20/25 Khaz Algar trait: First potion crafted (daily)",
[83253] = "Alchemy: Alchemical Sediment looted (weekly)",
[83255] = "Alchemy: Deepstone Crucible looted (weekly)",
[83725] = "Alchemy: Algari Treatise on Alchemy used (weekly)",
[93528] = "Alchemy: Lightbloomed Spore Sample looted (weekly)",
[93529] = "Alchemy: Aged Cruor looted (weekly)",
[95127] = "Alchemy: Thalassian Treatise on Alchemy used (weekly)",
-- -----------------------------------------------------------------------------------------------------------------------
-- Blacksmithing
[83256] = "Blacksmithing: Dense Bladestone looted (weekly)",
[83257] = "Blacksmithing: Coreway Billet looted (weekly)",
[83726] = "Blacksmithing: Algari Treatise on Blacksmithing used (weekly)",
[93530] = "Blacksmithing: Thalassian Whestone looted (weekly)",
[93531] = "Blacksmithing: Infused Quenching Oil looted (weekly)",
[95128] = "Blacksmithing: Thalassian Treatise on Blacksmithing used (weekly)",
-- -----------------------------------------------------------------------------------------------------------------------
-- Mining
[83054] = "Mining: Slab of Slate 1/5 looted (weekly)",
[83053] = "Mining: Slab of Slate 2/5 looted (weekly)",
[83052] = "Mining: Slab of Slate 3/5 looted (weekly)",
[83051] = "Mining: Slab of Slate 4/5 looted (weekly)",
[83050] = "Mining: Slab of Slate 5/5 looted (weekly)",
[83049] = "Mining: Erosion-Polished Slate looted (weekly)",
[80354] = "Mining: First Rich Aqirite looted",
[80355] = "Mining: First Rich Ironclaw looted",
[80356] = "Mining: First Bismuth Seam looted",
[80357] = "Mining: First Aqirite Seam looted",
[80358] = "Mining: First Ironclaw Seam looted",
[80359] = "Mining: First Crystallized Bismuth looted",
[80361] = "Mining: First Crystallized Ironclaw looted",
[80362] = "Mining: First Weeping Bismuth looted",
[80363] = "Mining: First Weeping Aqirite looted",
[80364] = "Mining: First Weeping Ironclaw looted",
[80365] = "Mining: First EZ-Mine Bismuth looted",
[80367] = "Mining: First EZ-Mine Ironclaw looted",
[80368] = "Mining: First camouflaged Bismuth looted",
[80369] = "Mining: First camouflaged Aqirite looted",
[80370] = "Mining: First camouflaged Ironclaw looted",
[80371] = "Mining: First Webbed Bismuth looted",
[80372] = "Mining: First Webbed Aqirite looted",
[80373] = "Mining: First Webbed Ironclaw looted",
[92134] = "Mining: First Desolate Deposit looted",
[92135] = "Mining: First Rich Desolate Deposit looted",
[83907] = "Mining: Dornogal Chisel treasure looted",
[81391] = "Mining Book: Exceptional Miner's Notes used",
[83062] = "Mining Book: Machine-Learned Mining Notes used",
[81392] = "Mining Book: Pristine Miner's Notes used",
[83733] = "Mining Book: Algari Treatise on Mining used weekly",
[82614] = "Mining Book: A Rocky Start used",
[85742] = "Mining Book: Undermine Treatise on Mining used",
[82317] = "Mastering the Mysterious: Unlocked 2nd Charge of Overload Empowered Deposit",
[88471] = "Mining: First Brilliant Silver looted",
[88466] = "Mining: First Brilliant Silver Seam looted",
[88491] = "Mining: First Rich Brilliant Silver looted",
[88484] = "Mining: First Lightfused Brilliant Silver looted",
[88465] = "Mining: First Voidbound Brilliant Silver looted",
[88472] = "Mining: First Wild Brilliant Silver looted",
[88490] = "Mining: First Primal Brilliant Silver looted",
[88475] = "Mining: First Refulgent Copper looted",
[88480] = "Mining: First Refulgent Copper Seam looted",
[88476] = "Mining: First Rich Refulgent Copper looted",
[88487] = "Mining: First Lightfused Refulgent Copper looted",
[88486] = "Mining: First Wild Refulgent Copper looted",
[88479] = "Mining: First Primal Refulgent Copper looted",
[88463] = "Mining: First Voidbound Refulgent Copper looted",
[88477] = "Mining: First Umbral Tin looted",
[88469] = "Mining: First Primal Umbral Tin looted",
[88485] = "Mining: First Wild Umbral Tin looted",
[88470] = "Mining: First Voidbound Umbral Tin looted",
[88481] = "Mining: First Umbral Tin Seam looted",
[88478] = "Mining: First Rich Umbral Tin looted",
[88488] = "Mining: First Lightfused Umbral Tin looted",
[88673] = "Mining: Igneous Rock Specimen 1/5 looted (weekly)",
[88674] = "Mining: Igneous Rock Specimen 2/5 looted (weekly)",
[88675] = "Mining: Igneous Rock Specimen 3/5 looted (weekly)",
[88676] = "Mining: Igneous Rock Specimen 4/5 looted (weekly)",
[88677] = "Mining: Igneous Rock Specimen 5/5 looted (weekly)",
[88678] = "Mining: Septarian Nodule looted",
[92187] = "Mining Book: Echo of Abundance: Mining used",
[95135] = "Mining: Thalassian Treatise on Mining used (weekly)",
-- -----------------------------------------------------------------------------------------------------------------------
-- Enchanting
[84290] = "Enchanting: Disenchant Fleeting Arcane Manifestation 1/5 (weekly)",
[84291] = "Enchanting: Disenchant Fleeting Arcane Manifestation 2/5 (weekly)",
[84292] = "Enchanting: Disenchant Fleeting Arcane Manifestation 3/5 (weekly)",
[84293] = "Enchanting: Disenchant Fleeting Arcane Manifestation 4/5 (weekly)",
[84294] = "Enchanting: Disenchant Fleeting Arcane Manifestation 5/5 (weekly)",
[84295] = "Enchanting: Disenchant Gleaming Telluric Crystal (weekly)",
[83727] = "Enchanting: Algari Treatise on Enchanting used (weekly)",
[83258] = "Enchanting: Powdered Fulgurance looted (weekly)",
[83259] = "Enchanting: Crystalline Repository looted (weekly)",
[95048] = "Enchanting: Disenchant Swirling Arcane Essence 1/5 (weekly)",
[95049] = "Enchanting: Disenchant Swirling Arcane Essence 2/5 (weekly)",
[95050] = "Enchanting: Disenchant Swirling Arcane Essence 3/5 (weekly)",
[95051] = "Enchanting: Disenchant Swirling Arcane Essence 4/5 (weekly)",
[95052] = "Enchanting: Disenchant Swirling Arcane Essence 5/5 (weekly)",
[95053] = "Enchanting: Disenchant Brimming Mana Shard (weekly)",
[95129] = "Enchanting: Thalassian Treatise on Enchanting used (weekly)",
[93532] = "Enchanting: Voidstorm Ashes looted (weekly)",
[93533] = "Enchanting: Lost Thalassian Vellum looted (weekly)",
-- -----------------------------------------------------------------------------------------------------------------------
-- Engineering
[83261] = "Engineering: Earthen Induction Coil looted (weekly)",
[83260] = "Engineering: Rust-Locked Mechanism looted (weekly)",
[84229] = "Engineering Book: Faded Engineer Scriblings used",
[83063] = "Engineering Book: Machine-Learned Engineering Notes used",
[84230] = "Engineering Book: Exceptional Engineer's Notes used",
[84231] = "Engineering Book: Pristine Engineer's Scribblings used",
[85737] = "Engineering Book: Undermine Treatise on Engineering used",
[83728] = "Engineering Book: Algari Treatise on Engineering used weekly",
[81355] = "Engineering First Time Craft: Convincingly Realistic Jumper Cables",
[81356] = "Engineering First Time Craft: Algari Repair Bot 11O",
[81319] = "Engineering First Time Craft: Bismuth Miner's Headgear",
[81293] = "Engineering First Time Craft: Algari Competitor's Plate Goggles",
[81387] = "Engineering First Time Craft: Dredger's Goggles",
[81365] = "Engineering First Time Craft: Spelunker's Goggles",
[81364] = "Engineering First Time Craft: Acolyte's Goggles",
[81352] = "Engineering First Time Craft: Energy Redistribution Beacon",
[81353] = "Engineering First Time Craft: Irresistable Red Button",
[81329] = "Engineering First Time Craft: Chaos Circuit",