-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathWoWQuestions.lua
More file actions
3768 lines (2752 loc) · 177 KB
/
Copy pathWoWQuestions.lua
File metadata and controls
3768 lines (2752 loc) · 177 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
WOW_TRIVIA_QUESTIONS = {};
WOW_TRIVIA_ANSWERS1 = {};
WOW_TRIVIA_ANSWERS2 = {};
WOW_TRIVIA_ANSWERS3 = {};
WOW_TRIVIA_ANSWERS4 = {};
WOW_TRIVIA_ANSWERS5 = {};
WOW_TRIVIA_ANSWERS6 = {};
WOW_TRIVIA_ANSWERS7 = {};
WOW_TRIVIA_ANSWERS8 = {};
WOW_TRIVIA_QUESTIONS[1] = "Who is the third boss in Blackwing Lair?";
WOW_TRIVIA_ANSWERS1[1] = "Broodlord Lashlayer";
WOW_TRIVIA_ANSWERS2[1] = "Broodlord";
WOW_TRIVIA_QUESTIONS[2] = "What is the minimum level requirement for artisan skills? (1-60)";
WOW_TRIVIA_ANSWERS1[2] = "35";
WOW_TRIVIA_ANSWERS2[2] = "thirtyfive";
WOW_TRIVIA_ANSWERS3[2] = "thirty five";
WOW_TRIVIA_QUESTIONS[3] = "Which class can cast 'blessings'?";
WOW_TRIVIA_ANSWERS1[3] = "Paladins";
WOW_TRIVIA_ANSWERS2[3] = "Paladin";
WOW_TRIVIA_QUESTIONS[4] = "What is the zone north of Blasted Lands called? (full name)";
WOW_TRIVIA_ANSWERS1[4] = "Swamp of Sorrows";
WOW_TRIVIA_QUESTIONS[5] = "What is the busiest Alliance city?";
WOW_TRIVIA_ANSWERS1[5] = "Ironforge";
WOW_TRIVIA_ANSWERS2[5] = "IF";
WOW_TRIVIA_QUESTIONS[6] = "In which instance does General Drakkisath reside?";
WOW_TRIVIA_ANSWERS1[6] = "UBRS";
WOW_TRIVIA_ANSWERS2[6] = "Upper Blackrock Spire";
WOW_TRIVIA_QUESTIONS[7] = "What is Leeroy's surname?";
WOW_TRIVIA_ANSWERS1[7] = "Jenkins";
WOW_TRIVIA_QUESTIONS[8] = "What race has the 'Will of the Forsaken' racial ability?";
WOW_TRIVIA_ANSWERS1[8] = "Undead";
WOW_TRIVIA_ANSWERS2[8] = "Undeads";
WOW_TRIVIA_ANSWERS3[8] = "The Forsaken";
WOW_TRIVIA_ANSWERS4[8] = "Forsaken";
WOW_TRIVIA_QUESTIONS[9] = "What are low-leveled, buffed characters usually called?";
WOW_TRIVIA_ANSWERS1[9] = "Twinks";
WOW_TRIVIA_ANSWERS2[9] = "Twink";
WOW_TRIVIA_ANSWERS3[9] = "Twinked";
WOW_TRIVIA_QUESTIONS[10] = "Where does each class-specific tier 0 (ex. Lightforge) leggings drop?";
WOW_TRIVIA_ANSWERS1[10] = "Stratholme UD";
WOW_TRIVIA_ANSWERS2[10] = "Stratholme";
WOW_TRIVIA_ANSWERS3[10] = "strat";
WOW_TRIVIA_QUESTIONS[11] = "With whom must you reach exalted with to be able to buy 'The Unstoppable Force' (name one of the factions)?";
WOW_TRIVIA_ANSWERS1[11] = "stormpike";
WOW_TRIVIA_ANSWERS2[11] = "frostwolf";
WOW_TRIVIA_QUESTIONS[12] = "Who is the final boss in Molten Core?";
WOW_TRIVIA_ANSWERS1[12] = "Ragnaros";
WOW_TRIVIA_ANSWERS2[12] = "Ragnaros the Firelord";
WOW_TRIVIA_QUESTIONS[13] = "What does an orange-colored text on an item refer to?";
WOW_TRIVIA_ANSWERS1[13] = "Legendary Quality";
WOW_TRIVIA_ANSWERS2[13] = "legendary";
WOW_TRIVIA_QUESTIONS[14] = "What does a purple-colored text on an item refer to?";
WOW_TRIVIA_ANSWERS1[14] = "Epic Quality";
WOW_TRIVIA_ANSWERS2[14] = "epic";
WOW_TRIVIA_QUESTIONS[15] = "What does a blue-colored text on an item refer to?";
WOW_TRIVIA_ANSWERS1[15] = "Rare Quality";
WOW_TRIVIA_ANSWERS2[15] = "rare";
WOW_TRIVIA_QUESTIONS[16] = "What does a green-colored text on an item refer to?";
WOW_TRIVIA_ANSWERS1[16] = "Uncommon Quality";
WOW_TRIVIA_ANSWERS2[16] = "uncommon";
WOW_TRIVIA_QUESTIONS[17] = "Which of these pre-tbc end-game raiding instances is limited to 20 members? (UBRS, MC, AQ40, ZG, BWL";
WOW_TRIVIA_ANSWERS1[17] = "Zul'Gurub";
WOW_TRIVIA_ANSWERS2[17] = "ZG";
WOW_TRIVIA_ANSWERS3[17] = "Zul Gurub";
WOW_TRIVIA_QUESTIONS[18] = "What is the lowest level requirement for an epic weapon?";
WOW_TRIVIA_ANSWERS1[18] = "35";
WOW_TRIVIA_ANSWERS2[18] = "thirty five";
WOW_TRIVIA_QUESTIONS[19] = "The Elements set corresponds to which class?";
WOW_TRIVIA_ANSWERS1[19] = "Shaman";
WOW_TRIVIA_ANSWERS2[19] = "Shammy";
WOW_TRIVIA_QUESTIONS[20] = "What is the tier 2 Priest set called?";
WOW_TRIVIA_ANSWERS1[20] = "Vestments of Transcendence";
WOW_TRIVIA_ANSWERS2[20] = "Transcendence";
WOW_TRIVIA_QUESTIONS[21] = "The Barrens was once a great forest under the protection of the Kaldorei's. (True/False)?";
WOW_TRIVIA_ANSWERS1[21] = "True";
WOW_TRIVIA_QUESTIONS[22] = "The three bugs in AQ40 are called Vem, Kri and ...?";
WOW_TRIVIA_ANSWERS1[22] = "Princess Yauj";
WOW_TRIVIA_ANSWERS2[22] = "Yauj";
WOW_TRIVIA_QUESTIONS[23] = "The abbreviation 'Org' refers to?";
WOW_TRIVIA_ANSWERS1[23] = "Orgrimmar";
WOW_TRIVIA_QUESTIONS[24] = "Duskbat Pelt drops in which zone?";
WOW_TRIVIA_ANSWERS1[24] = "Tirisfal Glades";
WOW_TRIVIA_ANSWERS2[24] = "Tirisfal";
WOW_TRIVIA_QUESTIONS[25] = "Lethtendris in Dire Maul is what race?";
WOW_TRIVIA_ANSWERS1[25] = "Blood Elf";
WOW_TRIVIA_QUESTIONS[26] = "Which of these classes cannot duel-wield? (Warrior, Paladin, Rogue)";
WOW_TRIVIA_ANSWERS1[26] = "Paladins";
WOW_TRIVIA_ANSWERS2[26] = "Paladin";
WOW_TRIVIA_QUESTIONS[27] = "In which major city can the NPC Renzik 'The Shiv' be found?";
WOW_TRIVIA_ANSWERS1[27] = "Stormwind";
WOW_TRIVIA_ANSWERS2[27] = "SW";
WOW_TRIVIA_QUESTIONS[28] = "Negolash is found wandering off which zone's coast?";
WOW_TRIVIA_ANSWERS1[28] = "Stranglethorn Vale";
WOW_TRIVIA_ANSWERS2[28] = "STV";
WOW_TRIVIA_QUESTIONS[29] = "Which class can cast 'Unending Breath'?";
WOW_TRIVIA_ANSWERS1[29] = "Warlocks";
WOW_TRIVIA_ANSWERS2[29] = "Warlock";
WOW_TRIVIA_QUESTIONS[30] = "Goblin Rocket Fuel can be used for Cooking. (True/False)?";
WOW_TRIVIA_ANSWERS1[30] = "true";
WOW_TRIVIA_QUESTIONS[31] = "For humans, the starting place is called?";
WOW_TRIVIA_ANSWERS1[31] = "Northshire Valley";
WOW_TRIVIA_ANSWERS2[31] = "northshire";
WOW_TRIVIA_ANSWERS3[31] = "northshire abbey";
WOW_TRIVIA_QUESTIONS[32] = "The King of Ironforge is called?";
WOW_TRIVIA_ANSWERS1[32] = "Magni Bronzebeard";
WOW_TRIVIA_ANSWERS2[32] = "bronzebeard";
WOW_TRIVIA_QUESTIONS[33] = "Using the Seal of Ascension in UBRS summons which Dragon?";
WOW_TRIVIA_ANSWERS1[33] = "Vaelastrasz";
WOW_TRIVIA_ANSWERS1[33] = "Vaelastrasz the Red";
WOW_TRIVIA_QUESTIONS[34] = "Which enchanting dust is the highest ingame at the moment?";
WOW_TRIVIA_ANSWERS1[34] = "Arcane";
WOW_TRIVIA_ANSWERS2[34] = "Arcane Dust";
WOW_TRIVIA_QUESTIONS[35] = "The cooldown on making Mooncloth is ____ days";
WOW_TRIVIA_ANSWERS1[35] = "Four";
WOW_TRIVIA_ANSWERS2[35] = "4";
WOW_TRIVIA_QUESTIONS[36] = "The Emerald Dragons are Ysondre, Emeriss, Taerar and _____?";
WOW_TRIVIA_ANSWERS1[36] = "Lethon";
WOW_TRIVIA_QUESTIONS[37] = "The first wow expansion is called? (full name)";
WOW_TRIVIA_ANSWERS1[37] = "The Burning Crusade";
WOW_TRIVIA_ANSWERS2[37] = "Burnign Crusade";
WOW_TRIVIA_QUESTIONS[38] = "Name a secondary trade skill.";
WOW_TRIVIA_ANSWERS1[38] = "First Aid";
WOW_TRIVIA_ANSWERS2[38] = "Fishing";
WOW_TRIVIA_ANSWERS3[38] = "Cooking";
WOW_TRIVIA_QUESTIONS[39] = "How much reputation does it take to get from revered to exalted?";
WOW_TRIVIA_ANSWERS1[39] = "21000";
WOW_TRIVIA_ANSWERS2[39] = "21k";
WOW_TRIVIA_ANSWERS3[39] = "21,000";
WOW_TRIVIA_QUESTIONS[40] = "To which zone can Druids teleport?";
WOW_TRIVIA_ANSWERS1[40] = "Moonglade";
WOW_TRIVIA_QUESTIONS[41] = "Which AQ40 boss drops the tanking trinket The Burrower's Shell?"
WOW_TRIVIA_ANSWERS1[41] = "Ouro";
WOW_TRIVIA_QUESTIONS[42] = "The enchant 'Enchant Chest - Major Mana' requires how many Lesser Eternal Essences?";
WOW_TRIVIA_ANSWERS1[42] = "Zero";
WOW_TRIVIA_ANSWERS2[42] = "0";
WOW_TRIVIA_QUESTIONS[43] = "The item 'Smite's Mighty Hammer' is what weapon-type?";
WOW_TRIVIA_ANSWERS1[43] = "Mace";
WOW_TRIVIA_ANSWERS2[43] = "a mace";
WOW_TRIVIA_QUESTIONS[44] = "_______ of Power consist of Zul'Gurub Coins, Bijous and Primal Hakkari items that can be obtained in Zul'Gurub.";
WOW_TRIVIA_ANSWERS1[44] = "Paragons";
WOW_TRIVIA_ANSWERS2[44] = "Paragon";
WOW_TRIVIA_QUESTIONS[45] = "The dungeon 'Maraudon' was released in which content patch?";
WOW_TRIVIA_ANSWERS1[45] = "1.2";
WOW_TRIVIA_QUESTIONS[46] = "In order to summon the Avatar of Hakkar in the Sunken Temple, you need 4x of what item?";
WOW_TRIVIA_ANSWERS1[46] = "Blood of Hakkar";
WOW_TRIVIA_ANSWERS2[46] = "blood";
WOW_TRIVIA_QUESTIONS[47] = "Reginald Windsor plays a part in what major Alliance quest chain?";
WOW_TRIVIA_ANSWERS1[47] = "Onyxia Key";
WOW_TRIVIA_ANSWERS2[47] = "Onyxia";
WOW_TRIVIA_ANSWERS3[47] = "Ony";
WOW_TRIVIA_QUESTIONS[48] = "Gnomes can purchase their mount just outside Ironforge, at _______'s Depot.";
WOW_TRIVIA_ANSWERS1[48] = "Steelgrill's Depot";
WOW_TRIVIA_ANSWERS2[48] = "Steelgrill";
WOW_TRIVIA_ANSWERS3[48] = "Steelgrill's";
WOW_TRIVIA_QUESTIONS[49] = "Cured Medium Hide can be created by leatherworkers of what skill level?";
WOW_TRIVIA_ANSWERS1[49] = "100";
WOW_TRIVIA_ANSWERS2[49] = "one hundred";
WOW_TRIVIA_QUESTIONS[50] = "Which class can cast Moonfire?";
WOW_TRIVIA_ANSWERS1[50] = "Druids";
WOW_TRIVIA_ANSWERS2[50] = "Druid";
WOW_TRIVIA_QUESTIONS[51] = "By how much does a Priest's Inner Focus spell increase crit chance?";
WOW_TRIVIA_ANSWERS1[51] = "25%";
WOW_TRIVIA_ANSWERS2[51] = "25";
WOW_TRIVIA_QUESTIONS[52] = "Which class has a talent tree called 'protection'?";
WOW_TRIVIA_ANSWERS1[52] = "Warriors";
WOW_TRIVIA_ANSWERS2[52] = "Warrior";
WOW_TRIVIA_QUESTIONS[53] = "The first boss in AQ40 is called?";
WOW_TRIVIA_ANSWERS1[53] = "The Prophet Skeram";
WOW_TRIVIA_ANSWERS2[53] = "Prophet Skeram";
WOW_TRIVIA_ANSWERS3[53] = "Skeram";
WOW_TRIVIA_QUESTIONS[54] = "Anubisath Defenders in AQ40 have 2 abilities they use close to death. Name one?";
WOW_TRIVIA_ANSWERS1[54] = "Enrage or Explode";
WOW_TRIVIA_ANSWERS2[54] = "Enrage";
WOW_TRIVIA_ANSWERS3[54] = "Explode";
WOW_TRIVIA_QUESTIONS[55] = "Blackwing Lair was released in which content patch?";
WOW_TRIVIA_ANSWERS1[55] = "1.6";
WOW_TRIVIA_QUESTIONS[56] = "To enter Blackwing Lair via the shortcut you need to touch an item called the _________?";
WOW_TRIVIA_ANSWERS1[56] = "Orb of Command";
WOW_TRIVIA_QUESTIONS[57] = "Name one of the flying Dragons of Blackwing Lair.";
WOW_TRIVIA_ANSWERS1[57] = "Ebonroc";
WOW_TRIVIA_ANSWERS2[57] = "Flamegor";
WOW_TRIVIA_ANSWERS3[57] = "Firemaw";
WOW_TRIVIA_ANSWERS4[57] = "Nefarian";
WOW_TRIVIA_QUESTIONS[58] = "Chromaggus's Brood Affliction: Blue is what kind of debuff type?";
WOW_TRIVIA_ANSWERS1[58] = "magic";
WOW_TRIVIA_QUESTIONS[59] = "The tier 2 shoulders drop from which boss?";
WOW_TRIVIA_ANSWERS1[59] = "Chromaggus";
WOW_TRIVIA_QUESTIONS[60] = "Acronyms: What does ZF stand for?";
WOW_TRIVIA_ANSWERS1[60] = "Zul'Farrak";
WOW_TRIVIA_ANSWERS2[60] = "zulfarrak";
WOW_TRIVIA_ANSWERS3[60] = "zul farrak";
WOW_TRIVIA_QUESTIONS[61] = "Acronyms: What does ZG stand for?";
WOW_TRIVIA_ANSWERS1[61] = "Zul'Gurub";
WOW_TRIVIA_ANSWERS2[61] = "zulgurub";
WOW_TRIVIA_ANSWERS3[61] = "zul gurub";
WOW_TRIVIA_QUESTIONS[62] = "What being was supposedly created by the Old God, C'thun, as a mockery of life?";
WOW_TRIVIA_ANSWERS1[62] = "Ouro";
WOW_TRIVIA_ANSWERS2[62] = "Ouro the Sandworm";
WOW_TRIVIA_QUESTIONS[63] = "Acronyms: What does WTT stand for?";
WOW_TRIVIA_ANSWERS1[63] = "Want To Trade";
WOW_TRIVIA_QUESTIONS[64] = "Acronyms: What does NPC stand for?";
WOW_TRIVIA_ANSWERS1[64] = "Non-Player Character";
WOW_TRIVIA_ANSWERS2[64] = "Non Player Character";
WOW_TRIVIA_ANSWERS3[64] = "Non Playing Character";
WOW_TRIVIA_QUESTIONS[65] = "Acronyms: What does ML stand for?";
WOW_TRIVIA_ANSWERS1[65] = "Master Looter";
WOW_TRIVIA_ANSWERS2[65] = "Main Loot";
WOW_TRIVIA_ANSWERS3[65] = "Masterloot";
WOW_TRIVIA_ANSWERS4[65] = "Master Loot";
WOW_TRIVIA_QUESTIONS[66] = "Acronyms: What does DPS stand for?";
WOW_TRIVIA_ANSWERS1[66] = "damage per second";
WOW_TRIVIA_QUESTIONS[67] = "Acronyms: What does PoM stand for?";
WOW_TRIVIA_ANSWERS1[67] = "Presence of Mind";
WOW_TRIVIA_QUESTIONS[68] = "Completing the quest 'Imperial Qiraji Armaments' takes how many Elementium Ore's?";
WOW_TRIVIA_ANSWERS1[68] = "Three";
WOW_TRIVIA_ANSWERS2[68] = "3";
WOW_TRIVIA_QUESTIONS[69] = "The debuff 'Veil of Shadow' reduces healing by what percentage?";
WOW_TRIVIA_ANSWERS1[69] = "75";
WOW_TRIVIA_ANSWERS2[69] = "seventy-five";
WOW_TRIVIA_QUESTIONS[70] = "Guess The Zone: A Desert Zone with a Goblin town in it.";
WOW_TRIVIA_ANSWERS1[70] = "Tanaris";
WOW_TRIVIA_QUESTIONS[71] = "Guess The Zone: A Tropical Zone, with lots of coastlines, and a Goblin Port.";
WOW_TRIVIA_ANSWERS1[71] = "STV";
WOW_TRIVIA_ANSWERS2[71] = "Stranglethorn Vale";
WOW_TRIVIA_QUESTIONS[72] = "Guess The Zone: Has volcanic terrain, and 'The Cauldron'.";
WOW_TRIVIA_ANSWERS1[72] = "Searing Gorge";
WOW_TRIVIA_QUESTIONS[73] = "Guess The Zone: A Tropical Zone, which has a dark portal, and a mountain you can parachute off.";
WOW_TRIVIA_ANSWERS1[73] = "Feralas";
WOW_TRIVIA_QUESTIONS[74] = "Guess The Zone: A Diseased wooded zone with special plants.";
WOW_TRIVIA_ANSWERS1[74] = "Felwood";
WOW_TRIVIA_QUESTIONS[75] = "Guess The Zone: A Winter Zone which has hot springs.";
WOW_TRIVIA_ANSWERS1[75] = "Winterspring";
WOW_TRIVIA_QUESTIONS[76] = "the PvP 'Grunts' rank were which rank?";
WOW_TRIVIA_ANSWERS1[76] = "Two";
WOW_TRIVIA_ANSWERS2[76] = "2";
WOW_TRIVIA_QUESTIONS[77] = "The Maker's Terrace can be found outside which instance?";
WOW_TRIVIA_ANSWERS1[77] = "Uldaman";
WOW_TRIVIA_ANSWERS2[77] = "Ulda";
WOW_TRIVIA_QUESTIONS[78] = "'Clam Chowder' grants a well fed buff with how much spirit and stamina?";
WOW_TRIVIA_ANSWERS1[78] = "Zero";
WOW_TRIVIA_ANSWERS2[78] = "0";
WOW_TRIVIA_QUESTIONS[79] = "'Tender Wolf Steak' grants a well fed buff with how much spirit and stamina?";
WOW_TRIVIA_ANSWERS1[79] = "Twelve";
WOW_TRIVIA_ANSWERS2[79] = "12";
WOW_TRIVIA_QUESTIONS[80] = "What is the cooldown of the 'Transmute: Arcanite' skill?";
WOW_TRIVIA_ANSWERS1[80] = "48 hours";
WOW_TRIVIA_ANSWERS2[80] = "2 days";
WOW_TRIVIA_ANSWERS3[80] = "two days";
WOW_TRIVIA_QUESTIONS[81] = "How many primary and secondary professions are there all together?";
WOW_TRIVIA_ANSWERS1[81] = "Fourteen";
WOW_TRIVIA_ANSWERS2[81] = "14";
WOW_TRIVIA_QUESTIONS[82] = "How many copper bars are required to make 1x copper chain pants?";
WOW_TRIVIA_ANSWERS1[82] = "Four";
WOW_TRIVIA_ANSWERS2[82] = "4";
WOW_TRIVIA_QUESTIONS[83] = "How much does a linen bandage heal for (per second)?";
WOW_TRIVIA_ANSWERS1[83] = "Eleven";
WOW_TRIVIA_ANSWERS2[83] = "11";
WOW_TRIVIA_QUESTIONS[84] = "What is the only class totally devoid of healing effects?";
WOW_TRIVIA_ANSWERS1[84] = "Mage";
WOW_TRIVIA_ANSWERS2[84] = "Mages";
WOW_TRIVIA_QUESTIONS[85] = "Which Horde races cannot be a Shaman?";
WOW_TRIVIA_ANSWERS1[85] = "Undeads and Blood Elves";
WOW_TRIVIA_ANSWERS2[85] = "Blood Elves and Undeads";
WOW_TRIVIA_QUESTIONS[86] = "The Valley Of Trials is the starting area for which races (name at least one)?";
WOW_TRIVIA_ANSWERS1[86] = "Orcs and Trolls";
WOW_TRIVIA_ANSWERS2[86] = "Orcs";
WOW_TRIVIA_ANSWERS3[86] = "Trolls";
WOW_TRIVIA_QUESTIONS[87] = "How many weapon types are there (like one-handed sword, two-handed sword, dagger etc.)?";
WOW_TRIVIA_ANSWERS1[87] = "Sixteen";
WOW_TRIVIA_ANSWERS2[87] = "16";
WOW_TRIVIA_QUESTIONS[88] = "What is the name of the zone that lies west of Tanaris?";
WOW_TRIVIA_ANSWERS1[88] = "Un'Goro Crater";
WOW_TRIVIA_ANSWERS2[88] = "Un'Goro";
WOW_TRIVIA_ANSWERS3[88] = "UnGoro";
WOW_TRIVIA_QUESTIONS[89] = "How many combinations of races(8) and classes(9) can be made?";
WOW_TRIVIA_ANSWERS1[89] = "Forty";
WOW_TRIVIA_ANSWERS2[89] = "40";
WOW_TRIVIA_QUESTIONS[90] = "What continent in Azeroth has two Horde capital cities?";
WOW_TRIVIA_ANSWERS1[90] = "Kalimdor";
WOW_TRIVIA_QUESTIONS[91] = "Attempting to swim the Great Sea will ultimatly lead to death by _____?";
WOW_TRIVIA_ANSWERS1[91] = "Fatigue";
WOW_TRIVIA_QUESTIONS[92] = "Name one of the continents in Azeroth that actually is ingame and accessible?";
WOW_TRIVIA_ANSWERS1[92] = "Eastern Kingdoms";
WOW_TRIVIA_ANSWERS2[92] = "Kalimdor";
WOW_TRIVIA_QUESTIONS[93] = "What new profession came in the expansion? (full name)";
WOW_TRIVIA_ANSWERS1[93] = "Jewelcrafting";
WOW_TRIVIA_QUESTIONS[94] = "Essence of the Red in the Vaelastrasz encounter restores how much energy per second?";
WOW_TRIVIA_ANSWERS1[94] = "Fifty";
WOW_TRIVIA_ANSWERS2[94] = "50";
WOW_TRIVIA_QUESTIONS[95] = "The transport mechanism between the southern Barrens and Thousand Needles is called?";
WOW_TRIVIA_ANSWERS1[95] = "The Great Lift";
WOW_TRIVIA_ANSWERS2[95] = "great lift";
WOW_TRIVIA_QUESTIONS[96] = "'Skull Rock' is found in which zone?";
WOW_TRIVIA_ANSWERS1[96] = "Durotar";
WOW_TRIVIA_QUESTIONS[97] = "Sven and Lars can be found at which camp?";
WOW_TRIVIA_ANSWERS1[97] = "Rebel Camp";
WOW_TRIVIA_ANSWERS2[97] = "Rebel";
WOW_TRIVIA_QUESTIONS[98] = "Larion's companion in Un'Goro Crater is called?";
WOW_TRIVIA_ANSWERS1[98] = "Muigin";
WOW_TRIVIA_ANSWERS2[98] = "Muigi";
WOW_TRIVIA_QUESTIONS[99] = "Sten Stoutarm starts intrepid adventurers of which race(s) on their first quest?";
WOW_TRIVIA_ANSWERS1[99] = "Gnomes and dwarves";
WOW_TRIVIA_ANSWERS2[99] = "Gnomes";
WOW_TRIVIA_ANSWERS3[99] = "dwarves";
WOW_TRIVIA_QUESTIONS[100] = "The Icebane set grants resistence to which school of magic?";
WOW_TRIVIA_ANSWERS1[100] = "Frost";
WOW_TRIVIA_QUESTIONS[101] = "The 'Banner of Provocation' is used in which questline?";
WOW_TRIVIA_ANSWERS1[101] = "tier 0.5";
WOW_TRIVIA_ANSWERS2[101] = "t0.5";
WOW_TRIVIA_QUESTIONS[102] = "Sarltooth in the Wetlands is what type of beast?";
WOW_TRIVIA_ANSWERS1[102] = "Raptor";
WOW_TRIVIA_QUESTIONS[103] = "Light Feathers are used as a reagent by which class(es)?";
WOW_TRIVIA_ANSWERS1[103] = "Mage and Priest";
WOW_TRIVIA_ANSWERS2[103] = "Mage";
WOW_TRIVIA_ANSWERS3[103] = "Priest";
WOW_TRIVIA_QUESTIONS[104] = "To throw a 'Rough Dynamite' requires what skill level in Engineering?";
WOW_TRIVIA_ANSWERS1[104] = "1";
WOW_TRIVIA_ANSWERS2[104] = "One";
WOW_TRIVIA_QUESTIONS[105] = "Jaina Proudmoore's father is called?";
WOW_TRIVIA_ANSWERS1[105] = "Daelin Proudmoore";
WOW_TRIVIA_ANSWERS2[105] = "Daelin";
WOW_TRIVIA_QUESTIONS[106] = "Cooking a 'Herb Baked Egg' requires which type of spice?";
WOW_TRIVIA_ANSWERS1[106] = "Mild Spices";
WOW_TRIVIA_ANSWERS2[106] = "mild";
WOW_TRIVIA_QUESTIONS[107] = "Huhuran's Stinger grants how much extra agility?";
WOW_TRIVIA_ANSWERS1[107] = "Eighteen";
WOW_TRIVIA_ANSWERS2[107] = "18";
WOW_TRIVIA_QUESTIONS[108] = "The 'Soulforge' set can only be used by which class?";
WOW_TRIVIA_ANSWERS1[108] = "Paladins";
WOW_TRIVIA_ANSWERS2[108] = "Paladin";
WOW_TRIVIA_QUESTIONS[109] = "The Twilight Vale can be found in which zone?";
WOW_TRIVIA_ANSWERS1[109] = "Darkshore";
WOW_TRIVIA_QUESTIONS[110] = "What is the duration on Prayer of Shadow Protection?";
WOW_TRIVIA_ANSWERS1[110] = "20 Minutes";
WOW_TRIVIA_ANSWERS2[110] = "20 min";
WOW_TRIVIA_ANSWERS3[110] = "20 mins";
WOW_TRIVIA_QUESTIONS[111] = "How many tracks is there in The Burning Crusade soundtrack?";
WOW_TRIVIA_ANSWERS1[111] = "22";
WOW_TRIVIA_ANSWERS2[111] = "twenty two";
WOW_TRIVIA_ANSWERS3[111] = "twenty-two";
WOW_TRIVIA_QUESTIONS[112] = "The Bramblewood set grants resistance to what?";
WOW_TRIVIA_ANSWERS1[112] = "Nature";
WOW_TRIVIA_ANSWERS2[112] = "NR";
WOW_TRIVIA_QUESTIONS[113] = "The Doom Touched Warriors are found in which instance?";
WOW_TRIVIA_ANSWERS1[113] = "Naxxramas";
WOW_TRIVIA_ANSWERS2[113] = "Naxx";
WOW_TRIVIA_QUESTIONS[114] = "What will undead NPC's not do?";
WOW_TRIVIA_ANSWERS1[114] = "Swim";
WOW_TRIVIA_ANSWERS2[114] = "swimming";
WOW_TRIVIA_QUESTIONS[115] = "What is the Wildbend River called further upstream?";
WOW_TRIVIA_ANSWERS1[115] = "Bloodvenom River";
WOW_TRIVIA_ANSWERS2[115] = "Bloodvenom";
WOW_TRIVIA_QUESTIONS[116] = "The NPC Donni Anthania sells which kind of non-combat pet?";
WOW_TRIVIA_ANSWERS1[116] = "cats";
WOW_TRIVIA_ANSWERS2[116] = "cat";
WOW_TRIVIA_QUESTIONS[117] = "What is the Rogue's tier 3 called?";
WOW_TRIVIA_ANSWERS1[117] = "Boneschyte Armor"; --1x1 here
WOW_TRIVIA_QUESTIONS[118] = "To get a pet chicken (Chicken Egg) players must complete which quest?";
WOW_TRIVIA_ANSWERS1[118] = "CLUCK!";
WOW_TRIVIA_ANSWERS2[118] = "cluck";
WOW_TRIVIA_QUESTIONS[119] = "Amberseal Keeper grants how much magical resistance to all?";
WOW_TRIVIA_ANSWERS1[119] = "Five";
WOW_TRIVIA_ANSWERS2[119] = "5";
WOW_TRIVIA_QUESTIONS[120] = "What is the biggest lake in Azeroth?";
WOW_TRIVIA_ANSWERS1[120] = "Lordamere Lake";
WOW_TRIVIA_ANSWERS2[120] = "Lordamere";
WOW_TRIVIA_QUESTIONS[121] = "Upon using an Orb of Deception, what race will a dwarf turn into?";
WOW_TRIVIA_ANSWERS1[121] = "Darkspear Troll";
WOW_TRIVIA_ANSWERS2[121] = "Troll";
WOW_TRIVIA_QUESTIONS[122] = "Who is the father of the dreaded Lord of Blackrock, Nefarian?";
WOW_TRIVIA_ANSWERS1[122] = "Neltharion";
WOW_TRIVIA_ANSWERS2[122] = "Deathwing";
WOW_TRIVIA_ANSWERS3[122] = "The Earth-warder";
WOW_TRIVIA_ANSWERS4[122] = "Neltharion the Earth-Warder";
WOW_TRIVIA_QUESTIONS[123] = "What is the name of the original World Tree?";
WOW_TRIVIA_ANSWERS1[123] = "Nordrassil";
WOW_TRIVIA_QUESTIONS[124] = "How many people does it take to perform a Ritual of Summoning?";
WOW_TRIVIA_ANSWERS1[124] = "Three";
WOW_TRIVIA_ANSWERS2[124] = "3";
WOW_TRIVIA_QUESTIONS[125] = "In which patch was the honor system implemented?";
WOW_TRIVIA_ANSWERS1[125] = "1.4";
WOW_TRIVIA_QUESTIONS[126] = "In which patch were the first battlegrounds added?";
WOW_TRIVIA_ANSWERS1[126] = "1.5";
WOW_TRIVIA_QUESTIONS[127] = "In which patch were weather effects implemented?";
WOW_TRIVIA_ANSWERS1[127] = "1.10";
WOW_TRIVIA_QUESTIONS[128] = "In which patch was the Druid talent review?";
WOW_TRIVIA_ANSWERS1[128] = "1.8";
WOW_TRIVIA_QUESTIONS[129] = "In which patch was the Mage talent review?";
WOW_TRIVIA_ANSWERS1[129] = "1.11";
WOW_TRIVIA_QUESTIONS[130] = "Which class(es) has a restoration talent tree? (name both or one of them)";
WOW_TRIVIA_ANSWERS1[130] = "Druid";
WOW_TRIVIA_ANSWERS2[130] = "Shaman";
WOW_TRIVIA_ANSWERS3[130] = "Shamans";
WOW_TRIVIA_ANSWERS4[130] = "Druids";
WOW_TRIVIA_ANSWERS5[130] = "Druid and Shaman";
WOW_TRIVIA_ANSWERS6[130] = "Druids and Shamans";
WOW_TRIVIA_ANSWERS7[130] = "Shaman and Druid";
WOW_TRIVIA_ANSWERS8[130] = "Shamans and Druids";
WOW_TRIVIA_QUESTIONS[131] = "To get 120 energy, Rogues must have 5 / 8 Nightslayer, and 31 points in which talent tree?";
WOW_TRIVIA_ANSWERS1[131] = "Assassination";
WOW_TRIVIA_QUESTIONS[132] = "Which racial skill breaks fear effects?";
WOW_TRIVIA_ANSWERS1[132] = "Will of the Forsaken";
WOW_TRIVIA_ANSWERS2[132] = "wotf";
WOW_TRIVIA_QUESTIONS[133] = "What are Mages also known as (especially before a raid)?";
WOW_TRIVIA_ANSWERS1[133] = "Vending Machine";
WOW_TRIVIA_ANSWERS2[133] = "vendor";
WOW_TRIVIA_ANSWERS3[133] = "water vendor";
WOW_TRIVIA_QUESTIONS[134] = "What is the duration of a Rogue's 5 point kidney shot? (__ sec)";
WOW_TRIVIA_ANSWERS1[134] = "6 seconds";
WOW_TRIVIA_ANSWERS2[134] = "6 secs";
WOW_TRIVIA_ANSWERS3[134] = "6 sec";
WOW_TRIVIA_ANSWERS4[134] = "6";
WOW_TRIVIA_ANSWERS5[134] = "six";
WOW_TRIVIA_QUESTIONS[135] = "What is the hardest race to target in a Battleground?";
WOW_TRIVIA_ANSWERS1[135] = "Gnome";
WOW_TRIVIA_ANSWERS2[135] = "Gnomes";
WOW_TRIVIA_QUESTIONS[136] = "What color does a Rogue have on CT_Raid?";
WOW_TRIVIA_ANSWERS1[136] = "Yellow";
WOW_TRIVIA_QUESTIONS[137] = "How many parts does the Temple of Ahn'Qiraj sets have? (hint: Tier 2.5)";
WOW_TRIVIA_ANSWERS1[137] = "Five";
WOW_TRIVIA_ANSWERS2[137] = "5";
WOW_TRIVIA_QUESTIONS[138] = "Which element slows Viscidus, and is needed in order to defeat him?";
WOW_TRIVIA_ANSWERS1[138] = "Frost";
WOW_TRIVIA_QUESTIONS[139] = "How many bosses can drop tier 2 gloves in Blackwing Lair?";
WOW_TRIVIA_ANSWERS1[139] = "Three";
WOW_TRIVIA_ANSWERS2[139] = "3";
WOW_TRIVIA_QUESTIONS[140] = "Who is known as 'The Ashbringer'?";
WOW_TRIVIA_ANSWERS1[140] = "Highlord Mograine";
WOW_TRIVIA_ANSWERS2[140] = "Mograine";
WOW_TRIVIA_QUESTIONS[141] = "Which drop from Hakkar allows you to get 3 different epic trinkets? (full name)";
WOW_TRIVIA_ANSWERS1[141] = "Heart of Hakkar";
WOW_TRIVIA_QUESTIONS[142] = "What level of reputation with Argent Dawn is needed in order to attune to Naxxramas?";
WOW_TRIVIA_ANSWERS1[142] = "Honored";
WOW_TRIVIA_QUESTIONS[143] = "What herb is required for all the Greater Protection potions?";
WOW_TRIVIA_ANSWERS1[143] = "Dreamfoil";
WOW_TRIVIA_QUESTIONS[144] = "Which instance is located in Silverpine Forest?";
WOW_TRIVIA_ANSWERS1[144] = "Shadowfang Keep";
WOW_TRIVIA_ANSWERS2[144] = "SFK";
WOW_TRIVIA_QUESTIONS[145] = "At what percentage of health does Princess Huhuran enrage?";
WOW_TRIVIA_ANSWERS1[145] = "30%";
WOW_TRIVIA_ANSWERS2[145] = "30";
WOW_TRIVIA_ANSWERS3[145] = "thirty";
WOW_TRIVIA_QUESTIONS[146] = "How much spellcrit does the 'Rallying Cry of the Dragonslayer' buff give?";
WOW_TRIVIA_ANSWERS1[146] = "10";
WOW_TRIVIA_ANSWERS2[146] = "10%";
WOW_TRIVIA_QUESTIONS[147] = "Which Naxxramas boss has two helpers called Stalagg and Fuegan?";
WOW_TRIVIA_ANSWERS1[147] = "Thaddius";
WOW_TRIVIA_QUESTIONS[148] = "Who drops the Hunter book 'Tranquilizing shot'?";
WOW_TRIVIA_ANSWERS1[148] = "Lucifron";
WOW_TRIVIA_QUESTIONS[149] = "Which class is considered the 'purest' of the healing classes?";
WOW_TRIVIA_ANSWERS1[149] = "Priest";
WOW_TRIVIA_QUESTIONS[150] = "How many tracks does the world of warcraft soundtrack have?";
WOW_TRIVIA_ANSWERS1[150] = "30";
WOW_TRIVIA_ANSWERS2[150] = "thirty";
WOW_TRIVIA_QUESTIONS[151] = "How much rage does the improved berserker rage talent (2/2) generate?";
WOW_TRIVIA_ANSWERS1[151] = "10";
WOW_TRIVIA_ANSWERS2[151] = "ten";
WOW_TRIVIA_QUESTIONS[152] = "How long does the unimproved Shield Wall last? ( ___ sec)";
WOW_TRIVIA_ANSWERS1[152] = "10 seconds";
WOW_TRIVIA_ANSWERS2[152] = "10";
WOW_TRIVIA_ANSWERS3[152] = "ten";
WOW_TRIVIA_ANSWERS4[152] = "ten secs";
WOW_TRIVIA_ANSWERS5[152] = "ten sec";
WOW_TRIVIA_ANSWERS6[152] = "10 sec";
WOW_TRIVIA_QUESTIONS[153] = "What tier is the Improved Berserker Stance talent on, as a Warrior, in the fury talent tree?";
WOW_TRIVIA_ANSWERS1[153] = "8";
WOW_TRIVIA_ANSWERS2[153] = "eight";
WOW_TRIVIA_QUESTIONS[154] = "How much damage does each point of rage convert into on the last rank of Execute?";
WOW_TRIVIA_ANSWERS1[154] = "18";
WOW_TRIVIA_ANSWERS2[154] = "eighteen";
WOW_TRIVIA_QUESTIONS[155] = "Switching Stances constantly as a Warrior is called?";
WOW_TRIVIA_ANSWERS1[155] = "stance dance";
WOW_TRIVIA_ANSWERS2[155] = "stance dancing";
WOW_TRIVIA_ANSWERS3[155] = "stance-dancing";
WOW_TRIVIA_ANSWERS4[155] = "stance-dance";
WOW_TRIVIA_QUESTIONS[156] = "The last rank of Sunder Armor reduces armor by how much?";
WOW_TRIVIA_ANSWERS1[156] = "520";
WOW_TRIVIA_ANSWERS2[156] = "Five hundred twenty";
WOW_TRIVIA_QUESTIONS[157] = "Piercing Howl reduces the movement speed of enemies by what percentage?";
WOW_TRIVIA_ANSWERS1[157] = "50%";
WOW_TRIVIA_ANSWERS2[157] = "50";
WOW_TRIVIA_ANSWERS3[157] = "fifty";
WOW_TRIVIA_QUESTIONS[158] = "Overpower can only be used after the target does what?";
WOW_TRIVIA_ANSWERS1[158] = "dodge";
WOW_TRIVIA_ANSWERS2[158] = "dodges";
WOW_TRIVIA_QUESTIONS[159] = "The talent Blood Craze can be found in which talent tree?";
WOW_TRIVIA_ANSWERS1[159] = "Fury";
WOW_TRIVIA_QUESTIONS[160] = "Rend (Rank 8) causes ___ damage over 21 secs.";
WOW_TRIVIA_ANSWERS1[160] = "182";
WOW_TRIVIA_ANSWERS2[160] = "One hundred eighty two";
WOW_TRIVIA_QUESTIONS[161] = "Which Warrior ability reduces healing effects by 50%?";
WOW_TRIVIA_ANSWERS1[161] = "Mortal Strike";
WOW_TRIVIA_ANSWERS2[161] = "MS";
WOW_TRIVIA_QUESTIONS[162] = "Which sword was too powerful to be included in the game? (hint: Southpark)";
WOW_TRIVIA_ANSWERS1[162] = "The Sword of a Thousand Truths";
WOW_TRIVIA_ANSWERS2[162] = "sword of a thousand truths";
WOW_TRIVIA_ANSWERS3[162] = "sword of a 1000 truths";
WOW_TRIVIA_QUESTIONS[163] = "How much spell damage does the Zandalarian Hero Charm increase?";
WOW_TRIVIA_ANSWERS1[163] = "204";
WOW_TRIVIA_ANSWERS2[163] = "two hundred four";
WOW_TRIVIA_QUESTIONS[164] = "Which races can use a Mechanostrider Mount? (x and y)";
WOW_TRIVIA_ANSWERS1[164] = "dwarves and Gnomes";
WOW_TRIVIA_ANSWERS2[164] = "Dwarf and Gnome";
WOW_TRIVIA_ANSWERS3[164] = "Gnomes and dwarves";
WOW_TRIVIA_QUESTIONS[165] = "How long cooldown does the Zandalarian Hero Charm have?";
WOW_TRIVIA_ANSWERS1[165] = "2 minutes";
WOW_TRIVIA_ANSWERS2[165] = "2 min";
WOW_TRIVIA_ANSWERS3[165] = "2";
WOW_TRIVIA_ANSWERS4[165] = "2 mins";
WOW_TRIVIA_ANSWERS5[165] = "two minutes";
WOW_TRIVIA_ANSWERS6[165] = "two min";
WOW_TRIVIA_ANSWERS7[165] = "two";
WOW_TRIVIA_ANSWERS8[165] = "two mins";
WOW_TRIVIA_QUESTIONS[166] = "How long cooldown does the Mage spell 'Blastwave' have?";
WOW_TRIVIA_ANSWERS1[166] = "45 seconds";
WOW_TRIVIA_ANSWERS2[166] = "45 sec";
WOW_TRIVIA_ANSWERS3[166] = "45";
WOW_TRIVIA_ANSWERS4[166] = "45 secs";
WOW_TRIVIA_QUESTIONS[167] = "What is Mages with talents mainly in Frost and Fire called?";
WOW_TRIVIA_ANSWERS1[167] = "Elemental";
WOW_TRIVIA_ANSWERS2[167] = "Elemental Mages";
WOW_TRIVIA_QUESTIONS[168] = "What two things can a Mage polymorph his foe into, besides a sheep? (x and y)";
WOW_TRIVIA_ANSWERS1[168] = "Pig and Turtle";
WOW_TRIVIA_ANSWERS2[168] = "Turtle and Pig";
WOW_TRIVIA_QUESTIONS[169] = "Which boss drops Ashkandi, greatsword of the Brotherhood?";
WOW_TRIVIA_ANSWERS1[169] = "Nefarian";
WOW_TRIVIA_QUESTIONS[170] = "What beast is Grimclaw, which patrols Darkshore?";
WOW_TRIVIA_ANSWERS1[170] = "Bear";
WOW_TRIVIA_ANSWERS2[170] = "Icebear";
WOW_TRIVIA_ANSWERS3[170] = "Ice-bear";
WOW_TRIVIA_QUESTIONS[171] = "How many people are there in a full party?";
WOW_TRIVIA_ANSWERS1[171] = "5";
WOW_TRIVIA_ANSWERS2[171] = "five";
WOW_TRIVIA_QUESTIONS[172] = "How many people are there in a full raid?";
WOW_TRIVIA_ANSWERS1[172] = "40";
WOW_TRIVIA_ANSWERS2[172] = "forty";
WOW_TRIVIA_QUESTIONS[173] = "Who can teach you how to use one handed swords in Stormwind?";
WOW_TRIVIA_ANSWERS1[173] = "Wu Ping";
WOW_TRIVIA_QUESTIONS[174] = "Curse of agony ticks every ___ seconds?";
WOW_TRIVIA_ANSWERS1[174] = "Two";
WOW_TRIVIA_ANSWERS2[174] = "2";
WOW_TRIVIA_QUESTIONS[175] = "Curse of doom ticks for how much base damage?";
WOW_TRIVIA_ANSWERS1[175] = "4200";
WOW_TRIVIA_ANSWERS2[175] = "four thousand two hundred";
WOW_TRIVIA_QUESTIONS[176] = "How many statues is there outside Stormwind?";
WOW_TRIVIA_ANSWERS1[176] = "6";
WOW_TRIVIA_ANSWERS2[176] = "Six";
WOW_TRIVIA_QUESTIONS[177] = "Where is the Valley of Heroes?";
WOW_TRIVIA_ANSWERS1[177] = "Stormwind";
WOW_TRIVIA_ANSWERS2[177] = "SW";
WOW_TRIVIA_QUESTIONS[178] = "Where is the Valley of Kings?";
WOW_TRIVIA_ANSWERS1[178] = "Loch Modan";
WOW_TRIVIA_QUESTIONS[179] = "Which class originally soloed Kazzak?";
WOW_TRIVIA_ANSWERS1[179] = "Paladin";
WOW_TRIVIA_ANSWERS2[179] = "Paladins";
WOW_TRIVIA_QUESTIONS[180] = "How many DoTs can a warlock have as abilities?";
WOW_TRIVIA_ANSWERS1[180] = "5";
WOW_TRIVIA_ANSWERS2[180] = "Five";
WOW_TRIVIA_QUESTIONS[181] = "Name a DoT which was added to the Warlock class in TBC?";
WOW_TRIVIA_ANSWERS1[181] = "Unstable Affliction";
WOW_TRIVIA_ANSWERS2[181] = "Seed of Corruption";
WOW_TRIVIA_QUESTIONS[182] = "What class besides a Warrior has a talent tree called protection?";
WOW_TRIVIA_ANSWERS1[182] = "Paladin";
WOW_TRIVIA_ANSWERS2[182] = "Paladins";
WOW_TRIVIA_QUESTIONS[183] = "Before the Paladin revamp, what was the top tier spell in the retribution tree of Paladins?";
WOW_TRIVIA_ANSWERS1[183] = "Blessing of Kings";
WOW_TRIVIA_ANSWERS2[183] = "BoK";
WOW_TRIVIA_QUESTIONS[184] = "How many capital cities is there ingame, including Shattrath?";
WOW_TRIVIA_ANSWERS1[184] = "9";
WOW_TRIVIA_ANSWERS2[184] = "Nine";
WOW_TRIVIA_QUESTIONS[185] = "On which boss in Naxxramas do you have to mind control a mob, but not use it for more than 5 seconds?";
WOW_TRIVIA_ANSWERS1[185] = "Grand widow faerlina";
WOW_TRIVIA_ANSWERS2[185] = "Faerlina";
WOW_TRIVIA_QUESTIONS[186] = "What is the Alliance equivelent to Will of the Forsaken? (gives a great advantage against a certain class)";
WOW_TRIVIA_ANSWERS1[186] = "perception";
WOW_TRIVIA_QUESTIONS[187] = "Who originally dropped the lightforge gauntlets?";
WOW_TRIVIA_ANSWERS1[187] = "Emperor Dagran Thaurissan";
WOW_TRIVIA_ANSWERS2[187] = "Dagran Thaurissan";
WOW_TRIVIA_QUESTIONS[188] = "In which zone does most blindweed grow?";
WOW_TRIVIA_ANSWERS1[188] = "Swamp of Sorrows";
WOW_TRIVIA_QUESTIONS[189] = "Which is the only zone where you can find gromsblood, mountain silversage and dreamfoil?";
WOW_TRIVIA_ANSWERS1[189] = "Felwood";
WOW_TRIVIA_QUESTIONS[190] = "Which flask provides players with an extra 400 HP for 2 hours?";
WOW_TRIVIA_ANSWERS1[190] = "Flask of the Titans";
WOW_TRIVIA_ANSWERS2[190] = "titans";
WOW_TRIVIA_ANSWERS3[190] = "titan";
WOW_TRIVIA_QUESTIONS[191] = "Loatheb usually requires many Greater ______ Protection Potions.";
WOW_TRIVIA_ANSWERS1[191] = "Shadow";
WOW_TRIVIA_QUESTIONS[192] = "What is the name of the monument in Azshara that has been broken in half?";
WOW_TRIVIA_ANSWERS1[192] = "Ravencrest Monument";
WOW_TRIVIA_ANSWERS2[192] = "Ravencrest";
WOW_TRIVIA_QUESTIONS[193] = "What is the name of the last boss in Shadowfang Keep?";
WOW_TRIVIA_ANSWERS1[193] = "Arugal";
WOW_TRIVIA_ANSWERS2[193] = "Archmage Arugal";
WOW_TRIVIA_QUESTIONS[194] = "What is the ideal amount of Warriors for the 4 Horsemen fight in Naxxramas?";
WOW_TRIVIA_ANSWERS1[194] = "8";
WOW_TRIVIA_ANSWERS2[194] = "Eight";
WOW_TRIVIA_QUESTIONS[195] = "Blackwing Lair was introduced in which patch?";
WOW_TRIVIA_ANSWERS1[195] = "1.6";
WOW_TRIVIA_QUESTIONS[196] = "Gothik the Harvester in Naxxramas has how many waves of adds?";
WOW_TRIVIA_ANSWERS1[196] = "18";
WOW_TRIVIA_ANSWERS2[196] = "Eighteen";
WOW_TRIVIA_QUESTIONS[197] = "What trinket allows you to kill yourself when equipped?";
WOW_TRIVIA_ANSWERS1[197] = "Crystal of Zin-Malor";
WOW_TRIVIA_ANSWERS2[197] = "Zin-Malor";
WOW_TRIVIA_QUESTIONS[198] = "What is the color of the rarest AQ40 mount that drops from trash mobs?";
WOW_TRIVIA_ANSWERS1[198] = "red";
WOW_TRIVIA_QUESTIONS[199] = "What herb will sometimes spawn instead of grave moss in the SM graveyard?";
WOW_TRIVIA_ANSWERS1[199] = "Kingsblood";
WOW_TRIVIA_QUESTIONS[200] = "What is the name of the raiding instance in Netherstorm? (full name)";
WOW_TRIVIA_ANSWERS1[200] = "Tempest Keep";
WOW_TRIVIA_QUESTIONS[201] = "What debuff once allowed Horde players to attack NPCs of their own faction?";
WOW_TRIVIA_ANSWERS1[201] = "Mark of Shame";
WOW_TRIVIA_QUESTIONS[202] = "Who is the final boss you have to kill for the tier 0.5 series of quests?";
WOW_TRIVIA_ANSWERS1[202] = "Lord Valthalak";
WOW_TRIVIA_ANSWERS2[202] = "Valthalak";
WOW_TRIVIA_QUESTIONS[203] = "Greater Shadow Protection potions require one dreamfoil, one __________, and one crystal vial.";
WOW_TRIVIA_ANSWERS1[203] = "shadow oil";
WOW_TRIVIA_QUESTIONS[204] = "How long is the auto-release timer when you die outside of an instance?";
WOW_TRIVIA_ANSWERS1[204] = "6 minutes";
WOW_TRIVIA_ANSWERS2[204] = "6 min";
WOW_TRIVIA_ANSWERS3[204] = "6 mins";
WOW_TRIVIA_QUESTIONS[205] = "Name one of the two bosses you must kill during the Thaddius fight before you face Thaddius himself.";
WOW_TRIVIA_ANSWERS1[205] = "Stalagg";
WOW_TRIVIA_ANSWERS2[205] = "Feugen";
WOW_TRIVIA_QUESTIONS[206] = "The 'Fungal Bloom' debuff in the Loatheb fight gives how much bonus to crit chance?";
WOW_TRIVIA_ANSWERS1[206] = "60%";
WOW_TRIVIA_ANSWERS2[206] = "60";
WOW_TRIVIA_QUESTIONS[207] = "The Pools of Vision are found in what main city? (full name)";
WOW_TRIVIA_ANSWERS1[207] = "Thunder Bluff";
WOW_TRIVIA_QUESTIONS[208] = "What is the name of the lowest level zone in Outland?";
WOW_TRIVIA_ANSWERS1[208] = "Hellfire Peninsula";
WOW_TRIVIA_QUESTIONS[209] = "Which zone do Druids gain a teleport to at level 10?";
WOW_TRIVIA_ANSWERS1[209] = "Moonglade";
WOW_TRIVIA_QUESTIONS[210] = "Flasks can be crafted in two instances and one zone in the game. Name one?";
WOW_TRIVIA_ANSWERS1[210] = "Blackwing Lair";
WOW_TRIVIA_ANSWERS2[210] = "Scholomance";
WOW_TRIVIA_ANSWERS3[210] = "Shattrath";
WOW_TRIVIA_ANSWERS4[210] = "Shattrath City";
WOW_TRIVIA_QUESTIONS[211] = "What creature despawns at 20%, saying it is 'not his time yet'?";
WOW_TRIVIA_ANSWERS1[211] = "Anachronos";
WOW_TRIVIA_QUESTIONS[212] = "Which zone contains the original World Tree? (full name)";
WOW_TRIVIA_ANSWERS1[212] = "Mount Hyjal"
WOW_TRIVIA_QUESTIONS[213] = "What is the name of the elite Dragon who patrols the Blasted Lands?";
WOW_TRIVIA_ANSWERS1[213] = "Teremus the Devourer";
WOW_TRIVIA_ANSWERS2[213] = "Teremus";
WOW_TRIVIA_QUESTIONS[214] = "How many mini-bosses are there on the top-level of the Sunken Temple?";
WOW_TRIVIA_ANSWERS1[214] = "6";
WOW_TRIVIA_ANSWERS2[214] = "Six";
WOW_TRIVIA_QUESTIONS[215] = "What does Gluth eat to regain health?";
WOW_TRIVIA_ANSWERS1[215] = "Zombie Chow";
WOW_TRIVIA_ANSWERS2[215] = "zombies";
WOW_TRIVIA_ANSWERS3[215] = "zombie";
WOW_TRIVIA_QUESTIONS[216] = "Maexxna enrages at what health percentage?";
WOW_TRIVIA_ANSWERS1[216] = "30";
WOW_TRIVIA_ANSWERS2[216] = "30%";
WOW_TRIVIA_ANSWERS3[216] = "Thirty";
WOW_TRIVIA_QUESTIONS[217] = "Who is the most damaging boss in Naxxramas?";
WOW_TRIVIA_ANSWERS1[217] = "Instructor Razuvious";
WOW_TRIVIA_ANSWERS2[217] = "Razuvious";
WOW_TRIVIA_QUESTIONS[218] = "Which boss drops the tier 2 headpieces?";
WOW_TRIVIA_ANSWERS1[218] = "Onyxia";
WOW_TRIVIA_ANSWERS2[218] = "Ony";
WOW_TRIVIA_QUESTIONS[219] = "How many parts does the tier 3 armor set have?";
WOW_TRIVIA_ANSWERS1[219] = "9";
WOW_TRIVIA_ANSWERS2[219] = "Nine";
WOW_TRIVIA_QUESTIONS[220] = "The tunnel to Stonetalon Mountains from Ashenvale will deposit you near the road. (True/False)?";
WOW_TRIVIA_ANSWERS1[220] = "False";
WOW_TRIVIA_QUESTIONS[221] = "What is the second last boss in Molten Core?";
WOW_TRIVIA_ANSWERS1[221] = "Majordomo Executus";
WOW_TRIVIA_ANSWERS2[221] = "Majordomo";
WOW_TRIVIA_QUESTIONS[222] = "In the AQ War Effort, what item was required in the greatest number?";
WOW_TRIVIA_ANSWERS1[222] = "Linen bandages";
WOW_TRIVIA_QUESTIONS[223] = "What does Ragnaros summon when he submerges after 3 minutes of combat?";
WOW_TRIVIA_ANSWERS1[223] = "Sons of Flame";
WOW_TRIVIA_QUESTIONS[224] = "What Rogue leggings does Ragnaros drop?";
WOW_TRIVIA_ANSWERS1[224] = "Bloodfang Pants";
WOW_TRIVIA_ANSWERS2[224] = "Bloodfang";
WOW_TRIVIA_QUESTIONS[225] = "Who is the 'Dad' in the Bug Family in AQ40?";
WOW_TRIVIA_ANSWERS1[225] = "Lord Kri";
WOW_TRIVIA_ANSWERS2[225] = "Kri";
WOW_TRIVIA_QUESTIONS[226] = "When the game was released, the mobs of which zone had no loot?";
WOW_TRIVIA_ANSWERS1[226] = "Silithus";
WOW_TRIVIA_QUESTIONS[227] = "Which Blackwing Lair boss drops the tier 2 Bracers?";
WOW_TRIVIA_ANSWERS1[227] = "Razorgore the Untamed";
WOW_TRIVIA_ANSWERS2[227] = "Razorgore";
WOW_TRIVIA_QUESTIONS[228] = "What is the name of the bar in Blackrock Depths?";
WOW_TRIVIA_ANSWERS1[228] = "The Grim Guzzler";
WOW_TRIVIA_ANSWERS2[228] = "Grim Guzzler";
WOW_TRIVIA_QUESTIONS[229] = "How many bosses in AQ20 must be kited to kill them?";
WOW_TRIVIA_ANSWERS1[229] = "2";
WOW_TRIVIA_ANSWERS2[229] = "two";
WOW_TRIVIA_QUESTIONS[230] = "Who has the lowest health of all the bosses in Naxxramas?";
WOW_TRIVIA_ANSWERS1[230] = "Gothik the Harvester";
WOW_TRIVIA_ANSWERS2[230] = "Gothik";
WOW_TRIVIA_QUESTIONS[231] = "How many optional encounters does AQ40 have?";
WOW_TRIVIA_ANSWERS1[231] = "3";
WOW_TRIVIA_ANSWERS2[231] = "Three";
WOW_TRIVIA_QUESTIONS[232] = "The Gurubashi Arena event takes place at ____-hourly intervals?";
WOW_TRIVIA_ANSWERS1[232] = "3";
WOW_TRIVIA_ANSWERS2[232] = "three";
WOW_TRIVIA_QUESTIONS[233] = "In what patch were the 4 world Dragons introduced?";
WOW_TRIVIA_ANSWERS1[233] = "1.8";
WOW_TRIVIA_QUESTIONS[234] = "What is the lowest level instance in the game?";
WOW_TRIVIA_ANSWERS1[234] = "Ragefire Chasm";
WOW_TRIVIA_ANSWERS2[234] = "RFC";
WOW_TRIVIA_QUESTIONS[235] = "What is the name of the draenei capital city?";
WOW_TRIVIA_ANSWERS1[235] = "The Exodar";
WOW_TRIVIA_ANSWERS2[235] = "Exodar";
WOW_TRIVIA_QUESTIONS[236] = "Which Alliance race has +15 engineering as racial passive?";
WOW_TRIVIA_ANSWERS1[236] = "Gnome";
WOW_TRIVIA_ANSWERS2[236] = "Gnomes";
WOW_TRIVIA_QUESTIONS[237] = "Acronyms: What does ATP stand for?";
WOW_TRIVIA_ANSWERS1[237] = "Attack Power";
WOW_TRIVIA_QUESTIONS[238] = "How many fears does the Warlock class have?";
WOW_TRIVIA_ANSWERS1[238] = "2";
WOW_TRIVIA_ANSWERS2[238] = "two";
WOW_TRIVIA_QUESTIONS[239] = "Druids can do Physical, Nature and ______ damage.";
WOW_TRIVIA_ANSWERS1[239] = "Arcane damage";
WOW_TRIVIA_ANSWERS2[239] = "arcane";
WOW_TRIVIA_QUESTIONS[240] = "What boss is a anagram for healbot?";
WOW_TRIVIA_ANSWERS1[240] = "Loatheb";
WOW_TRIVIA_QUESTIONS[241] = "How many PvP ranks existed in the old honor system?";
WOW_TRIVIA_ANSWERS1[241] = "14";
WOW_TRIVIA_ANSWERS2[241] = "fourteen";
WOW_TRIVIA_QUESTIONS[242] = "At what PvP rank could you buy PvP mounts? (number)";
WOW_TRIVIA_ANSWERS1[242] = "11";
WOW_TRIVIA_ANSWERS2[242] = "eleven";
WOW_TRIVIA_QUESTIONS[243] = "Arcane Resilience will increase your armor by what % of your intellect?";
WOW_TRIVIA_ANSWERS1[243] = "50%";
WOW_TRIVIA_ANSWERS2[243] = "Fifty";
WOW_TRIVIA_ANSWERS3[243] = "50";
WOW_TRIVIA_QUESTIONS[244] = "What instance is sometimes called 'UD'?";
WOW_TRIVIA_ANSWERS1[244] = "Stratholme";
WOW_TRIVIA_ANSWERS2[244] = "Strat";
WOW_TRIVIA_QUESTIONS[245] = "Name a faction that is part of the Steamwheedle Cartel.";
WOW_TRIVIA_ANSWERS1[245] = "Booty Bay";
WOW_TRIVIA_ANSWERS2[245] = "Everlook";
WOW_TRIVIA_ANSWERS3[245] = "Ratchet";
WOW_TRIVIA_ANSWERS4[245] = "Gadgetztan";
WOW_TRIVIA_QUESTIONS[246] = "What race has the racial skill 'Diplomacy'?";
WOW_TRIVIA_ANSWERS1[246] = "Human";
WOW_TRIVIA_ANSWERS2[246] = "Humans";
WOW_TRIVIA_QUESTIONS[247] = "Blizzard will do up to 1472 damage over ___ seconds?";
WOW_TRIVIA_ANSWERS1[247] = "8";
WOW_TRIVIA_ANSWERS2[247] = "eight";
WOW_TRIVIA_QUESTIONS[248] = "Evocation has a ___ min cooldown?";
WOW_TRIVIA_ANSWERS1[248] = "8";
WOW_TRIVIA_ANSWERS2[248] = "eight";
WOW_TRIVIA_QUESTIONS[249] = "Mages can Polymorph you into a goat. (True/False)?";