-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFactionsAdditionalInfo.lua
1657 lines (1656 loc) · 51.6 KB
/
FactionsAdditionalInfo.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
local factionsAdditionalInfo = {
{
name = "Argent Dawn",
side = "Neutral",
zones = {"Eastern Plaguelands", "Western Plaguelands"},
category = "Outdoor PvE",
quartermaster_location = "Light's Hope Chapel, Eastern Plaguelands",
farming_methods = {
"Complete quests in the Plaguelands",
"Participate in the Stratholme and Scholomance dungeons",
"Turn in Scourgestones collected from undead mobs"
}
},
{
name = "Cenarion Circle",
side = "Neutral",
zones = {"Silithus"},
category = "Outdoor PvE",
quartermaster_location = "Cenarion Hold, Silithus",
farming_methods = {
"Complete quests in Silithus",
"Participate in the Ahn'Qiraj raids",
"Turn in Encrypted Twilight Texts"
}
},
{
name = "Thorium Brotherhood",
side = "Neutral",
zones = {"Searing Gorge", "Blackrock Depths"},
category = "Dungeon PvE",
quartermaster_location = "Thorium Point, Searing Gorge",
farming_methods = {
"Complete quests in Searing Gorge",
"Turn in Dark Iron Residue and other materials",
"Craft and turn in specific items as a Blacksmith"
}
},
{
name = "Timbermaw Hold",
side = "Neutral",
zones = {"Felwood", "Winterspring"},
category = "Outdoor PvE",
quartermaster_location = "Timbermaw Hold, between Felwood and Winterspring",
farming_methods = {
"Complete quests for the Timbermaw Furbolgs",
"Kill Deadwood and Winterfall Furbolgs",
"Turn in Deadwood Headdress Feathers and Winterfall Spirit Beads"
}
},
{
name = "Zandalar Tribe",
side = "Neutral",
zones = {"Zul'Gurub"},
category = "Raid",
quartermaster_location = "Yojamba Isle, Stranglethorn Vale",
farming_methods = {
"Participate in the Zul'Gurub raid",
"Turn in coins and bijous collected from the raid"
}
},
{
name = "Brood of Nozdormu",
side = "Neutral",
zones = {"Silithus", "Ahn'Qiraj"},
category = "Raid",
quartermaster_location = "Inside the Temple of Ahn'Qiraj",
farming_methods = {
"Participate in the Temple of Ahn'Qiraj raid",
"Complete quests related to the Scepter of the Shifting Sands"
}
},
{
name = "Hydraxian Waterlords",
side = "Neutral",
zones = {"Azshara", "Molten Core"},
category = "Raid",
quartermaster_location = "Azshara, Bay of Storms",
farming_methods = {
"Participate in the Molten Core raid",
"Complete quests given by Duke Hydraxis"
}
},
{
name = "Darkmoon Faire",
side = "Neutral",
zones = {"Elwynn Forest", "Mulgore"},
category = "Event",
quartermaster_location = "Darkmoon Island",
farming_methods = {
"Participate in monthly Darkmoon Faire events"
}
},
{
name = "Bloodsail Buccaneers",
side = "Neutral",
zones = {"Stranglethorn Vale"},
category = "Outdoor PvP",
quartermaster_location = "No Quartermaster (Rewards from pirates near Booty Bay)",
farming_methods = {
"Defeat Steamwheedle Cartel NPCs in Booty Bay",
"Avoid attacking Bloodsail Buccaneers"
}
},
{
name = "Steamwheedle Cartel",
side = "Neutral",
zones = {"Stranglethorn Vale", "Tanaris", "Winterspring", "The Barrens"},
category = "Outdoor PvE",
quartermaster_location = "Various Goblin towns (Booty Bay, Gadgetzan, Everlook, Ratchet)",
farming_methods = {
"Complete quests for the Goblin factions",
"Defeat pirates and bandits hostile to the Steamwheedle Cartel",
"Avoid attacking Goblin NPCs"
}
},
{
name = "The Aldor",
side = "Neutral",
zones = {"Shattrath City", "Shadowmoon Valley"},
category = "Faction",
quartermaster_location = "Terrace of Light, Shattrath City",
farming_methods = {
"Complete quests for the Aldor",
"Turn in Marks of Kil'jaeden and Marks of Sargeras",
"Turn in Fel Armaments"
}
},
{
name = "The Scryers",
side = "Neutral",
zones = {"Shattrath City", "Netherstorm"},
category = "Faction",
quartermaster_location = "Scryer's Tier, Shattrath City",
farming_methods = {
"Complete quests for the Scryers",
"Turn in Firewing Signets and Sunfury Signets",
"Turn in Arcane Tomes"
}
},
{
name = "Cenarion Expedition",
side = "Neutral",
zones = {"Zangarmarsh", "Blade's Edge Mountains"},
category = "Outdoor PvE",
quartermaster_location = "Cenarion Refuge, Zangarmarsh",
farming_methods = {
"Complete quests in Zangarmarsh and Blade's Edge Mountains",
"Kill Naga mobs",
"Turn in Unidentified Plant Parts"
}
},
{
name = "The Sha'tar",
side = "Neutral",
zones = {"Shattrath City", "Terokkar Forest"},
category = "Faction",
quartermaster_location = "Terrace of Light, Shattrath City",
farming_methods = {
"Complete quests in Shattrath City",
"Run Tempest Keep dungeons"
}
},
{
name = "The Consortium",
side = "Neutral",
zones = {"Netherstorm", "Nagrand"},
category = "Faction",
quartermaster_location = "Stormspire, Netherstorm",
farming_methods = {
"Complete quests in Netherstorm and Nagrand",
"Turn in Obsidian Warbeads",
"Run Mana-Tombs dungeon"
}
},
{
name = "The Violet Eye",
side = "Neutral",
zones = {"Deadwind Pass"},
category = "Raid",
quartermaster_location = "Karazhan, Deadwind Pass",
farming_methods = {
"Complete Karazhan raid"
}
},
{
name = "Lower City",
side = "Neutral",
zones = {"Shattrath City"},
category = "Faction",
quartermaster_location = "Lower City, Shattrath City",
farming_methods = {
"Complete quests in Shattrath City",
"Run Auchindoun dungeons"
}
},
{
name = "Keepers of Time",
side = "Neutral",
zones = {"Caverns of Time, Tanaris"},
category = "Dungeon PvE",
quartermaster_location = "Caverns of Time, Tanaris",
farming_methods = {
"Complete quests in Caverns of Time",
"Run Old Hillsbrad Foothills and The Black Morass dungeons"
}
},
{
name = "Honor Hold",
side = "Alliance",
zones = {"Hellfire Peninsula"},
category = "Outdoor PvE",
quartermaster_location = "Honor Hold, Hellfire Peninsula",
farming_methods = {
"Complete quests for Honor Hold",
"Run Hellfire Citadel dungeons"
}
},
{
name = "Thrallmar",
side = "Horde",
zones = {"Hellfire Peninsula"},
category = "Outdoor PvE",
quartermaster_location = "Thrallmar, Hellfire Peninsula",
farming_methods = {
"Complete quests for Thrallmar",
"Run Hellfire Citadel dungeons"
}
},
{
name = "Ogri'la",
side = "Neutral",
zones = {"Blade's Edge Mountains"},
category = "Outdoor PvE",
quartermaster_location = "Ogri'la, Blade's Edge Mountains",
farming_methods = {
"Complete daily quests for Ogri'la",
"Participate in Skyguard events"
}
},
{
name = "Netherwing",
side = "Neutral",
zones = {"Shadowmoon Valley"},
category = "Outdoor PvE",
quartermaster_location = "Netherwing Ledge, Shadowmoon Valley",
farming_methods = {
"Complete quests for Netherwing",
"Gather Netherwing Eggs",
"Participate in daily quests"
}
},
{
name = "Shattered Sun Offensive",
side = "Neutral",
zones = {"Isle of Quel'Danas"},
category = "Faction",
quartermaster_location = "Sun's Reach, Isle of Quel'Danas",
farming_methods = {
"Complete daily quests",
"Participate in the progression of Sun's Reach"
}
},
{
name = "Ashtongue Deathsworn",
side = "Neutral",
zones = {"Shadowmoon Valley", "Black Temple"},
category = "Raid",
quartermaster_location = "Black Temple, Shadowmoon Valley",
farming_methods = {
"Run Black Temple raid"
}
},
{
name = "The Sons of Hodir",
side = "Neutral",
zones = {"The Storm Peaks"},
category = "Quest",
quartermaster_location = "Dun Niffelem, The Storm Peaks",
farming_methods = {
"Complete daily quests in Dun Niffelem",
"Turn in Relics of Ulduar"
}
},
{
name = "Knights of the Ebon Blade",
side = "Neutral",
zones = {"Icecrown", "Zul'Drak"},
category = "Quest",
quartermaster_location = "Shadow Vault, Icecrown",
farming_methods = {
"Complete quests in Icecrown and Shadow Vault",
"Run dungeons wearing their tabard"
}
},
{
name = "Argent Crusade",
side = "Neutral",
zones = {"Icecrown", "Zul'Drak"},
category = "Quest",
quartermaster_location = "Argent Vanguard, Icecrown",
farming_methods = {
"Complete quests in Icecrown and Zul'Drak",
"Run dungeons wearing their tabard"
}
},
{
name = "The Wyrmrest Accord",
side = "Neutral",
zones = {"Dragonblight"},
category = "Quest",
quartermaster_location = "Wyrmrest Temple, Dragonblight",
farming_methods = {
"Complete quests in Dragonblight",
"Run dungeons wearing their tabard"
}
},
{
name = "Kirin Tor",
side = "Neutral",
zones = {"Dalaran"},
category = "Dungeon",
quartermaster_location = "Violet Citadel, Dalaran",
farming_methods = {
"Run dungeons wearing their tabard",
"Complete Dalaran daily quests"
}
},
{
name = "Frenzyheart Tribe",
side = "Neutral",
zones = {"Sholazar Basin"},
category = "Quest",
quartermaster_location = "Frenzyheart Hill, Sholazar Basin",
farming_methods = {
"Complete Frenzyheart quests in Sholazar Basin"
}
},
{
name = "The Oracles",
side = "Neutral",
zones = {"Sholazar Basin"},
category = "Quest",
quartermaster_location = "Rainspeaker Canopy, Sholazar Basin",
farming_methods = {
"Complete The Oracles quests in Sholazar Basin"
}
},
{
name = "Horde Expedition",
side = "Horde",
zones = {"Various Northrend Zones"},
category = "Faction Group",
quartermaster_location = "Various",
farming_methods = {
"Gain reputation with The Hand of Vengeance, Warsong Offensive, The Taunka, or Sunreavers"
}
},
{
name = "Alliance Vanguard",
side = "Alliance",
zones = {"Various Northrend Zones"},
category = "Faction Group",
quartermaster_location = "Various",
farming_methods = {
"Gain reputation with The Silver Covenant, Explorers' League, Valiance Expedition, or Frostborn"
}
},
{
name = "Ashen Verdict",
side = "Neutral",
zones = {"Icecrown Citadel"},
category = "Raid",
quartermaster_location = "Icecrown Citadel Entrance",
farming_methods = {
"Run Icecrown Citadel raid"
}
},
{
name = "Guardians of Hyjal",
side = "Neutral",
zones = {"Mount Hyjal"},
category = "Quest",
quartermaster_location = "Nordrassil, Mount Hyjal",
farming_methods = {
"Complete quests in Mount Hyjal",
"Run dungeons wearing their tabard"
}
},
{
name = "Therazane",
side = "Neutral",
zones = {"Deepholm"},
category = "Quest",
quartermaster_location = "Therazane's Throne, Deepholm",
farming_methods = {
"Complete quests in Deepholm",
"Run dungeons wearing their tabard"
}
},
{
name = "The Earthen Ring",
side = "Neutral",
zones = {"Deepholm", "Shimmering Expanse", "Twilight Highlands"},
category = "Quest",
quartermaster_location = "Vast Ocean, Shimmering Expanse",
farming_methods = {
"Complete quests in Deepholm and Twilight Highlands",
"Run dungeons wearing their tabard"
}
},
{
name = "Ramkahen",
side = "Neutral",
zones = {"Uldum"},
category = "Quest",
quartermaster_location = "Ramkahen, Uldum",
farming_methods = {
"Complete quests in Uldum",
"Turn in Relics of the Tol'vir"
}
},
{
name = "Dragonmaw Clan",
side = "Horde",
zones = {"Twilight Highlands"},
category = "Quest",
quartermaster_location = "Bloodgulch, Twilight Highlands",
farming_methods = {
"Complete quests in Twilight Highlands",
"Run dungeons wearing their tabard"
}
},
{
name = "Wildhammer Clan",
side = "Alliance",
zones = {"Twilight Highlands"},
category = "Quest",
quartermaster_location = "Thundermar, Twilight Highlands",
farming_methods = {
"Complete quests in Twilight Highlands",
"Run dungeons wearing their tabard"
}
},
{
name = "Baradin's Wardens",
side = "Alliance",
zones = {"Tol Barad Peninsula"},
category = "PvP",
quartermaster_location = "Baradin Base Camp, Tol Barad Peninsula",
farming_methods = {
"Complete daily quests in Tol Barad",
"Participate in Tol Barad battles"
}
},
{
name = "Hellscream's Reach",
side = "Horde",
zones = {"Tol Barad Peninsula"},
category = "PvP",
quartermaster_location = "Hellscream's Grasp, Tol Barad Peninsula",
farming_methods = {
"Complete daily quests in Tol Barad",
"Participate in Tol Barad battles"
}
},
{
name = "Avengers of Hyjal",
side = "Neutral",
zones = {"Firelands"},
category = "Raid",
quartermaster_location = "Firelands Entrance",
farming_methods = {
"Run Firelands raid"
}
},
{
name = "The Tillers",
side = "Neutral",
zones = {"Valley of the Four Winds"},
category = "Quest",
quartermaster_location = "Halfhill, Valley of the Four Winds",
farming_methods = {
"Complete daily quests in Halfhill",
"Grow crops on your farm"
}
},
{
name = "Golden Lotus",
side = "Neutral",
zones = {"Vale of Eternal Blossoms"},
category = "Quest",
quartermaster_location = "Golden Pagoda, Vale of Eternal Blossoms",
farming_methods = {
"Complete daily quests in Vale of Eternal Blossoms",
"Kill enemies in the Vale"
}
},
{
name = "The August Celestials",
side = "Neutral",
zones = {"Various Zones"},
category = "Quest",
quartermaster_location = "Various Celestial Temples",
farming_methods = {
"Complete daily quests at celestial temples in Pandaria"
}
},
{
name = "The Shado-Pan",
side = "Neutral",
zones = {"Townlong Steppes"},
category = "Quest",
quartermaster_location = "Shado-Pan Garrison, Townlong Steppes",
farming_methods = {
"Complete daily quests at Shado-Pan Garrison",
"Complete quests in Townlong Steppes"
}
},
{
name = "The Klaxxi",
side = "Neutral",
zones = {"Dread Wastes"},
category = "Quest",
quartermaster_location = "Klaxxi'vess, Dread Wastes",
farming_methods = {
"Complete daily quests in the Dread Wastes",
"Complete storyline quests for Klaxxi"
}
},
{
name = "Order of the Cloud Serpent",
side = "Neutral",
zones = {"The Jade Forest"},
category = "Quest",
quartermaster_location = "Arbor Glen, The Jade Forest",
farming_methods = {
"Complete daily quests in Jade Forest",
"Collect Onyx Eggs"
}
},
{
name = "Operation: Shieldwall",
side = "Alliance",
zones = {"Krasarang Wilds"},
category = "Quest",
quartermaster_location = "Lion's Landing, Krasarang Wilds",
farming_methods = {
"Complete storyline quests in Krasarang Wilds",
"Complete daily quests for Operation: Shieldwall"
}
},
{
name = "Dominance Offensive",
side = "Horde",
zones = {"Krasarang Wilds"},
category = "Quest",
quartermaster_location = "Domination Point, Krasarang Wilds",
farming_methods = {
"Complete storyline quests in Krasarang Wilds",
"Complete daily quests for Dominance Offensive"
}
},
{
name = "The Anglers",
side = "Neutral",
zones = {"Krasarang Wilds"},
category = "Fishing",
quartermaster_location = "Anglers Wharf, Krasarang Wilds",
farming_methods = {
"Complete daily fishing quests at Anglers Wharf",
"Fish in Pandaria zones"
}
},
{
name = "The Black Prince",
side = "Neutral",
zones = {"Various Zones"},
category = "Legendary Quest",
quartermaster_location = "No specific location",
farming_methods = {
"Complete Wrathion's legendary questline",
"Farm mobs and bosses in Pandaria raids and zones"
}
},
{
name = "The Celestials",
side = "Neutral",
zones = {"Timeless Isle"},
category = "Raid",
quartermaster_location = "Timeless Isle",
farming_methods = {
"Defeat world bosses on the Timeless Isle"
}
},
{
name = "Emperor Shaohao",
side = "Neutral",
zones = {"Timeless Isle"},
category = "Grinding",
quartermaster_location = "Timeless Isle",
farming_methods = {
"Farm mobs on the Timeless Isle"
}
},
{
name = "Council of Exarchs",
side = "Alliance",
zones = {"Shadowmoon Valley"},
category = "Quest",
quartermaster_location = "Stormshield, Ashran",
farming_methods = {
"Complete quests in Shadowmoon Valley",
"Farm mobs in relevant zones"
}
},
{
name = "Frostwolf Orcs",
side = "Horde",
zones = {"Frostfire Ridge"},
category = "Quest",
quartermaster_location = "Warspear, Ashran",
farming_methods = {
"Complete quests in Frostfire Ridge",
"Farm mobs in relevant zones"
}
},
{
name = "Arakkoa Outcasts",
side = "Neutral",
zones = {"Spires of Arak"},
category = "Quest",
quartermaster_location = "Spires of Arak",
farming_methods = {
"Complete quests in Spires of Arak",
"Run dungeons wearing their tabard",
"Farm mobs in Spires of Arak"
}
},
{
name = "Steamwheedle Preservation Society",
side = "Neutral",
zones = {"Nagrand"},
category = "Grinding",
quartermaster_location = "Nagrand",
farming_methods = {
"Farm mobs in Nagrand",
"Turn in Highmaul Relics"
}
},
{
name = "Sha'tari Defense",
side = "Alliance",
zones = {"Talador"},
category = "Quest",
quartermaster_location = "Stormshield, Ashran",
farming_methods = {
"Farm mobs in Talador",
"Complete quests in relevant areas"
}
},
{
name = "Laughing Skull Orcs",
side = "Horde",
zones = {"Gorgrond"},
category = "Grinding",
quartermaster_location = "Warspear, Ashran",
farming_methods = {
"Farm mobs in Gorgrond",
"Complete quests in relevant areas"
}
},
{
name = "Hand of the Prophet",
side = "Alliance",
zones = {"Tanaan Jungle"},
category = "Quest",
quartermaster_location = "Lion's Watch, Tanaan Jungle",
farming_methods = {
"Complete daily quests in Tanaan Jungle",
"Farm mobs in Tanaan Jungle"
}
},
{
name = "Vol'jin's Headhunters",
side = "Horde",
zones = {"Tanaan Jungle"},
category = "Quest",
quartermaster_location = "Vol'mar, Tanaan Jungle",
farming_methods = {
"Complete daily quests in Tanaan Jungle",
"Farm mobs in Tanaan Jungle"
}
},
{
name = "The Saberstalkers",
side = "Neutral",
zones = {"Tanaan Jungle"},
category = "Grinding",
quartermaster_location = "Fang'rila, Tanaan Jungle",
farming_methods = {
"Farm elites in Fang'rila",
"Complete daily quests for The Saberstalkers"
}
},
{
name = "Order of the Awakened",
side = "Neutral",
zones = {"Tanaan Jungle"},
category = "Quest",
quartermaster_location = "Tanaan Jungle",
farming_methods = {
"Complete daily quests in Tanaan Jungle",
"Collect and turn in Fel-Corrupted Apexis Fragments"
}
},
{
name = "Court of Farondis",
side = "Neutral",
zones = {"Azsuna"},
category = "Quest",
quartermaster_location = "Lunarwing Shallows, Azsuna",
farming_methods = {
"Complete world quests in Azsuna",
"Turn in emissary quests for Court of Farondis"
}
},
{
name = "Dreamweavers",
side = "Neutral",
zones = {"Val'sharah"},
category = "Quest",
quartermaster_location = "Lorlathil, Val'sharah",
farming_methods = {
"Complete world quests in Val'sharah",
"Turn in emissary quests for Dreamweavers"
}
},
{
name = "Highmountain Tribe",
side = "Neutral",
zones = {"Highmountain"},
category = "Quest",
quartermaster_location = "Thunder Totem, Highmountain",
farming_methods = {
"Complete world quests in Highmountain",
"Turn in emissary quests for Highmountain Tribe"
}
},
{
name = "Valarjar",
side = "Neutral",
zones = {"Stormheim"},
category = "Quest",
quartermaster_location = "Valdisdall, Stormheim",
farming_methods = {
"Complete world quests in Stormheim",
"Turn in emissary quests for Valarjar"
}
},
{
name = "The Wardens",
side = "Neutral",
zones = {"Broken Isles"},
category = "Quest",
quartermaster_location = "Wardens' Redoubt, Azsuna",
farming_methods = {
"Complete Warden world quests on the Broken Isles",
"Turn in emissary quests for The Wardens"
}
},
{
name = "The Nightfallen",
side = "Neutral",
zones = {"Suramar"},
category = "Quest",
quartermaster_location = "Shal'Aran, Suramar",
farming_methods = {
"Complete quests and world quests in Suramar",
"Turn in emissary quests for The Nightfallen",
"Farm Arcane Mana for additional reputation"
}
},
{
name = "Armies of Legionfall",
side = "Neutral",
zones = {"Broken Shore"},
category = "Quest",
quartermaster_location = "Deliverance Point, Broken Shore",
farming_methods = {
"Complete world quests on the Broken Shore",
"Turn in emissary quests for Legionfall"
}
},
{
name = "Army of the Light",
side = "Neutral",
zones = {"Argus"},
category = "Quest",
quartermaster_location = "Krokuun, Argus",
farming_methods = {
"Complete world quests on Argus",
"Turn in emissary quests for Army of the Light"
}
},
{
name = "Argussian Reach",
side = "Neutral",
zones = {"Argus"},
category = "Quest",
quartermaster_location = "Krokul Hovel, Argus",
farming_methods = {
"Complete world quests on Argus",
"Turn in emissary quests for Argussian Reach"
}
},
{
name = "Talon's Vengeance",
side = "Neutral",
zones = {"Broken Isles"},
category = "PvP",
quartermaster_location = "Sparring Arena, Highmountain",
farming_methods = {
"Use Ivory Talon to attack players while in PvP combat",
"Turn in Marks of Prey for reputation"
}
},
{
name = "7th Legion",
side = "Alliance",
zones = {"Zandalar", "Kul Tiras", "Warfronts"},
category = "War Campaign",
quartermaster_location = "Boralus, Tiragarde Sound",
farming_methods = {
"Complete war campaign quests",
"Complete world quests in Zandalar",
"Participate in Warfronts"
}
},
{
name = "The Honorbound",
side = "Horde",
zones = {"Zandalar", "Kul Tiras", "Warfronts"},
category = "War Campaign",
quartermaster_location = "Dazar'alor, Zuldazar",
farming_methods = {
"Complete war campaign quests",
"Complete world quests in Kul Tiras",
"Participate in Warfronts"
}
},
{
name = "Proudmoore Admiralty",
side = "Alliance",
zones = {"Tiragarde Sound"},
category = "Quest",
quartermaster_location = "Boralus, Tiragarde Sound",
farming_methods = {
"Complete world quests in Tiragarde Sound",
"Turn in emissary quests for Proudmoore Admiralty"
}
},
{
name = "Order of Embers",
side = "Alliance",
zones = {"Drustvar"},
category = "Quest",
quartermaster_location = "Fallhaven, Drustvar",
farming_methods = {
"Complete world quests in Drustvar",
"Turn in emissary quests for Order of Embers"
}
},
{
name = "Storm's Wake",
side = "Alliance",
zones = {"Stormsong Valley"},
category = "Quest",
quartermaster_location = "Brennadam, Stormsong Valley",
farming_methods = {
"Complete world quests in Stormsong Valley",
"Turn in emissary quests for Storm's Wake"
}
},
{
name = "Zandalari Empire",
side = "Horde",
zones = {"Zuldazar"},
category = "Quest",
quartermaster_location = "The Zocalo, Zuldazar",
farming_methods = {
"Complete world quests in Zuldazar",
"Turn in emissary quests for Zandalari Empire"
}
},
{
name = "Talanji's Expedition",
side = "Horde",
zones = {"Nazmir"},
category = "Quest",
quartermaster_location = "Zul'jan, Nazmir",
farming_methods = {
"Complete world quests in Nazmir",
"Turn in emissary quests for Talanji's Expedition"
}
},
{
name = "Voldunai",
side = "Horde",
zones = {"Vol'dun"},
category = "Quest",
quartermaster_location = "Vulpera Hideaway, Vol'dun",
farming_methods = {
"Complete world quests in Vol'dun",
"Turn in emissary quests for Voldunai"
}
},
{
name = "Champions of Azeroth",
side = "Neutral",
zones = {"Zandalar", "Kul Tiras", "Silithus"},
category = "Quest",
quartermaster_location = "Silithus: The Wound",
farming_methods = {
"Complete world quests across Zandalar and Kul Tiras",
"Turn in emissary quests for Champions of Azeroth"
}
},
{
name = "Tortollan Seekers",
side = "Neutral",
zones = {"Zandalar", "Kul Tiras"},
category = "Quest",
quartermaster_location = "Seekers' Outpost, Zuldazar",
farming_methods = {
"Complete Tortollan world quests in Zandalar and Kul Tiras",
"Turn in emissary quests for Tortollan Seekers"
}
},
{
name = "Rustbolt Resistance",
side = "Neutral",
zones = {"Mechagon"},
category = "Quest",
quartermaster_location = "Rustbolt, Mechagon",
farming_methods = {
"Complete daily quests in Mechagon",
"Kill rare mobs and complete special events in Mechagon"
}
},
{
name = "Waveblade Ankoan",
side = "Alliance",
zones = {"Nazjatar"},
category = "Quest",
quartermaster_location = "Mezzamere, Nazjatar",
farming_methods = {
"Complete world quests in Nazjatar",
"Complete daily quests in Mezzamere"
}
},
{
name = "The Unshackled",
side = "Horde",
zones = {"Nazjatar"},
category = "Quest",
quartermaster_location = "Newhome, Nazjatar",
farming_methods = {
"Complete world quests in Nazjatar",
"Complete daily quests in Newhome"
}
},
{
name = "Rajani",
side = "Neutral",
zones = {"Vale of Eternal Blossoms"},
category = "Quest",
quartermaster_location = "Mistfall Village, Vale of Eternal Blossoms",
farming_methods = {
"Complete assaults in Vale of Eternal Blossoms",
"Complete Rajani world quests"
}
},
{
name = "Uldum Accord",
side = "Neutral",
zones = {"Uldum"},
category = "Quest",
quartermaster_location = "Ramkahen, Uldum",
farming_methods = {
"Complete assaults in Uldum",
"Complete Uldum Accord world quests"
}
},
{
name = "The Ascended",
side = "Neutral",
zones = {"Bastion"},
category = "Quest",
quartermaster_location = "Hero's Rest, Bastion",
farming_methods = {