forked from smaitch/Grail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGrail-Quests-enUS.lua
27531 lines (27514 loc) · 892 KB
/
Grail-Quests-enUS.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
--
--
-- UTF-8 file
--
-- We are using this as the base list of quests, so we do not look at the locale
-- to determine whether we should abandon further processing.
local G = Grail.quest.name
local _, release, _, interface = GetBuildInfo()
release = tonumber(release)
interface = tonumber(interface)
if release >= 0 and interface >= 50400 then
G[1]='Bogus Quest For Prerequisite Work'
G[2]="Sharptalon's Claw"
G[10]='The Scrimshank Redemption'
G[11]='Riverpaw Gnoll Bounty'
G[16]='Give Gerard a Drink'
G[23]="Ursangous' Paw"
G[24]="Shadumbra's Head"
G[25]='Simmer Down Now'
G[35]='Further Concerns'
G[37]='Find the Lost Guards'
G[40]='A Fishy Peril'
G[45]="Discover Rolf's Fate"
G[46]='Bounty on Murlocs'
G[47]='Gold Dust Exchange'
G[52]='Protect the Frontier'
G[54]='Report to Goldshire'
G[59]='Cloth and Leather Armor'
G[60]='Kobold Candles'
G[62]='The Fargodeep Mine'
G[71]='Report to Thomas'
G[76]='The Jasperlode Mine'
G[83]='Fine Linen Goods'
G[84]='Back to Billy'
G[85]='Lost Necklace'
G[86]='Pie for Billy'
G[87]='Goldtooth'
G[88]='Princess Must Die!'
G[106]='Young Lovers'
G[107]='Note to William'
G[111]='Speak with Gramma'
G[112]='Collecting Kelp'
G[114]='The Escape'
G[123]='The Collector'
G[147]='Manhunt'
G[171]='A Warden of the Alliance'
G[172]="Children's Week"
G[176]='WANTED: "Hogger"'
G[182]='The Troll Menace'
G[184]="Furlbrow's Deed"
G[185]='Tiger Hunting'
G[186]='Tiger Stalking'
G[187]='Tiger Prowess'
G[188]='Tiger Mastery'
G[190]='Panther Hunting'
G[191]='Panther Stalking'
G[192]='Panther Prowess'
G[193]='Panther Mastery'
G[194]='Raptor Hunting'
G[195]='Raptor Stalking'
G[196]='Raptor Prowess'
G[197]='Raptor Mastery'
G[208]='Big Game Hunter'
G[216]='Between a Rock and a Thistlefur'
G[218]='Ice and Fire'
G[236]='Fueling the Demolishers'
G[239]='Westbrook Garrison Needs Help!'
G[256]="WANTED: Chok'sul"
G[257]="A Hunter's Boast"
G[264]='Until Death Do Us Part'
G[273]='Resupplying the Excavation'
G[287]='Frostmane Hold'
G[291]='The Reports'
G[298]='Excavation Progress Report'
G[309]='Protecting the Shipment'
G[313]='Forced to Watch from Afar'
G[314]='Protecting the Herd'
G[315]='The Perfect Stout'
G[332]='Wine Shop Advert'
G[333]='Harlan Needs a Resupply'
G[334]='Package for Thurman'
G[351]='Find OOX-17/TN!'
G[353]="Stormpike's Delivery"
G[384]='Beer Basted Boar Ribs'
G[412]='Operation Recombobulation'
G[432]='Those Blasted Troggs!'
G[433]='The Public Servant'
G[475]='A Troubling Breeze'
G[476]='Gnarlpine Corruption'
G[483]='The Relics of Wakening'
G[485]='Find OOX-09/HL!'
G[486]='Ursal the Mauler'
G[487]='The Road to Darnassus'
G[488]="Zenn's Bidding"
G[489]='Seek Redemption!'
G[495]='The Crown of Will'
G[543]='The Perenolde Tiara'
G[583]='Welcome to the Jungle'
G[648]='Rescue OOX-17/TN!'
G[719]='A Dwarf and His Tools'
G[743]='Dangers of the Windfury'
G[744]='Preparation for Ceremony'
G[749]='The Ravaged Caravan'
G[751]='The Ravaged Caravan'
G[761]='Swoop Hunting'
G[768]='Gathering Leather'
G[769]='Kodo Hide Bag'
G[770]='The Demon Scarred Cloak'
G[773]='Rite of Wisdom'
G[822]="Chen's Empty Keg"
G[824]="Je'neu of the Earthen Ring"
G[833]='A Sacred Burial'
G[834]='Winds in the Desert'
G[835]='Securing the Lines'
G[836]='Rescue OOX-09/HL!'
G[840]='Conscript of the Horde'
G[844]='Plainstrider Menace'
G[845]='The Zhevra'
G[848]='Fungal Spores'
G[850]='Kolkar Leaders'
G[851]='Verog the Dervish'
G[852]='Hezrul Bloodmark'
G[855]='Centaur Bracers'
G[858]='Ignition'
G[861]="The Hunter's Way"
G[863]='The Escape'
G[865]="It's Gotta be the Horn"
G[866]='Root Samples'
G[867]='Harpy Raiders'
G[869]='To Track a Thief'
G[870]='The Forgotten Pools'
G[871]='In Defense of Far Watch'
G[872]='The Far Watch Offensive'
G[875]='Harpy Lieutenants'
G[876]='Serena Bloodfeather'
G[877]='The Stagnant Oasis'
G[880]='Altered Beings'
G[881]='Echeyakee'
G[887]='Southsea Freebooters'
G[891]="A Captain's Vengeance"
G[895]="WANTED: Cap'n Garvey"
G[899]='Consumed by Hatred'
G[903]='Hunting the Huntress'
G[905]="Into the Raptor's Den"
G[918]='Timberling Seeds'
G[919]='Timberling Sprouts'
G[922]='Rellian Greenspyre'
G[923]='Mossy Tumors'
G[927]='The Moss-twined Heart'
G[929]='Teldrassil: The Refusal of the Aspects'
G[930]='The Glowing Fruit'
G[931]='The Shimmering Frond'
G[932]='Twisted Hatred'
G[933]='Teldrassil: The Coming Dawn'
G[935]='The Waters of Teldrassil'
G[937]='The Enchanted Glade'
G[938]='Mist'
G[941]='Planting the Heart'
G[997]="Denalan's Earth"
G[1036]='Avast Ye, Scallywag'
G[1097]="Elmore's Task"
G[1168]='Army of the Black Dragon'
G[1176]='Load Lightening'
G[1201]='Theramore Spies'
G[1202]='The Theramore Docks'
G[1204]='Mudrock Soup and Bugs'
G[1205]='Deadmire'
G[1222]="Stinky's Escape"
G[1258]='... and Bugs'
G[1270]="Stinky's Escape"
G[1271]='Feast at the Blue Recluse'
G[1431]='Alliance Relations'
G[1432]='Alliance Relations'
G[1433]='Alliance Relations'
G[1434]='Befouled by Satyr'
G[1436]='Alliance Relations'
G[1453]="Reclaimers' Business in Desolace"
G[1454]='The Karnitol Shipwreck'
G[1455]='The Karnitol Shipwreck'
G[1456]='The Karnitol Shipwreck'
G[1468]="Children's Week"
G[1578]='Supplying the Front'
G[1581]='Elixirs for the Bladeleafs'
G[1582]='Moonglow Vest'
G[1618]='Gearing Redridge'
G[1918]='The Befouled Element'
G[2039]='Find Bingles'
G[2158]='Rest and Relaxation'
G[2159]='Dolanaar Delivery'
G[2278]='The Platinum Discs'
G[2280]='The Platinum Discs'
G[2383]='Simple Parchment'
G[2399]='The Sprouted Fronds'
G[2438]='The Emerald Dreamcatcher'
G[2459]='Ferocitas the Dream Eater'
G[2499]='Oakenscowl'
G[2518]='Tears of the Moon'
G[2541]='The Sleeping Druid'
G[2561]='Druid of the Claw'
G[2751]='Barbaric Battlements'
G[2752]='On Iron Pauldrons'
G[2753]='Trampled Under Foot'
G[2754]='Horns of Frenzy'
G[2755]='Joys of Omosh'
G[2945]='Grime-Encrusted Ring'
G[2947]='Return of the Ring'
G[2948]='Gnome Improvement'
G[2949]='Return of the Ring'
G[2950]="Nogg's Ring Redo"
G[2951]='The Sparklematic 5200!'
G[2952]='The Sparklematic 5200!'
G[2953]='More Sparklematic Action'
G[3087]='Etched Parchment'
G[3088]='Encrypted Parchment'
G[3089]='Rune-Inscribed Parchment'
G[3090]='Tainted Parchment'
G[3091]='Simple Note'
G[3092]='Etched Note'
G[3093]='Rune-Inscribed Note'
G[3094]='Verdant Note'
G[3095]='Simple Scroll'
G[3096]='Encrypted Scroll'
G[3097]='Hallowed Scroll'
G[3098]='Glyphic Scroll'
G[3099]='Tainted Scroll'
G[3100]='Simple Letter'
G[3101]='Consecrated Letter'
G[3102]='Encrypted Letter'
G[3103]='Hallowed Letter'
G[3104]='Glyphic Letter'
G[3105]='Tainted Letter'
G[3106]='Simple Rune'
G[3107]='Consecrated Rune'
G[3108]='Etched Rune'
G[3109]='Encrypted Rune'
G[3110]='Hallowed Rune'
G[3115]='Tainted Rune'
G[3116]='Simple Sigil'
G[3117]='Etched Sigil'
G[3118]='Encrypted Sigil'
G[3119]='Hallowed Sigil'
G[3120]='Verdant Sigil'
G[3361]="A Refugee's Quandary"
G[3526]='Goblin Engineering'
G[3541]="Delivery to Jes'rimon"
G[3561]='Delivery to Archmage Xylem'
G[3563]="Jes'rimon's Payment to Jediga"
G[3565]="Xylem's Payment to Jediga"
G[3721]='An OOX of Your Own'
G[3861]='CLUCK!'
G[4021]='Counterattack!'
G[4083]='The Spectral Chalice'
G[4295]="Rocknot's Ale"
G[4512]='A Little Slime Goes a Long Way'
G[4513]='A Little Slime Goes a Long Way'
G[4601]='The Sparklematic 5200!'
G[4602]='The Sparklematic 5200!'
G[4603]='More Sparklematic Action'
G[4604]='More Sparklematic Action'
G[4605]='The Sparklematic 5200!'
G[4606]='The Sparklematic 5200!'
G[4621]='Avast Ye, Admiral!'
G[5041]='Supplies for the Crossroads'
G[5421]='Fish in a Bucket'
G[5501]='Bone Collector'
G[5502]='A Warden of the Horde'
G[5545]='A Bundle of Trouble'
G[5561]='Kodo Roundup'
G[5581]='Portals of the Legion'
G[5713]='One Shot. One Kill.'
G[5821]='Bodyguard for Hire'
G[5892]='Irondeep Supplies'
G[5893]='Coldtooth Supplies'
G[5943]='Gizelton Caravan'
G[6031]='Runecloth'
G[6032]='Sacred Cloth'
G[6132]='Get Me Out of Here!'
G[6134]='Ghost-o-plasm Round Up'
G[6142]='Clam Bait'
G[6143]='Other Fish to Fry'
G[6321]='Supplying Brill'
G[6322]='Michael Garrett'
G[6323]='Ride to the Undercity'
G[6324]='Return to Morris'
G[6341]='To Darnassus'
G[6342]='An Unexpected Gift'
G[6343]='Return to Nyoma'
G[6344]='Reminders of Home'
G[6361]='A Bundle of Hides'
G[6362]='Ride to Thunder Bluff'
G[6363]='Tal the Wind Rider Master'
G[6364]='Return to Varg'
G[6365]='Meats to Orgrimmar'
G[6384]='Ride to Orgrimmar'
G[6385]='Doras the Wind Rider Master'
G[6386]='Return to Razor Hill'
G[6387]='Honor Students'
G[6388]='Gryth Thurden'
G[6391]='Ride to Ironforge'
G[6392]='Return to Gremlock'
G[6441]='Satyr Horns'
G[6442]='Naga at the Zoram Strand'
G[6462]='Troll Charm'
G[6482]='Freedom to Ruul'
G[6503]='Ashenvale Outrunners'
G[6544]="Torek's Assault"
G[6563]="The Essence of Aku'Mai"
G[6607]='Nat Pagle, Angler Extreme'
G[6608]='You Too Good.'
G[6609]="I Got Nothin' Left!"
G[6610]='Clamlette Surprise'
G[6611]='To Gadgetzan You Go!'
G[6612]='I Know A Guy...'
G[6621]='King of the Foulweald'
G[6622]='Triage'
G[6623]='Horde Trauma'
G[6624]='Triage'
G[6625]='Alliance Trauma'
G[6641]='Vorsha the Lasher'
G[6642]='Favor Amongst the Brotherhood, Dark Iron Ore'
G[6643]='Favor Amongst the Brotherhood, Fiery Core'
G[6644]='Favor Amongst the Brotherhood, Lava Core'
G[6645]='Favor Amongst the Brotherhood, Core Leather'
G[6646]='Favor Amongst the Brotherhood, Blood of the Mountain'
G[6661]='Deeprun Rat Roundup'
G[6662]='Me Brother, Nipsy'
G[6741]='More Booty!'
G[6781]='More Armor Scraps'
G[6801]='Lokholar the Ice Lord'
G[6825]="Call of Air - Guse's Fleet"
G[6826]="Call of Air - Jeztor's Fleet"
G[6827]="Call of Air - Mulverick's Fleet"
G[6881]='Ivus the Forest Lord'
G[6922]='Baron Aquanis'
G[6941]="Call of Air - Vipore's Fleet"
G[6942]="Call of Air - Slidore's Fleet"
G[6943]="Call of Air - Ichman's Fleet"
G[6961]='Great-father Winter is Here!'
G[6962]='Treats for Great-father Winter'
G[6963]='Stolen Winter Veil Treats'
G[6964]='The Reason for the Season'
G[6982]='Coldtooth Supplies'
G[6983]="You're a Mean One..."
G[6984]="A Smokywood Pastures' Thank You!"
G[6985]='Irondeep Supplies'
G[7001]='Empty Stables'
G[7002]='Ram Hide Harnesses'
G[7021]='Great-father Winter is Here!'
G[7022]='Greatfather Winter is Here!'
G[7023]='Greatfather Winter is Here!'
G[7024]='Great-father Winter is Here!'
G[7025]='Treats for Greatfather Winter'
G[7026]='Ram Riding Harnesses'
G[7027]='Empty Stables'
G[7043]="You're a Mean One..."
G[7045]="A Smokywood Pastures' Thank You!"
G[7061]='The Feast of Winter Veil'
G[7062]='The Reason for the Season'
G[7063]='The Feast of Winter Veil'
G[7081]='Alterac Valley Graveyards'
G[7082]='The Graveyards of Alterac'
G[7101]='Towers and Bunkers'
G[7102]='Towers and Bunkers'
G[7121]='The Quartermaster'
G[7122]='Capture a Mine'
G[7123]='Speak with our Quartermaster'
G[7124]='Capture a Mine'
G[7141]='The Battle of Alterac'
G[7142]='The Battle for Alterac'
G[7161]='Proving Grounds'
G[7162]='Proving Grounds'
G[7163]='Rise and Be Recognized'
G[7164]='Honored Amongst the Clan'
G[7165]='Earned Reverence'
G[7166]='Legendary Heroes'
G[7167]='The Eye of Command'
G[7168]='Rise and Be Recognized'
G[7169]='Honored Amongst the Guard'
G[7170]='Earned Reverence'
G[7171]='Legendary Heroes'
G[7172]='The Eye of Command'
G[7223]='Armor Scraps'
G[7224]='Enemy Booty'
G[7383]='Teldrassil: The Burden of the Kaldorei'
G[7385]='A Gallon of Blood'
G[7386]='Crystal Cluster'
G[7493]='The Journey Has Just Begun'
G[7497]='The Journey Has Just Begun'
G[7498]='Garona: A Study on Stealth and Treachery'
G[7499]='Codex of Defense'
G[7500]="The Arcanist's Cookbook"
G[7501]='The Light and How To Swing It'
G[7502]='Harnessing Shadows'
G[7503]='The Greatest Race of Hunters'
G[7504]="Holy Bologna: What the Light Won't Tell You"
G[7505]='Frost Shock and You'
G[7506]='The Emerald Dream...'
G[7604]='A Binding Contract'
G[7637]='Emphasis on Sacrifice'
G[7649]='Enchanted Thorium Platemail: Volume I'
G[7650]='Enchanted Thorium Platemail: Volume II'
G[7651]='Enchanted Thorium Platemail: Volume III'
G[7737]='Gaining Even More Acceptance'
G[7761]="Blackhand's Command"
G[7781]='The Lord of Blackrock'
G[7782]='The Lord of Blackrock'
G[7783]='The Lord of Blackrock'
G[7784]='The Lord of Blackrock'
G[7785]='Examine the Vessel'
G[7786]='Thunderaan the Windseeker'
G[7787]='Rise, Thunderfury!'
G[7810]='Arena Master'
G[7838]='Arena Grandmaster'
G[7848]='Attunement to the Core'
G[7863]='Sentinel Basic Care Package'
G[7865]='Sentinel Advanced Care Package'
G[7866]='Outrider Basic Care Package'
G[7868]='Outrider Advanced Care Package'
G[7905]='The Darkmoon Faire'
G[7907]='Darkmoon Beast Deck'
G[7926]='The Darkmoon Faire'
G[7927]='Darkmoon Portals Deck'
G[7928]='Darkmoon Warlords Deck'
G[7929]='Darkmoon Elementals Deck'
G[7946]='Spawn of Jubjub'
G[8026]='Redeem iCoke Prize Voucher'
G[8041]='Strength of Mount Mugamba'
G[8042]='Strength of Mount Mugamba'
G[8043]='Strength of Mount Mugamba'
G[8044]='The Rage of Mugamba'
G[8045]="The Heathen's Brand"
G[8046]="The Heathen's Brand"
G[8047]="The Heathen's Brand"
G[8048]="The Hero's Brand"
G[8049]='The Eye of Zuldazar'
G[8050]='The Eye of Zuldazar'
G[8051]='The Eye of Zuldazar'
G[8052]='The All-Seeing Eye of Zuldazar'
G[8053]="Paragons of Power: The Freethinker's Armguards"
G[8054]="Paragons of Power: The Freethinker's Belt"
G[8055]="Paragons of Power: The Freethinker's Breastplate"
G[8056]="Paragons of Power: The Augur's Bracers"
G[8057]="Paragons of Power: The Haruspex's Bracers"
G[8058]="Paragons of Power: The Vindicator's Armguards"
G[8059]="Paragons of Power: The Demoniac's Wraps"
G[8060]="Paragons of Power: The Illusionist's Wraps"
G[8061]="Paragons of Power: The Confessor's Wraps"
G[8062]="Paragons of Power: The Predator's Bracers"
G[8064]="Paragons of Power: The Haruspex's Belt"
G[8065]="Paragons of Power: The Haruspex's Tunic"
G[8066]="Paragons of Power: The Predator's Belt"
G[8067]="Paragons of Power: The Predator's Mantle"
G[8068]="Paragons of Power: The Illusionist's Mantle"
G[8069]="Paragons of Power: The Illusionist's Robes"
G[8070]="Paragons of Power: The Confessor's Bindings"
G[8071]="Paragons of Power: The Confessor's Mantle"
G[8073]="Paragons of Power: The Madcap's Tunic"
G[8074]="Paragons of Power: The Augur's Belt"
G[8075]="Paragons of Power: The Augur's Hauberk"
G[8076]="Paragons of Power: The Demoniac's Mantle"
G[8077]="Paragons of Power: The Demoniac's Robes"
G[8078]="Paragons of Power: The Vindicator's Belt"
G[8079]="Paragons of Power: The Vindicator's Breastplate"
G[8101]='The Pebble of Kajaro'
G[8102]='The Pebble of Kajaro'
G[8103]='The Pebble of Kajaro'
G[8104]='The Jewel of Kajaro'
G[8105]='The Battle for Arathi Basin!'
G[8106]="Kezan's Taint"
G[8107]="Kezan's Taint"
G[8108]="Kezan's Taint"
G[8109]="Kezan's Unstoppable Taint"
G[8110]='Enchanted South Seas Kelp'
G[8111]='Enchanted South Seas Kelp'
G[8112]='Enchanted South Seas Kelp'
G[8113]='Pristine Enchanted South Seas Kelp'
G[8114]='Control Four Bases'
G[8115]='Control Five Bases'
G[8116]='Vision of Voodress'
G[8117]='Vision of Voodress'
G[8118]='Vision of Voodress'
G[8119]='The Unmarred Vision of Voodress'
G[8120]='The Battle for Arathi Basin!'
G[8121]='Take Four Bases'
G[8122]='Take Five Bases'
G[8141]='Zandalarian Shadow Talisman'
G[8142]='Zandalarian Shadow Talisman'
G[8143]='Zandalarian Shadow Talisman'
G[8144]='Zandalarian Shadow Mastery Talisman'
G[8145]="The Maelstrom's Tendril"
G[8146]="The Maelstrom's Tendril"
G[8147]="The Maelstrom's Tendril"
G[8148]="Maelstrom's Wrath"
G[8149]='Honoring a Hero'
G[8150]='Honoring a Hero'
G[8166]='The Battle for Arathi Basin!'
G[8167]='The Battle for Arathi Basin!'
G[8168]='The Battle for Arathi Basin!'
G[8169]='The Battle for Arathi Basin!'
G[8170]='The Battle for Arathi Basin!'
G[8171]='The Battle for Arathi Basin!'
G[8183]='The Heart of Hakkar'
G[8184]='Presence of Might'
G[8185]="Syncretist's Sigil"
G[8186]="Death's Embrace"
G[8187]="Falcon's Call"
G[8188]="Vodouisant's Vigilant Embrace"
G[8189]='Presence of Sight'
G[8190]='Hoodoo Hex'
G[8191]='Prophetic Aura'
G[8192]="Animist's Caress"
G[8193]='Grand Prize'
G[8194]='Apprentice Angler'
G[8195]='Zulian, Razzashi, and Hakkari Coins'
G[8196]='Essence Mangoes'
G[8201]='A Collection of Heads'
G[8221]="Rare Fish - Keefer's Angelfish"
G[8224]='Rare Fish - Dezian Queenfish'
G[8225]="Rare Fish - Brownell's Blue Striped Racer"
G[8227]="Nat's Measuring Tape"
G[8228]='Could I get a Fishing Flier?'
G[8229]='Could I get a Fishing Flier?'
G[8237]='In the Blink of an Eye Tracking Quest'
G[8238]='Gurubashi, Vilebranch, and Witherbark Coins'
G[8239]='Sandfury, Skullsplitter, and Bloodscalp Coins'
G[8240]='A Bijou for Zanza'
G[8243]="Zanza's Potent Potables"
G[8246]='Signets of the Zandalar'
G[8249]='Junkboxes Needed'
G[8262]='Arathor Advanced Care Package'
G[8265]="Defiler's Advanced Care Package"
G[8271]='Hero of the Stormpike'
G[8272]='Hero of the Frostwolf'
G[8277]='Deadly Desert Venom'
G[8278]="Noggle's Last Hope"
G[8279]='The Twilight Lexicon'
G[8280]='Securing the Supply Lines'
G[8281]='Stepping Up Security'
G[8282]="Noggle's Lost Satchel"
G[8283]='Wanted - Deathclasp, Terror of the Sands'
G[8284]='The Twilight Mystery'
G[8285]='The Deserter'
G[8287]='A Terrible Purpose'
G[8304]='Dearest Natalia'
G[8306]='Into The Maw of Madness'
G[8307]='Desert Recipe'
G[8308]="Brann Bronzebeard's Lost Letter"
G[8309]='Glyph Chasing'
G[8310]='Breaking the Code'
G[8311]="Hallow's End Treats for Jesper!"
G[8312]="Hallow's End Treats for Spoops!"
G[8313]='Sharing the Knowledge'
G[8314]='Unraveling the Mystery'
G[8316]='Armaments of War'
G[8317]='Kitchen Assistance'
G[8318]='Secret Communication'
G[8319]='Encrypted Twilight Texts'
G[8320]='Twilight Geolords'
G[8321]='Vyral the Vile'
G[8323]='True Believers'
G[8324]='Still Believing'
G[8325]='Reclaiming Sunstrider Isle'
G[8326]='Unfortunate Measures'
G[8327]='Report to Lanthan Perilon'
G[8328]='Mage Training'
G[8329]='Warrior Training'
G[8330]="Solanian's Belongings"
G[8334]='Aggression'
G[8335]='Felendren the Banished'
G[8336]='A Fistful of Slivers'
G[8338]='Tainted Arcane Sliver'
G[8345]="The Shrine of Dath'Remar"
G[8346]='Thirst Unending'
G[8347]='Aiding the Outrunners'
G[8350]='Completing the Delivery'
G[8353]='Chicken Clucking for a Mint'
G[8354]='Chicken Clucking for a Mint'
G[8355]='Incoming Gumdrop'
G[8356]='Flexing for Nougat'
G[8357]='Dancing for Marzipan'
G[8358]='Incoming Gumdrop'
G[8359]='Flexing for Nougat'
G[8360]='Dancing for Marzipan'
G[8376]='Armaments of War'
G[8377]='Armaments of War'
G[8378]='Armaments of War'
G[8379]='Armaments of War'
G[8380]='Armaments of War'
G[8381]='Armaments of War'
G[8382]='Armaments of War'
G[8446]='Shrouded in Nightmare'
G[8447]='Waking Legends'
G[8463]='Unstable Mana Crystals'
G[8468]='WANTED: Thaelis the Hungerer'
G[8470]='Deadwood Ritual Totem'
G[8472]='Major Malfunction'
G[8473]='A Somber Task'
G[8474]="Old Whitebark's Pendant"
G[8475]='The Dead Scar'
G[8476]='Amani Encroachment'
G[8477]="The Spearcrafter's Hammer"
G[8479]="Zul'Marosh"
G[8480]='Lost Armaments'
G[8481]='The Root of All Evil'
G[8482]='Incriminating Documents'
G[8483]='The Dwarven Spy'
G[8486]='Arcane Instability'
G[8487]='Corrupted Soil'
G[8488]='Unexpected Results'
G[8490]='Powering our Defenses'
G[8491]='Pelt Collection'
G[8499]='The Alliance Needs Thorium Bars!'
G[8501]="Target: Hive'Ashi Stingers"
G[8505]='The Alliance Needs Purple Lotus!'
G[8526]='The Alliance Needs Roast Raptor!'
G[8527]='The Alliance Needs More Roast Raptor!'
G[8544]="Conqueror's Spaulders"
G[8556]='Signet of Unyielding Strength'
G[8557]='Drape of Unyielding Strength'
G[8558]='Sickle of Unyielding Strength'
G[8559]="Conqueror's Greaves"
G[8560]="Conqueror's Legguards"
G[8561]="Conqueror's Crown"
G[8562]="Conqueror's Breastplate"
G[8563]='Warlock Training'
G[8564]='Priest Training'
G[8579]='Mortal Champions'
G[8592]='Tiara of the Oracle'
G[8593]='Trousers of the Oracle'
G[8594]='Mantle of the Oracle'
G[8595]='Mortal Champions'
G[8596]='Footwraps of the Oracle'
G[8602]="Stormcaller's Pauldrons"
G[8603]='Vestments of the Oracle'
G[8619]='Morndeep the Elder'
G[8621]="Stormcaller's Footguards"
G[8622]="Stormcaller's Hauberk"
G[8623]="Stormcaller's Diadem"
G[8624]="Stormcaller's Leggings"
G[8625]='Enigma Shoulderpads'
G[8626]="Striker's Footguards"
G[8627]="Avenger's Breastplate"
G[8628]="Avenger's Crown"
G[8629]="Avenger's Legguards"
G[8630]="Avenger's Pauldrons"
G[8631]='Enigma Leggings'
G[8632]='Enigma Circlet'
G[8633]='Enigma Robes'
G[8634]='Enigma Boots'
G[8635]='Splitrock the Elder'
G[8636]='Rumblerock the Elder'
G[8637]="Deathdealer's Boots"
G[8638]="Deathdealer's Vest"
G[8639]="Deathdealer's Helm"
G[8640]="Deathdealer's Leggings"
G[8641]="Deathdealer's Spaulders"
G[8642]='Silvervein the Elder'
G[8643]='Highpeak the Elder'
G[8644]='Stonefort the Elder'
G[8645]='Obsidian the Elder'
G[8646]='Hammershout the Elder'
G[8647]='Bellowrage the Elder'
G[8648]='Darkcore the Elder'
G[8649]='Stormbrow the Elder'
G[8650]='Snowcrown the Elder'
G[8651]='Ironband the Elder'
G[8652]='Graveborn the Elder'
G[8653]='Goldwell the Elder'
G[8654]='Primestone the Elder'
G[8655]="Avenger's Greaves"
G[8656]="Striker's Hauberk"
G[8657]="Striker's Diadem"
G[8658]="Striker's Leggings"
G[8659]="Striker's Pauldrons"
G[8660]="Doomcaller's Footwraps"
G[8661]="Doomcaller's Robes"
G[8662]="Doomcaller's Circlet"
G[8663]="Doomcaller's Trousers"
G[8664]="Doomcaller's Mantle"
G[8665]='Genesis Boots'
G[8666]='Genesis Vest'
G[8667]='Genesis Helm'
G[8668]='Genesis Trousers'
G[8669]='Genesis Shoulderpads'
G[8670]='Runetotem the Elder'
G[8671]='Ragetotem the Elder'
G[8672]='Stonespire the Elder'
G[8673]='Bloodhoof the Elder'
G[8674]='Winterhoof the Elder'
G[8675]='Skychaser the Elder'
G[8676]='Wildmane the Elder'
G[8677]='Darkhorn the Elder'
G[8678]='Wheathoof the Elder'
G[8679]='Grimtotem the Elder'
G[8680]='Windtotem the Elder'
G[8681]='Thunderhorn the Elder'
G[8682]='Skyseer the Elder'
G[8683]='Dawnstrider the Elder'
G[8684]='Dreamseer the Elder'
G[8685]='Mistwalker the Elder'
G[8686]='High Mountain the Elder'
G[8688]='Windrun the Elder'
G[8689]='Shroud of Infinite Wisdom'
G[8690]='Cloak of the Gathering Storm'
G[8691]='Drape of Vaulted Secrets'
G[8692]='Cloak of Unending Life'
G[8693]='Cloak of Veiled Shadows'
G[8694]='Shroud of Unspoken Names'
G[8695]='Cape of Eternal Justice'
G[8696]='Cloak of the Unseen Path'
G[8697]='Ring of Infinite Wisdom'
G[8698]='Ring of the Gathering Storm'
G[8699]='Band of Vaulted Secrets'
G[8700]='Band of Unending Life'
G[8701]='Band of Veiled Shadows'
G[8702]='Ring of Unspoken Names'
G[8703]='Ring of Eternal Justice'
G[8704]='Signet of the Unseen Path'
G[8705]='Gavel of Infinite Wisdom'
G[8706]='Hammer of the Gathering Storm'
G[8707]='Blade of Vaulted Secrets'
G[8708]='Mace of Unending Life'
G[8709]='Dagger of Veiled Shadows'
G[8710]='Kris of Unspoken Names'
G[8711]='Blade of Eternal Justice'
G[8712]='Scythe of the Unseen Path'
G[8713]='Starsong the Elder'
G[8714]='Moonstrike the Elder'
G[8715]='Bladeleaf the Elder'
G[8716]='Starglade the Elder'
G[8717]='Moonwarden the Elder'
G[8718]='Bladeswift the Elder'
G[8719]='Bladesing the Elder'
G[8720]='Skygleam the Elder'
G[8721]='Starweave the Elder'
G[8722]='Meadowrun the Elder'
G[8723]='Nightwind the Elder'
G[8724]='Morningdew the Elder'
G[8725]='Riversong the Elder'
G[8726]='Brightspear the Elder'
G[8727]='Farwhisper the Elder'
G[8744]='A Carefully Wrapped Present'
G[8746]='Metzen the Reindeer'
G[8747]='The Path of the Protector'
G[8748]='The Path of the Protector'
G[8749]='The Path of the Protector'
G[8750]='The Path of the Protector'
G[8751]='The Protector of Kalimdor'
G[8752]='The Path of the Conqueror'
G[8753]='The Path of the Conqueror'
G[8754]='The Path of the Conqueror'
G[8755]='The Path of the Conqueror'
G[8756]='The Qiraji Conqueror'
G[8757]='The Path of the Invoker'
G[8758]='The Path of the Invoker'
G[8759]='The Path of the Invoker'
G[8760]='The Path of the Invoker'
G[8761]='The Grand Invoker'
G[8762]='Metzen the Reindeer'
G[8763]='The Hero of the Day'
G[8767]='A Gently Shaken Gift'
G[8768]='A Gaily Wrapped Present'
G[8769]='A Ticking Present'
G[8784]='Secrets of the Qiraji'
G[8788]='A Gently Shaken Gift'
G[8789]='Imperial Qiraji Armaments'
G[8790]='Imperial Qiraji Regalia'
G[8791]='The Fall of Ossirian'
G[8798]='A Yeti of Your Own'
G[8799]='The Hero of the Day'
G[8801]="C'Thun's Legacy"
G[8802]='The Savior of Kalimdor'
G[8803]='A Festive Gift'
G[8827]="Winter's Presents"
G[8828]="Winter's Presents"
G[8860]='New Year Celebrations!'
G[8861]='New Year Celebrations!'
G[8866]='Bronzebeard the Elder'
G[8867]='Lunar Fireworks'
G[8868]="Elune's Blessing"
G[8870]='The Lunar Festival'
G[8871]='The Lunar Festival'
G[8872]='The Lunar Festival'
G[8873]='The Lunar Festival'
G[8874]='The Lunar Festival'
G[8875]='The Lunar Festival'
G[8883]='Valadar Starsong'
G[8884]='Fish Heads, Fish Heads...'
G[8885]='The Ring of Mmmrrrggglll'
G[8886]='Grimscale Pirates!'
G[8887]="Captain Kelisendra's Lost Rutters"
G[8888]="The Magister's Apprentice"
G[8889]='Deactivating the Spire'
G[8890]='Word from the Spire'
G[8891]='Abandoned Investigations'
G[8892]='Situation at Sunsail Anchorage'
G[8894]='Cleaning up the Grounds'
G[8895]='Delivery to the North Sanctum'
G[8899]='Dearest Colara,'
G[8910]='An Earnest Proposition'
G[9024]="Aristan's Hunch"
G[9035]='Roadside Ambush'
G[9062]='Soaked Pages'
G[9064]='Taking the Fall'
G[9066]='Swift Discipline'
G[9067]='The Party Never Ends'
G[9076]='Wretched Ringleader'
G[9119]='Malfunction at the West Sanctum'
G[9130]='Goods from Silvermoon City'
G[9133]='Fly to Silvermoon City'
G[9134]='Skymistress Gloaming'
G[9135]='Return to Sathiel'
G[9138]='Suncrown Village'
G[9139]='Goldenmist Village'
G[9140]='Windrunner Village'
G[9143]="Dealing with Zeb'Sora"
G[9144]='Missing in the Ghostlands'
G[9145]='Help Ranger Valanna!'
G[9146]='Report to Captain Helios'
G[9147]='The Fallen Courier'
G[9148]='Delivery to Tranquillien'
G[9149]='The Plagued Coast'
G[9150]='Salvaging the Past'
G[9151]='The Sanctum of the Sun'
G[9152]="Tomber's Supplies"
G[9155]='Down the Dead Scar'
G[9156]='WANTED: Knucklerot and Luzran'
G[9157]='Forgotten Rituals'
G[9158]='Bearers of the Plague'
G[9159]='Curbing the Plague'
G[9160]="Investigate An'daroth"
G[9161]="The Traitor's Shadow"
G[9162]='Hints of the Past'
G[9163]='Into Occupied Territory'
G[9164]='Captives at Deatholme'
G[9166]="Deliver the Plans to An'telas"
G[9167]="The Traitor's Destruction"
G[9169]="Deactivate An'owyn"
G[9170]="Dar'Khan's Lieutenants"
G[9171]='Culinary Crunch'
G[9172]='Report to Magister Kaendris'
G[9173]='Retaking Windrunner Spire'
G[9174]='Vanquishing Aquantion'
G[9175]="The Lady's Necklace"
G[9176]='The Twin Ziggurats'
G[9177]='Journey to Undercity'
G[9180]='Journey to Undercity'
G[9192]='Trouble at the Underlight Mines'
G[9193]='Investigate the Amani Catacombs'
G[9199]='Troll Juju'
G[9207]='Underlight Ore Samples'
G[9208]='The Savage Guard - Arcanum of Protection'
G[9209]='The Savage Guard - Arcanum of Rapidity'
G[9210]='The Savage Guard - Arcanum of Focus'
G[9212]='Escape from the Catacombs'
G[9214]='Shadowpine Weaponry'
G[9215]="Bring Me Kel'gash's Head!"
G[9216]='Rotting Hearts'
G[9217]='More Rotting Hearts'
G[9218]='Spinal Dust'
G[9219]='More Spinal Dust'
G[9220]='War on Deatholme'
G[9250]='Frame of Atiesh'
G[9251]='Atiesh, the Befouled Greatstaff'
G[9252]='Defending Fairbreeze Village'
G[9253]='Runewarden Deryan'
G[9254]='The Wayward Apprentice'
G[9255]='Research Notes'
G[9256]='Fairbreeze Village'
G[9257]='Atiesh, Greatstaff of the Guardian'
G[9258]='The Scorched Grove'
G[9259]='Traitor to the Bloodsail'
G[9266]='Making Amends'
G[9267]='Mending Old Wounds'
G[9268]='War at Sea'
G[9269]='Atiesh, Greatstaff of the Guardian'
G[9270]='Atiesh, Greatstaff of the Guardian'
G[9271]='Atiesh, Greatstaff of the Guardian'
G[9272]='Dressing the Part'
G[9274]='Spirits of the Drowned'
G[9275]='A Little Dash of Seasoning'
G[9276]="Attack on Zeb'Tela"
G[9277]="Assault on Zeb'Nowa"
G[9279]='You Survived!'
G[9280]='Replenishing the Healing Crystals'
G[9281]='Clearing the Way'
G[9282]='The Farstrider Enclave'
G[9283]='Rescue the Survivors!'
G[9287]='Paladin Training'
G[9288]='Hunter Training'
G[9289]='Warrior Training'
G[9290]='Mage Training'
G[9291]='Priest Training'
G[9293]='What Must Be Done...'
G[9294]='Healing the Lake'
G[9303]='Inoculation'
G[9305]='Spare Parts'
G[9309]='The Missing Scout'
G[9310]='Faint Necrotic Crystal'
G[9311]='Blood Elf Spy'
G[9312]='The Emitter'
G[9313]='Travel to Azure Watch'
G[9314]='Word from Azure Watch'
G[9315]="Anok'suten"
G[9324]="Stealing Orgrimmar's Flame"
G[9325]="Stealing Thunder Bluff's Flame"
G[9326]="Stealing the Undercity's Flame"
G[9327]='The Forsaken'
G[9328]="Hero of the Sin'dorei"
G[9329]='The Forsaken'
G[9330]="Stealing Stormwind's Flame"
G[9331]="Stealing Ironforge's Flame"
G[9332]="Stealing Darnassus's Flame"
G[9339]="A Thief's Reward"
G[9340]='The Great Fissure'
G[9345]='Preparing the Salve'
G[9349]='Ravager Egg Roundup'
G[9351]='Voidwalkers Gone Wild'
G[9352]='Darnassian Intrusions'
G[9355]='A Job for an Intelligent Man'
G[9356]='Smooth as Butter'
G[9358]='Ranger Sareyn'
G[9359]='Farstrider Retreat'
G[9360]='Amani Invasion'
G[9361]='Helboar, the Other White Meat'
G[9363]='Warning Fairbreeze Village'
G[9365]="A Thief's Reward"
G[9366]='In Need of Felblood'
G[9369]='Replenishing the Healing Crystals'
G[9370]='The Cleansing Must Be Stopped'
G[9371]='Botanist Taerix'
G[9372]='Demonic Contamination'
G[9373]='Missing Missive'
G[9374]="Arelion's Journal"
G[9375]='The Road to Falcon Watch'
G[9376]="A Pilgrim's Plight"
G[9381]='Trueflight Arrows'
G[9383]='An Ambitious Plan'
G[9385]='Rampaging Ravagers'
G[9387]='Source of the Corruption'
G[9390]='In Search of Sedai'
G[9391]='Marking the Path'
G[9392]='Rogue Training'
G[9393]='Hunter Training'
G[9394]="Where's Wyllithen?"
G[9395]="Saltheril's Haven"
G[9396]='Magic of the Arakkoa'
G[9397]='Birds of a Feather'
G[9398]='Deadly Predators'
G[9399]='Cruel Taskmasters'
G[9400]='The Assassin'
G[9401]='A Strange Weapon'
G[9402]='Fetch!'
G[9403]='The Purest Water'
G[9404]='Recently Living'
G[9405]="The Warchief's Mandate"
G[9406]="The Mag'har"
G[9407]='Through the Dark Portal'
G[9409]='Urgent Delivery!'
G[9410]='A Spirit Guide'
G[9415]='Report to Marshal Bluewall'
G[9416]='Report to General Kirika'
G[9417]='The Arakkoa Threat'
G[9418]="Avruu's Orb"
G[9419]='Scouring the Desert'
G[9420]='The Finest Down'
G[9421]='Shaman Training'
G[9422]='Scouring the Desert'
G[9423]='Return to Obadei'
G[9424]="Makuru's Vengeance"
G[9426]='The Pools of Aggonar'
G[9427]='Cleansing the Waters'
G[9430]="Sha'naar Relics"
G[9436]='Bloodscalp Insight'
G[9437]='Twilight of the Dawn Runner'
G[9442]='A Debilitating Sickness'
G[9447]='Administering the Salve'
G[9452]='Red Snapper - Very Tasty!'
G[9453]='Find Acteon!'
G[9454]='The Great Moongraze Hunt'
G[9455]='Strange Findings'
G[9456]='Nightstalker Clean Up, Isle 2...'
G[9457]='An Unusual Patron'
G[9463]='Medicinal Purpose'
G[9466]='WANTED: Blacktalon the Savage'
G[9472]="Arelion's Mistress"
G[9473]='An Alternative Alternative'
G[9483]="Life's Finer Pleasures"
G[9487]='Arcane Reavers'
G[9488]='A Simple Robe'
G[9490]='The Rock Flayer Matriarch'
G[9498]='Falcon Watch'
G[9499]='Falcon Watch'
G[9505]='The Prophecy of Velen'
G[9506]='A Small Start'
G[9512]="Cookie's Jumbo Gumbo"
G[9513]='Reclaiming the Ruins'