-
Notifications
You must be signed in to change notification settings - Fork 3
/
Achievement.sql
1881 lines (1881 loc) · 577 KB
/
Achievement.sql
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
DROP TABLE IF EXISTS `Achievement`;
CREATE TABLE `Achievement` ( `ID` INT NOT NULL DEFAULT '0',
`Faction` INT NOT NULL DEFAULT '0',
`Instance_Id` INT NOT NULL DEFAULT '0',
`Supercedes` INT NOT NULL DEFAULT '0',
`Title_Lang_enUS` TEXT NULL,
`Title_Lang_enGB` TEXT NULL,
`Title_Lang_koKR` TEXT NULL,
`Title_Lang_frFR` TEXT NULL,
`Title_Lang_deDE` TEXT NULL,
`Title_Lang_enCN` TEXT NULL,
`Title_Lang_zhCN` TEXT NULL,
`Title_Lang_enTW` TEXT NULL,
`Title_Lang_zhTW` TEXT NULL,
`Title_Lang_esES` TEXT NULL,
`Title_Lang_esMX` TEXT NULL,
`Title_Lang_ruRU` TEXT NULL,
`Title_Lang_ptPT` TEXT NULL,
`Title_Lang_ptBR` TEXT NULL,
`Title_Lang_itIT` TEXT NULL,
`Title_Lang_Unk` TEXT NULL,
`Title_Lang_Mask` INT UNSIGNED NOT NULL DEFAULT '0',
`Description_Lang_enUS` TEXT NULL,
`Description_Lang_enGB` TEXT NULL,
`Description_Lang_koKR` TEXT NULL,
`Description_Lang_frFR` TEXT NULL,
`Description_Lang_deDE` TEXT NULL,
`Description_Lang_enCN` TEXT NULL,
`Description_Lang_zhCN` TEXT NULL,
`Description_Lang_enTW` TEXT NULL,
`Description_Lang_zhTW` TEXT NULL,
`Description_Lang_esES` TEXT NULL,
`Description_Lang_esMX` TEXT NULL,
`Description_Lang_ruRU` TEXT NULL,
`Description_Lang_ptPT` TEXT NULL,
`Description_Lang_ptBR` TEXT NULL,
`Description_Lang_itIT` TEXT NULL,
`Description_Lang_Unk` TEXT NULL,
`Description_Lang_Mask` INT UNSIGNED NOT NULL DEFAULT '0',
`Category` INT NOT NULL DEFAULT '0',
`Points` INT NOT NULL DEFAULT '0',
`Ui_Order` INT NOT NULL DEFAULT '0',
`Flags` INT NOT NULL DEFAULT '0',
`IconID` INT NOT NULL DEFAULT '0',
`Reward_Lang_enUS` TEXT NULL,
`Reward_Lang_enGB` TEXT NULL,
`Reward_Lang_koKR` TEXT NULL,
`Reward_Lang_frFR` TEXT NULL,
`Reward_Lang_deDE` TEXT NULL,
`Reward_Lang_enCN` TEXT NULL,
`Reward_Lang_zhCN` TEXT NULL,
`Reward_Lang_enTW` TEXT NULL,
`Reward_Lang_zhTW` TEXT NULL,
`Reward_Lang_esES` TEXT NULL,
`Reward_Lang_esMX` TEXT NULL,
`Reward_Lang_ruRU` TEXT NULL,
`Reward_Lang_ptPT` TEXT NULL,
`Reward_Lang_ptBR` TEXT NULL,
`Reward_Lang_itIT` TEXT NULL,
`Reward_Lang_Unk` TEXT NULL,
`Reward_Lang_Mask` INT UNSIGNED NOT NULL DEFAULT '0',
`Minimum_Criteria` INT NOT NULL DEFAULT '0',
`Shares_Criteria` INT NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `Achievement` VALUES (6,-1,-1,0,"Level 10","","","","","","","","","","","","","","","",16712190,"Reach level 10.","","","","","","","","","","","","","","","",16712190,92,10,1,4,3268,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (33,1,-1,0,"Nothing Boring About Borean","","","","","","","","","","","","","","","",16712190,"Complete 130 quests in Borean Tundra.","","","","","","","","","","","","","","","",16712190,14863,10,1,136,3336,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (42,-1,-1,0,"Explore Eastern Kingdoms","","","","","","","","","","","","","","","",16712190,"Explore the regions of Eastern Kingdoms.","","","","","","","","","","","","","","","",16712190,97,25,1,0,3490,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (57,-1,30,0,"Deaths in Alterac Valley","","","","","","","","","","","","","","","",16712190,"Deaths in Alterac Valley","","","","","","","","","","","","","","","",16712190,124,0,1,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (60,-1,-1,0,"Total deaths","","","","","","","","","","","","","","","",16712190,"Total deaths","","","","","","","","","","","","","","","",16712190,122,0,1,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (98,-1,-1,0,"Quests completed","","","","","","","","","","","","","","","",16712190,"Quests completed","","","","","","","","","","","","","","","",16712190,133,0,1,9,0,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (107,-1,-1,0,"Creatures killed","","","","","","","","","","","","","","","",16712190,"Creatures killed","","","","","","","","","","","","","","","",16712190,135,0,1,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (112,-1,-1,0,"Deaths from drowning","","","","","","","","","","","","","","","",16712190,"Deaths from drowning","","","","","","","","","","","","","","","",16712190,126,0,1,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (116,-1,-1,0,"Professional Journeyman","","","","","","","","","","","","","","","",16712190,"Become a Journeyman in a profession.","","","","","","","","","","","","","","","",16712190,169,10,1,0,2846,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (121,-1,-1,0,"Journeyman Cook","","","","","","","","","","","","","","","",16712190,"Become a Journeyman Cook.","","","","","","","","","","","","","","","",16712190,170,10,1,0,1467,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (126,-1,-1,0,"Journeyman Fisherman","","","","","","","","","","","","","","","",16712190,"Become a Journeyman Fisherman.","","","","","","","","","","","","","","","",16712190,171,10,1,0,580,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (131,-1,-1,0,"Journeyman in First Aid","","","","","","","","","","","","","","","",16712190,"Become a Journeyman in first aid.","","","","","","","","","","","","","","","",16712190,172,10,1,0,504,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (154,-1,529,0,"Arathi Basin Victory","","","","","","","","","","","","","","","",16712190,"Win Arathi Basin.","","","","","","","","","","","","","","","",16712190,14802,10,1,0,3381,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (166,-1,489,0,"Warsong Gulch Victory","","","","","","","","","","","","","","","",16712190,"Win Warsong Gulch.","","","","","","","","","","","","","","","",16712190,14804,10,1,0,3387,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (193,-1,-1,0,"Largest hit dealt","","","","","","","","","","","","","","","",16712190,"Largest hit dealt","","","","","","","","","","","","","","","",16712190,141,0,1,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (208,-1,566,0,"Eye of the Storm Victory","","","","","","","","","","","","","","","",16712190,"Win Eye of the Storm.","","","","","","","","","","","","","","","",16712190,14803,10,1,0,3384,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (218,-1,30,0,"Alterac Valley Victory","","","","","","","","","","","","","","","",16712190,"Win Alterac Valley.","","","","","","","","","","","","","","","",16712190,14801,10,1,0,3377,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (238,-1,-1,0,"An Honorable Kill","","","","","","","","","","","","","","","",16712190,"Achieve an honorable kill.","","","","","","","","","","","","","","","",16712190,95,10,1,0,3454,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (263,-1,-1,0,"Ice the Frost Lord","","","","","","","","","","","","","","","",16712190,"Slay Ahune in the Slave Pens.","","","","","","","","","","","","","","","",16712190,161,10,1,0,94,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (273,-1,-1,0,"On Metzen!","","","","","","","","","","","","","","","",16712190,"Save Metzen the Reindeer.","","","","","","","","","","","","","","","",16712190,156,10,1,0,3703,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (319,-1,-1,0,"Duels won","","","","","","","","","","","","","","","",16712190,"Duels won","","","","","","","","","","","","","","","",16712190,154,0,1,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (321,-1,-1,0,"Total raid and dungeon deaths","","","","","","","","","","","","","","","",16712190,"Total raid and dungeon deaths","","","","","","","","","","","","","","","",16712190,125,0,1,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (328,-1,-1,0,"Total gold acquired","","","","","","","","","","","","","","","",16712190,"Total gold acquired","","","","","","","","","","","","","","","",16712190,140,0,1,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (344,-1,-1,0,"Bandages used","","","","","","","","","","","","","","","",16712190,"Bandages used","","","","","","","","","","","","","","","",16712190,145,0,1,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (349,-1,-1,0,"Flight paths taken","","","","","","","","","","","","","","","",16712190,"Flight paths taken","","","","","","","","","","","","","","","",16712190,134,0,1,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (377,-1,-1,0,"Most factions at Exalted","","","","","","","","","","","","","","","",16712190,"Most factions at Exalted","","","","","","","","","","","","","","","",16712190,147,0,1,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (397,-1,-1,0,"Step Into The Arena","","","","","","","","","","","","","","","",16712190,"Win a ranked arena match at level 80.","","","","","","","","","","","","","","","",16712190,165,10,1,0,3601,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (457,-1,-1,0,"Realm First! Level 80","","","","","","","","","","","","","","","",16712190,"First person on the realm to achieve level 80.","","","","","","","","","","","","","","","",16712190,81,0,1,256,3275,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (477,-1,574,0,"Utgarde Keep","","","","","","","","","","","","","","","",16712190,"Defeat the bosses in Utgarde Keep.","","","","","","","","","","","","","","","",16712190,14806,10,1,0,3226,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (489,-1,574,0,"Heroic: Utgarde Keep","","","","","","","","","","","","","","","",16712190,"Defeat the Utgarde Keep bosses on Heroic Difficulty.","","","","","","","","","","","","","","","",16712190,14921,10,1,0,3225,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (503,-1,-1,0,"50 Quests Completed","","","","","","","","","","","","","","","",16712190,"Complete 50 quests.","","","","","","","","","","","","","","","",16712190,96,10,1,0,3421,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (522,-1,-1,0,"Somebody Likes Me","","","","","","","","","","","","","","","",16712190,"Raise a reputation to Exalted.","","","","","","","","","","","","","","","",16712190,201,10,1,0,3609,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (588,-1,-1,0,"Total Honorable Kills","","","","","","","","","","","","","","","",16712190,"Total Honorable Kills","","","","","","","","","","","","","","","",16712190,136,0,1,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (605,-1,-1,0,"A Coin of Ancestry","","","","","","","","","","","","","","","",16712190,"Receive a Coin of Ancestry.","","","","","","","","","","","","","","","",16712190,160,10,1,0,2717,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (625,-1,615,0,"Besting the Black Dragonflight (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat Sartharion the Onyx Guardian in 25-player mode.","","","","","","","","","","","","","","","",16712190,14923,25,1,0,3255,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (629,-1,-1,0,"Ragefire Chasm","","","","","","","","","","","","","","","",16712190,"Defeat Taragaman the Hungerer.","","","","","","","","","","","","","","","",16712190,14808,10,1,0,1983,"","","","","","","","","","","","","","","","",16712172,1,0);
INSERT INTO `Achievement` VALUES (647,-1,-1,0,"Hellfire Ramparts","","","","","","","","","","","","","","","",16712190,"Defeat Omor the Unscarred.","","","","","","","","","","","","","","","",16712190,14805,10,1,0,3680,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (728,-1,-1,0,"Explore Durotar","","","","","","","","","","","","","","","",16712190,"Explore Durotar, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14778,10,1,0,3532,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (763,0,-1,0,"The Burning Crusader","","","","","","","","","","","","","","","",16712190,"Raise all of The Burning Crusade dungeon reputations to exalted.","","","","","","","","","","","","","","","",16712190,14865,20,1,0,2365,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (776,-1,-1,0,"Explore Elwynn Forest","","","","","","","","","","","","","","","",16712190,"Explore Elwynn Forest, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14777,10,1,0,3536,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (796,-1,-1,0,"Resurrected by priests","","","","","","","","","","","","","","","",16712190,"Resurrected by priests","","","","","","","","","","","","","","","",16712190,127,0,1,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (837,-1,-1,0,"Arenas won","","","","","","","","","","","","","","","",16712190,"Arenas won","","","","","","","","","","","","","","","",16712190,152,0,1,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (839,-1,-1,0,"Battlegrounds played","","","","","","","","","","","","","","","",16712190,"Battlegrounds played","","","","","","","","","","","","","","","",16712190,153,0,1,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (862,-1,-1,0,"Explore Hellfire Peninsula","","","","","","","","","","","","","","","",16712190,"Explore Hellfire Peninsula, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14779,10,1,0,3554,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (913,-1,-1,0,"To Honor One\\'s Elders","","","","","","","","","","","","","","","",16712190,"Complete the Lunar Festival achievements listed below.","","","","","","","","","","","","","","","",16712190,155,30,1,0,3698,"Title Reward: Elder","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (927,-1,-1,0,"Equipped epic items in item slots","","","","","","","","","","","","","","","",16712190,"Equipped epic items in item slots","","","","","","","","","","","","","","","",16712190,191,0,1,33,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (932,-1,-1,0,"Total 5-player dungeons entered","","","","","","","","","","","","","","","",16712190,"Total 5-player dungeons entered","","","","","","","","","","","","","","","",16712190,14807,0,1,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (939,-1,-1,0,"Hills Like White Elekk","","","","","","","","","","","","","","","",16712190,"Complete all of Hemet Nesingwary quests in Nagrand up to and including The Ultimate Bloodsport.","","","","","","","","","","","","","","","",16712190,14862,10,1,0,2165,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (940,-1,-1,0,"The Green Hills of Stranglethorn","","","","","","","","","","","","","","","",16712190,"Complete all of Hemet Nesingwary quests in Stranglethorn Vale up to and including The Green Hills of Stranglethorn and Big Game Hunter.","","","","","","","","","","","","","","","",16712190,14861,10,1,0,916,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (946,-1,-1,0,"The Argent Dawn","","","","","","","","","","","","","","","",16712190,"Earn exalted status with the Argent Dawn.","","","","","","","","","","","","","","","",16712190,14864,15,1,0,1608,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (947,-1,-1,0,"The Argent Crusade","","","","","","","","","","","","","","","",16712190,"Earn exalted status with the Argent Crusade.","","","","","","","","","","","","","","","",16712190,14866,15,1,0,1672,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (972,-1,-1,0,"Trick or Treat!","","","","","","","","","","","","","","","",16712190,"Receive a handful of a candy from one of the Candy Buckets located in an inn.","","","","","","","","","","","","","","","",16712190,158,10,1,0,2652,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1042,-1,-1,0,"Number of hugs","","","","","","","","","","","","","","","",16712190,"Number of hugs","","","","","","","","","","","","","","","",16712190,131,0,1,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1057,-1,-1,0,"Deaths in 2v2","","","","","","","","","","","","","","","",16712190,"Deaths in 2v2","","","","","","","","","","","","","","","",16712190,123,0,1,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1068,-1,542,0,"Keli\\'dan the Breaker kills (The Blood Furnace)","","","","","","","","","","","","","","","",16712190,"Keli\\'dan the Breaker kills (The Blood Furnace)","","","","","","","","","","","","","","","",16712190,14822,5,1,1,541,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1091,-1,36,0,"Edwin VanCleef kills (Deadmines)","","","","","","","","","","","","","","","",16712190,"Edwin VanCleef kills (Deadmines)","","","","","","","","","","","","","","","",16712190,14821,5,1,1,2692,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1149,-1,-1,0,"Talent tree respecs","","","","","","","","","","","","","","","",16712190,"Talent tree respecs","","","","","","","","","","","","","","","",16712190,130,0,1,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1184,1,-1,0,"Strange Brew","","","","","","","","","","","","","","","",16712190,"Drink the Brewfest beers listed below.","","","","","","","","","","","","","","","",16712190,162,10,1,0,1780,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1197,-1,-1,0,"Total kills","","","","","","","","","","","","","","","",16712190,"Total kills","","","","","","","","","","","","","","","",16712190,128,0,1,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1199,-1,-1,0,"Professions learned","","","","","","","","","","","","","","","",16712190,"Professions learned","","","","","","","","","","","","","","","",16712190,132,0,1,33,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1242,-1,574,0,"Ingvar the Plunderer kills (Utgarde Keep)","","","","","","","","","","","","","","","",16712190,"Ingvar the Plunderer kills (Utgarde Keep)","","","","","","","","","","","","","","","",16712190,14823,5,1,1,2813,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1264,-1,-1,0,"Explore Borean Tundra","","","","","","","","","","","","","","","",16712190,"Explore Borean Tundra, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14780,10,1,0,3330,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1283,-1,-1,0,"Classic Dungeonmaster","","","","","","","","","","","","","","","",16712190,"Complete the classic dungeon achievements listed below.","","","","","","","","","","","","","","","",16712190,168,10,1,0,1949,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1308,-1,607,0,"Strand of the Ancients Victory","","","","","","","","","","","","","","","",16712190,"Win Strand of the Ancients.","","","","","","","","","","","","","","","",16712190,14881,10,1,0,3402,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1487,-1,-1,0,"Total Killing Blows","","","","","","","","","","","","","","","",16712190,"Total Killing Blows","","","","","","","","","","","","","","","",16712190,137,0,1,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1501,-1,-1,0,"Total deaths from other players","","","","","","","","","","","","","","","",16712190,"Total deaths from other players","","","","","","","","","","","","","","","",16712190,21,0,1,1,1,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1524,-1,-1,0,"Cooking skill","","","","","","","","","","","","","","","",16712190,"Cooking skill","","","","","","","","","","","","","","","",16712190,178,0,1,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1527,-1,-1,0,"Highest Alchemy skill","","","","","","","","","","","","","","","",16712190,"Highest Alchemy skill","","","","","","","","","","","","","","","",16712190,173,0,1,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1701,-1,-1,0,"Be Mine!","","","","","","","","","","","","","","","",16712190,"Eat the eight \\"Bag of Candies\\" heart candies listed below.","","","","","","","","","","","","","","","",16712190,187,10,1,0,3196,"","","","","","","","","","","","","","","","",2063532524,0,0);
INSERT INTO `Achievement` VALUES (1717,-1,571,0,"Wintergrasp Victory","","","","","","","","","","","","","","","",16712190,"Win the battle for Wintergrasp.","","","","","","","","","","","","","","","",16712190,14901,10,1,0,187,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1791,-1,-1,0,"Home Alone","","","","","","","","","","","","","","","",16712190,"Use your Hearthstone while your orphan is with you.","","","","","","","","","","","","","","","",16712190,163,10,1,0,776,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1876,-1,615,0,"Besting the Black Dragonflight (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Sartharion the Onyx Guardian in 10-player mode.","","","","","","","","","","","","","","","",16712190,14922,10,1,0,3254,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (2676,-1,-1,0,"I Found One!","","","","","","","","","","","","","","","",16712190,"Find a Brightly Colored Egg.","","","","","","","","","","","","","","","",16712190,159,10,1,0,3202,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2756,-1,-1,0,"Argent Aspiration","","","","","","","","","","","","","","","",16712190,"Train to compete in the Argent Tournament by becoming an Aspirant for your race\\'s faction.","","","","","","","","","","","","","","","",16712190,14941,10,1,0,3805,"","","","","","","","","","","","","","","","",2113864172,1,0);
INSERT INTO `Achievement` VALUES (2856,-1,603,0,"Flame Leviathan kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,"Flame Leviathan kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,14963,10,1,1,1700,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2886,-1,603,0,"The Siege of Ulduar (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Siege area of Ulduar in 10-player mode.","","","","","","","","","","","","","","","",16712190,14961,10,1,0,3844,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2887,-1,603,0,"The Siege of Ulduar (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Siege area of Ulduar in 25-player mode.","","","","","","","","","","","","","","","",16712190,14962,10,1,0,3844,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (3579,-1,-1,0,"\\"FOOD FIGHT!\\"","","","","","","","","","","","","","","","",16712190,"Bounce food off a fellow feaster\\'s head at a Bountiful Table.","","","","","","","","","","","","","","","",16712190,14981,10,1,0,456,"","","","","","","","","","","","","","","","",16775150,1,0);
INSERT INTO `Achievement` VALUES (3776,-1,628,0,"Isle of Conquest Victory","","","","","","","","","","","","","","","",16712190,"Win Isle of Conquest.","","","","","","","","","","","","","","","",16712190,15003,10,1,0,4002,"","","","","","","","","","","","","","","","",16718846,0,0);
INSERT INTO `Achievement` VALUES (3916,-1,-1,0,"Call of the Crusade (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat every boss in the Trial of the Crusader in 25-player mode.","","","","","","","","","","","","","","","",16712190,15002,10,1,0,3744,"","","","","","","","","","","","","","","","",150972924,0,0);
INSERT INTO `Achievement` VALUES (3917,-1,-1,0,"Call of the Crusade (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat every boss in the Trial of the Crusader in 10-player mode.","","","","","","","","","","","","","","","",16712190,15001,10,1,0,3744,"","","","","","","","","","","","","","","","",150972908,0,0);
INSERT INTO `Achievement` VALUES (4018,-1,-1,0,"Victories over Hunter Champion (Trial of the Champion)","","","","","","","","","","","","","","","",16712190,"Victories over Hunter Champion (Trial of the Champion)","","","","","","","","","","","","","","","",16712190,15021,0,1,1,1,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4531,-1,631,0,"Storming the Citadel (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the first four bosses in Icecrown Citadel in 10-player mode.","","","","","","","","","","","","","","","",16712190,15041,10,1,0,4167,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4604,-1,631,0,"Storming the Citadel (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the first four bosses in Icecrown Citadel in 25-player mode.","","","","","","","","","","","","","","","",16712190,15042,10,1,0,4167,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4713,-1,-1,0,"Bronjahm kills (Forge of Souls)","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16712188,15062,0,1,5,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (7,-1,-1,6,"Level 20","","","","","","","","","","","","","","","",16712190,"Reach level 20.","","","","","","","","","","","","","","","",16712190,92,10,2,4,3269,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (43,-1,-1,0,"Explore Kalimdor","","","","","","","","","","","","","","","",16712190,"Explore the regions of Kalimdor.","","","","","","","","","","","","","","","",16712190,97,25,2,0,3491,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (59,-1,529,0,"Deaths in Arathi Basin","","","","","","","","","","","","","","","",16712190,"Deaths in Arathi Basin","","","","","","","","","","","","","","","",16712190,124,0,2,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (95,-1,-1,0,"Average quests completed per day","","","","","","","","","","","","","","","",16712190,"Average quests completed per day","","","","","","","","","","","","","","","",16712190,133,0,2,73,0,"","","","","","","","","","","","","","","","",16712174,0,98);
INSERT INTO `Achievement` VALUES (122,-1,-1,121,"Expert Cook","","","","","","","","","","","","","","","",16712190,"Become an Expert Cook.","","","","","","","","","","","","","","","",16712190,170,10,2,0,1467,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (127,-1,-1,126,"Expert Fisherman","","","","","","","","","","","","","","","",16712190,"Become an Expert Fisherman.","","","","","","","","","","","","","","","",16712190,171,10,2,0,580,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (132,-1,-1,131,"Expert in First Aid","","","","","","","","","","","","","","","",16712190,"Become an Expert in first aid.","","","","","","","","","","","","","","","",16712190,172,10,2,0,504,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (155,-1,529,154,"Arathi Basin Veteran","","","","","","","","","","","","","","","",16712190,"Complete 100 victories in Arathi Basin.","","","","","","","","","","","","","","","",16712190,14802,10,2,0,3382,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (167,-1,489,166,"Warsong Gulch Veteran","","","","","","","","","","","","","","","",16712190,"Complete 100 victories in Warsong Gulch.","","","","","","","","","","","","","","","",16712190,14804,10,2,0,3388,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (209,-1,566,208,"Eye of the Storm Veteran","","","","","","","","","","","","","","","",16712190,"Complete 100 victories in Eye of the Storm.","","","","","","","","","","","","","","","",16712190,14803,10,2,0,3385,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (219,-1,30,218,"Alterac Valley Veteran","","","","","","","","","","","","","","","",16712190,"Complete 100 victories in Alterac Valley.","","","","","","","","","","","","","","","",16712190,14801,10,2,0,3378,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (252,-1,-1,0,"With a Little Helper from My Friends","","","","","","","","","","","","","","","",16712190,"Earn 50 honorable kills as a Little Helper from the Winter Wondervolt machine.","","","","","","","","","","","","","","","",16712190,156,10,2,136,3679,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (260,-1,-1,0,"Charming","","","","","","","","","","","","","","","",16712190,"Create 12 Lovely Charm Bracelets.","","","","","","","","","","","","","","","",16712190,187,10,2,0,4134,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (271,-1,-1,0,"Burning Hot Pole Dance","","","","","","","","","","","","","","","",16712190,"Dance at the ribbon pole for 60 seconds while wearing completed Midsummer set.","","","","","","","","","","","","","","","",16712190,161,10,2,0,3262,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (288,-1,-1,0,"Out With It","","","","","","","","","","","","","","","",16712190,"Eat so many Tricky Treats that you get an upset tummy.","","","","","","","","","","","","","","","",16712190,158,10,2,0,97,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (318,-1,-1,0,"Total deaths from opposite faction","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16712190,21,0,2,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (320,-1,-1,0,"Duels lost","","","","","","","","","","","","","","","",16712190,"Duels lost","","","","","","","","","","","","","","","",16712190,154,0,2,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (342,-1,-1,0,"Epic items acquired","","","","","","","","","","","","","","","",16712190,"Epic items acquired","","","","","","","","","","","","","","","",16712190,191,0,2,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (378,-1,-1,0,"Most factions at Revered or higher","","","","","","","","","","","","","","","",16712190,"Most factions at Revered or higher","","","","","","","","","","","","","","","",16712190,147,0,2,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (381,-1,-1,0,"World Honorable Kills","","","","","","","","","","","","","","","",16712190,"World Honorable Kills","","","","","","","","","","","","","","","",16712190,136,0,2,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (398,-1,-1,397,"Mercilessly Dedicated","","","","","","","","","","","","","","","",16712190,"Win 100 ranked arena matches at level 80.","","","","","","","","","","","","","","","",16712190,165,10,2,0,3593,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (467,-1,-1,0,"Realm First! Level 80 Shaman","","","","","","","","","","","","","","","",16712190,"First shaman on the realm to achieve level 80.","","","","","","","","","","","","","","","",16712190,81,0,2,256,38,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (478,-1,576,0,"The Nexus","","","","","","","","","","","","","","","",16712190,"Defeat the bosses in The Nexus.","","","","","","","","","","","","","","","",16712190,14806,10,2,0,3227,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (490,-1,576,0,"Heroic: The Nexus","","","","","","","","","","","","","","","",16712190,"Defeat The Nexus bosses on Heroic Difficulty.","","","","","","","","","","","","","","","",16712190,14921,10,2,0,3228,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (504,-1,-1,503,"100 Quests Completed","","","","","","","","","","","","","","","",16712190,"Complete 100 quests.","","","","","","","","","","","","","","","",16712190,96,10,2,0,3420,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (513,-1,-1,238,"100 Honorable Kills","","","","","","","","","","","","","","","",16712190,"Get 100 honorable kills.","","","","","","","","","","","","","","","",16712190,95,10,2,0,3455,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (523,-1,-1,522,"5 Exalted Reputations","","","","","","","","","","","","","","","",16712190,"Raise 5 reputations to Exalted.","","","","","","","","","","","","","","","",16712190,201,10,2,0,3609,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (527,-1,-1,0,"Largest hit received","","","","","","","","","","","","","","","",16712190,"Largest hit received","","","","","","","","","","","","","","","",16712190,141,0,2,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (594,-1,-1,0,"Deaths from Hogger","","","","","","","","","","","","","","","",16712190,"Deaths from Hogger","","","","","","","","","","","","","","","",16712190,126,0,2,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (606,-1,-1,605,"5 Coins of Ancestry","","","","","","","","","","","","","","","",16712190,"Receive 5 Coins of Ancestry.","","","","","","","","","","","","","","","",16712190,160,10,2,0,2717,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (624,-1,615,0,"Less Is More (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Sartharion the Onyx Guardian and the Twilight Drakes with fewer than 9 players in 10-player mode.","","","","","","","","","","","","","","","",16712190,14922,10,2,0,3253,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (627,-1,-1,0,"Explore Dun Morogh","","","","","","","","","","","","","","","",16712190,"Explore Dun Morogh, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14777,10,2,0,3531,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (628,-1,-1,0,"Deadmines","","","","","","","","","","","","","","","",16712190,"Defeat Edwin VanCleef.","","","","","","","","","","","","","","","",16712190,14808,10,2,0,3627,"","","","","","","","","","","","","","","","",16712172,1,0);
INSERT INTO `Achievement` VALUES (648,-1,542,0,"The Blood Furnace","","","","","","","","","","","","","","","",16712190,"Defeat Keli\\'dan the Breaker.","","","","","","","","","","","","","","","",16712190,14805,10,2,0,3629,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (731,-1,-1,116,"Professional Expert","","","","","","","","","","","","","","","",16712190,"Become an Expert in a profession.","","","","","","","","","","","","","","","",16712190,169,10,2,0,2846,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (736,-1,-1,0,"Explore Mulgore","","","","","","","","","","","","","","","",16712190,"Explore Mulgore, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14778,10,2,0,3562,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (753,-1,-1,0,"Average gold earned per day","","","","","","","","","","","","","","","",16712190,"Average gold earned per day","","","","","","","","","","","","","","","",16712190,140,0,2,73,1,"","","","","","","","","","","","","","","","",16712174,0,328);
INSERT INTO `Achievement` VALUES (764,1,-1,0,"The Burning Crusader","","","","","","","","","","","","","","","",16712190,"Raise all of The Burning Crusade dungeon reputations to exalted.","","","","","","","","","","","","","","","",16712190,14865,20,2,0,2365,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (798,-1,-1,0,"Rebirthed by druids","","","","","","","","","","","","","","","",16712190,"Rebirthed by druids","","","","","","","","","","","","","","","",16712190,127,0,2,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (838,-1,-1,0,"Arenas played","","","","","","","","","","","","","","","",16712190,"Arenas played","","","","","","","","","","","","","","","",16712190,152,0,2,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (863,-1,-1,0,"Explore Zangarmarsh","","","","","","","","","","","","","","","",16712190,"Explore Zangarmarsh, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14779,10,2,0,3585,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (918,-1,-1,0,"Total deaths in 5-player dungeons","","","","","","","","","","","","","","","",16712190,"Total deaths in 5-player dungeons","","","","","","","","","","","","","","","",16712190,125,0,2,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (944,-1,-1,0,"They Love Me In That Tunnel","","","","","","","","","","","","","","","",16712190,"Earn exalted status with Timbermaw Hold.","","","","","","","","","","","","","","","",16712190,14864,15,2,0,3685,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (949,-1,-1,0,"Tuskarrmageddon","","","","","","","","","","","","","","","",16712190,"Earn exalted status with The Kalu\\'ak .","","","","","","","","","","","","","","","",16712190,14866,15,2,0,3702,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1047,-1,-1,0,"Total facepalms","","","","","","","","","","","","","","","",16712190,"Total facepalms","","","","","","","","","","","","","","","",16712190,131,0,2,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1069,-1,557,0,"Nexus-Prince Shaffar kills (Mana Tombs)","","","","","","","","","","","","","","","",16712190,"Nexus-Prince Shaffar kills (Mana Tombs)","","","","","","","","","","","","","","","",16712190,14822,5,2,1,1677,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1092,-1,33,0,"Archmage Arugal kills (Shadowfang Keep)","","","","","","","","","","","","","","","",16712190,"Archmage Arugal kills (Shadowfang Keep)","","","","","","","","","","","","","","","",16712190,14821,5,2,1,2126,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1107,-1,-1,0,"Deaths in 3v3","","","","","","","","","","","","","","","",16712190,"Deaths in 3v3","","","","","","","","","","","","","","","",16712190,123,0,2,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1125,-1,-1,0,"Bandage used most","","","","","","","","","","","","","","","",16712190,"Bandage used most","","","","","","","","","","","","","","","",16712190,145,0,2,17,4,"","","","","","","","","","","","","","","","",16712174,0,344);
INSERT INTO `Achievement` VALUES (1189,1,-1,0,"To Hellfire and Back","","","","","","","","","","","","","","","",16712190,"Complete 80 quests in Hellfire Peninsula.","","","","","","","","","","","","","","","",16712190,14862,10,2,0,3554,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1198,-1,-1,0,"Total kills that grant experience or honor","","","","","","","","","","","","","","","",16712190,"Total kills that grant experience or honor","","","","","","","","","","","","","","","",16712190,128,0,2,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1201,-1,-1,0,"Professions at maximum skill","","","","","","","","","","","","","","","",16712190,"Professions at maximum skill","","","","","","","","","","","","","","","",16712190,132,0,2,33,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1203,0,-1,0,"Strange Brew","","","","","","","","","","","","","","","",16712190,"Drink the Brewfest beers listed below.","","","","","","","","","","","","","","","",16712190,162,10,2,0,1780,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1263,-1,-1,0,"Explore Howling Fjord","","","","","","","","","","","","","","","",16712190,"Explore Howling Fjord, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14780,10,2,0,3331,"","","","","","","","","","","","","","","","",2130641390,0,0);
INSERT INTO `Achievement` VALUES (1285,-1,-1,0,"Classic Raider","","","","","","","","","","","","","","","",16712190,"Complete the classic raid achievements listed below.","","","","","","","","","","","","","","","",16712190,168,20,2,0,3203,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1309,-1,607,1308,"Strand of the Ancients Veteran","","","","","","","","","","","","","","","",16712190,"Complete 100 victories in Strand of the Ancients.","","","","","","","","","","","","","","","",16712190,14881,10,2,0,3402,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1337,-1,-1,0,"Different creature types killed","","","","","","","","","","","","","","","",16712190,"Different creature types killed","","","","","","","","","","","","","","","",16712190,135,0,2,33,1,"","","","","","","","","","","","","","","","",4278125036,0,107);
INSERT INTO `Achievement` VALUES (1358,0,-1,0,"Nothing Boring About Borean","","","","","","","","","","","","","","","",16712190,"Complete 150 quests in Borean Tundra.","","","","","","","","","","","","","","","",16712190,14863,10,2,136,3336,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1462,-1,-1,0,"Badges of Justice acquired","","","","","","","","","","","","","","","",16712190,"Badges of Justice acquired","","","","","","","","","","","","","","","",16712190,130,0,2,1,1,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1488,-1,-1,0,"World Killing Blows","","","","","","","","","","","","","","","",16712190,"Cumulative for Azeroth, Northrend etc.","","","","","","","","","","","","","","","",16712190,137,0,2,9,4,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1504,-1,574,0,"Ingvar the Plunderer kills (Heroic Utgarde Keep)","","","","","","","","","","","","","","","",16712190,"Ingvar the Plunderer kills (Heroic Utgarde Keep)","","","","","","","","","","","","","","","",16712190,14823,5,2,1,2813,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1525,-1,-1,0,"Cooking daily quests completed","","","","","","","","","","","","","","","",16712190,"Cooking daily quests completed","","","","","","","","","","","","","","","",16712190,178,10,2,9,2923,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1676,1,-1,0,"Loremaster of Eastern Kingdoms","","","","","","","","","","","","","","","",16712190,"Complete 700 quests in Eastern Kingdoms.","","","","","","","","","","","","","","","",16712190,14861,10,2,136,3490,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1693,0,-1,0,"Fool For Love","","","","","","","","","","","","","","","",16712190,"Complete the Love is in the Air achievements listed below.","","","","","","","","","","","","","","","",16712190,155,10,2,0,3699,"Title Reward: The Love Fool","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (1718,-1,571,1717,"Wintergrasp Veteran","","","","","","","","","","","","","","","",16712190,"Win 100 battles for Wintergrasp.","","","","","","","","","","","","","","","",16712190,14901,10,2,0,187,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1729,-1,-1,0,"Alchemy Recipes learned","","","","","","","","","","","","","","","",16712190,"Alchemy Recipes learned","","","","","","","","","","","","","","","",16712190,173,0,2,1,4,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1788,-1,-1,0,"Bad Example","","","","","","","","","","","","","","","",16712190,"Eat the sweets listed below while your orphan is watching.","","","","","","","","","","","","","","","",16712190,163,10,2,0,1519,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1877,-1,615,0,"Less Is More (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat Sartharion the Onyx Guardian and the Twilight Drakes with fewer than 21 players in 25-player mode.","","","","","","","","","","","","","","","",16712190,14923,10,2,0,3308,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (2277,-1,-1,0,"Summons accepted","","","","","","","","","","","","","","","",16712190,"Summons accepted","","","","","","","","","","","","","","","",16712190,134,0,2,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2396,-1,-1,0,"Battleground played the most","","","","","","","","","","","","","","","",16712190,"Battleground played the most","","","","","","","","","","","","","","","",16712190,153,0,2,17,1,"","","","","","","","","","","","","","","","",2130641388,0,839);
INSERT INTO `Achievement` VALUES (2417,-1,-1,0,"Chocolate Lover","","","","","","","","","","","","","","","",16712190,"Eat 25 Noblegarden Chocolates during the Noblegarden celebration.","","","","","","","","","","","","","","","",16712190,159,10,2,0,3706,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2758,-1,-1,2756,"Argent Valor","","","","","","","","","","","","","","","",16712190,"Train to compete in the Argent Tournament by becoming a Valiant for your race\\'s faction.","","","","","","","","","","","","","","","",16712190,14941,10,2,0,3744,"","","","","","","","","","","","","","","","",2113864172,1,0);
INSERT INTO `Achievement` VALUES (2857,-1,603,0,"Razorscale kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,"Razorscale kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,14963,10,2,1,1700,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2888,-1,603,0,"The Antechamber of Ulduar (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Antechamber area of Ulduar in 10-player mode.","","","","","","","","","","","","","","","",16712190,14961,10,2,0,3846,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2889,-1,603,0,"The Antechamber of Ulduar (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Antechamber area of Ulduar in 25-player mode.","","","","","","","","","","","","","","","",16712190,14962,10,2,0,3846,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (3576,1,-1,0,"Now We\\'re Cookin\\'","","","","","","","","","","","","","","","",16712190,"Cook up one of every Pilgrim\\'s Bounty dish.","","","","","","","","","","","","","","","",16712190,14981,10,2,0,3678,"","","","","","","","","","","","","","","","",16775150,0,0);
INSERT INTO `Achievement` VALUES (3777,-1,628,3776,"Isle of Conquest Veteran","","","","","","","","","","","","","","","",16712190,"Complete 100 victories in Isle of Conquest.","","","","","","","","","","","","","","","",16712190,15003,10,2,0,3378,"","","","","","","","","","","","","","","","",16718846,0,0);
INSERT INTO `Achievement` VALUES (3812,-1,-1,0,"Call of the Grand Crusade (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat every boss in the Trial of the Grand Crusader in 25-player Heroic mode.","","","","","","","","","","","","","","","",16712190,15002,10,2,0,3744,"","","","","","","","","","","","","","","","",16718845,0,0);
INSERT INTO `Achievement` VALUES (3918,-1,-1,0,"Call of the Grand Crusade (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat every boss in the Trial of the Grand Crusader in 10-player Heroic mode.","","","","","","","","","","","","","","","",16712190,15001,10,2,0,3744,"","","","","","","","","","","","","","","","",150972908,0,0);
INSERT INTO `Achievement` VALUES (4019,-1,-1,0,"Victories over Hunter Champion (Heroic Trial of the Champion)","","","","","","","","","","","","","","","",16712190,"Victories over Hunter Champion (Heroic Trial of the Champion)","","","","","","","","","","","","","","","",16712190,15021,0,2,1,1,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4628,-1,631,4531,"Heroic: Storming the Citadel (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the first four bosses in Icecrown Citadel in 10-player Heroic mode.","","","","","","","","","","","","","","","",16712190,15041,10,2,0,4167,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4632,-1,631,4604,"Heroic: Storming the Citadel (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the first four bosses in Icecrown Citadel in 25-player Heroic mode.","","","","","","","","","","","","","","","",16712190,15042,10,2,0,4167,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4714,-1,-1,0,"Bronjahm kills (Heroic Forge of Souls)","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16712188,15062,0,2,1,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (8,-1,-1,7,"Level 30","","","","","","","","","","","","","","","",16712190,"Reach level 30.","","","","","","","","","","","","","","","",16712190,92,10,3,4,3270,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (34,1,-1,0,"I\\'ve Toured the Fjord","","","","","","","","","","","","","","","",16712190,"Complete 130 quests in Howling Fjord.","","","","","","","","","","","","","","","",16712190,14863,10,3,0,3337,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (44,-1,-1,0,"Explore Outland","","","","","","","","","","","","","","","",16712190,"Explore the regions of Outland.","","","","","","","","","","","","","","","",16712190,97,25,3,0,3492,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (56,-1,489,0,"Deaths in Warsong Gulch","","","","","","","","","","","","","","","",16712190,"Deaths in Warsong Gulch","","","","","","","","","","","","","","","",16712190,124,0,3,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (97,-1,-1,0,"Daily quests completed","","","","","","","","","","","","","","","",16712190,"Daily quests completed","","","","","","","","","","","","","","","",16712190,133,0,3,1,0,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (113,-1,-1,0,"Deaths from fatigue","","","","","","","","","","","","","","","",16712190,"Deaths from fatigue","","","","","","","","","","","","","","","",16712190,126,0,3,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (123,-1,-1,122,"Artisan Cook","","","","","","","","","","","","","","","",16712190,"Become an Artisan Cook.","","","","","","","","","","","","","","","",16712190,170,10,3,0,1467,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (128,-1,-1,127,"Artisan Fisherman","","","","","","","","","","","","","","","",16712190,"Become an Artisan Fisherman.","","","","","","","","","","","","","","","",16712190,171,10,3,0,580,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (133,-1,-1,132,"Artisan in First Aid","","","","","","","","","","","","","","","",16712190,"Become an Artisan in first aid.","","","","","","","","","","","","","","","",16712190,172,10,3,0,504,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (165,-1,529,0,"Arathi Basin Perfection","","","","","","","","","","","","","","","",16712190,"Win Arathi Basin with a score of 1600 to 0.","","","","","","","","","","","","","","","",16712190,14802,20,3,0,3469,"","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (197,-1,-1,0,"Total damage done","","","","","","","","","","","","","","","",16712190,"Total damage done","","","","","","","","","","","","","","","",16712190,141,0,3,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (199,-1,489,0,"Capture the Flag","","","","","","","","","","","","","","","",16712190,"Personally carry and capture the flag in Warsong Gulch.","","","","","","","","","","","","","","","",16712190,14804,10,3,0,3390,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (221,-1,30,0,"Alterac Grave Robber","","","","","","","","","","","","","","","",16712190,"Take 50 graveyards in Alterac Valley.","","","","","","","","","","","","","","","",16712190,14801,10,3,0,3379,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (255,-1,-1,0,"Bring Me The Head of... Oh Wait","","","","","","","","","","","","","","","",16712190,"Kill the Headless Horseman.","","","","","","","","","","","","","","","",16712190,158,10,3,0,1817,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (259,0,-1,0,"Scrooge","","","","","","","","","","","","","","","",16712190,"Throw a snowball at Cairne Bloodhoof during the Feast of Winter Veil.","","","","","","","","","","","","","","","",16712190,156,10,3,0,1665,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (333,-1,-1,0,"Gold looted","","","","","","","","","","","","","","","",16712190,"Gold looted","","","","","","","","","","","","","","","",16712190,140,0,3,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (341,-1,-1,0,"Epic items looted","","","","","","","","","","","","","","","",16712190,"Epic items looted","","","","","","","","","","","","","","","",16712190,191,0,3,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (350,-1,-1,0,"Mage Portals taken","","","","","","","","","","","","","","","",16712190,"Mage Portals taken","","","","","","","","","","","","","","","",16712190,134,0,3,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (363,-1,-1,0,"5v5 matches","","","","","","","","","","","","","","","",16712190,"5v5 matches","","","","","","","","","","","","","","","",16712190,152,0,3,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (466,-1,-1,0,"Realm First! Level 80 Druid","","","","","","","","","","","","","","","",16712190,"First druid on the realm to achieve level 80.","","","","","","","","","","","","","","","",16712190,81,0,3,256,261,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (480,-1,601,0,"Azjol-Nerub","","","","","","","","","","","","","","","",16712190,"Defeat the bosses in Azjol-Nerub.","","","","","","","","","","","","","","","",16712190,14806,10,3,0,3229,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (491,-1,601,0,"Heroic: Azjol-Nerub","","","","","","","","","","","","","","","",16712190,"Defeat the Azjol-Nerub bosses on Heroic Difficulty.","","","","","","","","","","","","","","","",16712190,14921,10,3,0,3230,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (505,-1,-1,504,"250 Quests Completed","","","","","","","","","","","","","","","",16712190,"Complete 250 quests.","","","","","","","","","","","","","","","",16712190,96,10,3,0,3419,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (515,-1,-1,513,"500 Honorable Kills","","","","","","","","","","","","","","","",16712190,"Get 500 honorable kills.","","","","","","","","","","","","","","","",16712190,95,10,3,0,3456,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (524,-1,-1,523,"10 Exalted Reputations","","","","","","","","","","","","","","","",16712190,"Raise 10 reputations to Exalted.","","","","","","","","","","","","","","","",16712190,201,10,3,0,3608,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (529,-1,-1,0,"Most factions at Honored or higher","","","","","","","","","","","","","","","",16712190,"Most factions at Honored or higher","","","","","","","","","","","","","","","",16712190,147,0,3,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (562,-1,533,0,"The Arachnid Quarter (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Arachnid Quarter of Naxxramas in 10-player mode.","","","","","","","","","","","","","","","",16712190,14922,10,3,0,1899,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (563,-1,533,0,"The Arachnid Quarter (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Arachnid Quarter of Naxxramas in 25-player mode.","","","","","","","","","","","","","","","",16712190,14923,10,3,0,1899,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (607,-1,-1,606,"10 Coins of Ancestry","","","","","","","","","","","","","","","",16712190,"Receive 10 Coins of Ancestry.","","","","","","","","","","","","","","","",16712190,160,10,3,0,2717,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (630,-1,-1,0,"Wailing Caverns","","","","","","","","","","","","","","","",16712190,"Defeat Mutanus the Devourer.","","","","","","","","","","","","","","","",16712190,14808,10,3,0,3654,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (649,-1,547,0,"The Slave Pens","","","","","","","","","","","","","","","",16712190,"Defeat Quagmirran.","","","","","","","","","","","","","","","",16712190,14805,10,3,0,3591,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (732,-1,-1,731,"Professional Artisan","","","","","","","","","","","","","","","",16712190,"Become an Artisan in a profession.","","","","","","","","","","","","","","","",16712190,169,10,3,0,2846,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (768,-1,-1,0,"Explore Tirisfal Glades","","","","","","","","","","","","","","","",16712190,"Explore Tirisfal Glades, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14777,10,3,0,3570,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (783,-1,566,0,"The Perfect Storm","","","","","","","","","","","","","","","",16712190,"Win Eye of the Storm with a score of 1600 to 0.","","","","","","","","","","","","","","","",16712190,14803,10,3,0,2830,"","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (840,-1,-1,0,"Battlegrounds won","","","","","","","","","","","","","","","",16712190,"Battlegrounds won","","","","","","","","","","","","","","","",16712190,153,0,3,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (842,-1,-1,0,"Explore Teldrassil","","","","","","","","","","","","","","","",16712190,"Explore Teldrassil, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14778,10,3,0,3528,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (867,-1,-1,0,"Explore Terokkar Forest","","","","","","","","","","","","","","","",16712190,"Explore Terokkar Forest, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14779,10,3,0,3586,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (875,-1,-1,398,"Vengefully Dedicated","","","","","","","","","","","","","","","",16712190,"Win 200 ranked arena matches at level 80.","","","","","","","","","","","","","","","",16712190,165,10,3,0,3594,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (893,-1,-1,0,"Cenarion War Hippogryph","","","","","","","","","","","","","","","",16712190,"Obtain the Cenarion War Hippogryph from the Cenarion Expedition in Zangarmarsh.","","","","","","","","","","","","","","","",16712190,14865,10,3,0,2554,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (950,-1,-1,0,"Frenzyheart Tribe","","","","","","","","","","","","","","","",16712190,"Earn exalted status with the Frenzyheart Tribe.","","","","","","","","","","","","","","","",16712190,14866,10,3,0,956,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (957,-1,-1,0,"Hero of the Zandalar Tribe","","","","","","","","","","","","","","","",16712190,"Earn exalted status with the Zandalar Tribe.","","","","","","","","","","","","","","","",16712190,14864,10,3,0,2745,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1067,-1,-1,0,"Total times playing world\\'s smallest violin","","","","","","","","","","","","","","","",16712190,"Total times playing world\\'s smallest violin","","","","","","","","","","","","","","","",16712190,131,0,3,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1070,-1,560,0,"Epoch Hunter kills (The Escape From Durnholde)","","","","","","","","","","","","","","","",16712190,"Epoch Hunter kills (The Escape From Durnholde)","","","","","","","","","","","","","","","",16712190,14822,5,3,1,1701,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1093,-1,189,0,"Scarlet Commander Mograine kills (Scarlet Monastery)","","","","","","","","","","","","","","","",16712190,"Scarlet Commander Mograine kills (Scarlet Monastery)","","","","","","","","","","","","","","","",16712190,14821,5,3,1,2792,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1108,-1,-1,0,"Deaths in 5v5","","","","","","","","","","","","","","","",16712190,"Deaths in 5v5","","","","","","","","","","","","","","","",16712190,123,0,3,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1145,-1,-1,0,"King of the Fire Festival","","","","","","","","","","","","","","","",16712190,"Complete the quest, \\"A Thief\\'s Reward\\", by stealing the flames from your enemy\\'s capital cities.","","","","","","","","","","","","","","","",16712190,161,10,3,0,1599,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (1200,-1,-1,0,"Secondary skills at maximum skill","","","","","","","","","","","","","","","",16712190,"Secondary skills at maximum skill","","","","","","","","","","","","","","","",16712190,132,0,3,33,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1229,-1,-1,0,"Revived by druids","","","","","","","","","","","","","","","",16712190,"Revived by druids","","","","","","","","","","","","","","","",16712190,127,0,3,9,1,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1231,-1,576,0,"Keristrasza kills (The Nexus)","","","","","","","","","","","","","","","",16712190,"Keristrasza kills (The Nexus)","","","","","","","","","","","","","","","",16712190,14823,5,3,1,56,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1265,-1,-1,0,"Explore Dragonblight","","","","","","","","","","","","","","","",16712190,"Explore Dragonblight, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14780,10,3,0,3332,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1271,0,-1,0,"To Hellfire and Back","","","","","","","","","","","","","","","",16712190,"Complete 90 quests in Hellfire Peninsula.","","","","","","","","","","","","","","","",16712190,14862,10,3,0,3554,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1284,-1,-1,0,"Outland Dungeonmaster","","","","","","","","","","","","","","","",16712190,"Complete the Burning Crusade dungeon achievements listed below.","","","","","","","","","","","","","","","",16712190,168,10,3,0,1948,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1298,-1,-1,0,"Different bandage types used","","","","","","","","","","","","","","","",16712190,"Different bandage types used","","","","","","","","","","","","","","","",16712190,145,0,3,33,1,"","","","","","","","","","","","","","","","",4278125036,0,344);
INSERT INTO `Achievement` VALUES (1310,-1,607,0,"Storm the Beach","","","","","","","","","","","","","","","",16712190,"Capture the Titan Relic in under four minutes.","","","","","","","","","","","","","","","",16712190,14881,20,3,0,3403,"","","","","","","","","","","","","","","","",2113864172,1,0);
INSERT INTO `Achievement` VALUES (1336,-1,-1,0,"Creature type killed the most","","","","","","","","","","","","","","","",16712190,"Creature type killed the most","","","","","","","","","","","","","","","",16712190,135,0,3,17,1,"","","","","","","","","","","","","","","","",4278125036,0,107);
INSERT INTO `Achievement` VALUES (1458,-1,-1,0,"Continent with the most Honorable Kills","","","","","","","","","","","","","","","",16712190,"Continent with the most Honorable Kills","","","","","","","","","","","","","","","",16712190,136,0,3,17,1,"","","","","","","","","","","","","","","","",2113864172,0,381);
INSERT INTO `Achievement` VALUES (1464,-1,-1,0,"Emblems of Heroism acquired","","","","","","","","","","","","","","","",16712190,"Emblems of Heroism acquired","","","","","","","","","","","","","","","",16712190,130,0,3,1,1,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1489,-1,-1,0,"Continent with the most Killing Blows","","","","","","","","","","","","","","","",16712190,"Continent with the most Killing Blows","","","","","","","","","","","","","","","",16712190,137,0,3,17,1,"","","","","","","","","","","","","","","","",2080309740,0,1488);
INSERT INTO `Achievement` VALUES (1532,-1,-1,0,"Highest Blacksmithing skill","","","","","","","","","","","","","","","",16712190,"Highest Blacksmithing skill","","","","","","","","","","","","","","","",16712190,173,0,3,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1677,0,-1,0,"Loremaster of Eastern Kingdoms","","","","","","","","","","","","","","","",16712190,"Complete 550 quests in Eastern Kingdoms.","","","","","","","","","","","","","","","",16712190,14861,10,3,136,3490,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1695,-1,-1,0,"Dangerous Love","","","","","","","","","","","","","","","",16712190,"Assist the Steamwheedle Cartel in stopping the sinister Crown Chemical Co. plot.","","","","","","","","","","","","","","","",16712190,187,10,3,0,1853,"","","","","","","","","","","","","","","","",2063532524,1,0);
INSERT INTO `Achievement` VALUES (1707,1,-1,0,"Fool For Love","","","","","","","","","","","","","","","",16712190,"Complete the Love is in the Air achievements listed below.","","","","","","","","","","","","","","","",16712190,155,10,3,0,3699,"Title Reward: The Love Fool","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (1745,-1,-1,0,"Cooking Recipes known","","","","","","","","","","","","","","","",16712190,"Cooking Recipes known","","","","","","","","","","","","","","","",16712190,178,0,3,1,4,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1755,-1,571,0,"Within Our Grasp","","","","","","","","","","","","","","","",16712190,"Attack Wintergrasp and succeed in 10 minutes or less.","","","","","","","","","","","","","","","",16712190,14901,10,3,0,145,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1789,-1,-1,0,"Daily Chores","","","","","","","","","","","","","","","",16712190,"Complete five daily quests with your orphan out.","","","","","","","","","","","","","","","",16712190,163,10,3,0,162,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1936,-1,-1,0,"Does Your Wolpertinger Linger?","","","","","","","","","","","","","","","",16712190,"Obtain a Wolpertinger pet.","","","","","","","","","","","","","","","",16712190,162,10,3,0,1312,"","","","","","","","","","","","","","","","",2130641388,1,0);
INSERT INTO `Achievement` VALUES (2219,-1,-1,0,"Total deaths in 5-player heroic dungeons","","","","","","","","","","","","","","","",16712190,"Total deaths in 5-player heroic dungeons","","","","","","","","","","","","","","","",16712190,125,0,3,1,1,"","","","","","","","","","","","","","","","",2063532524,0,0);
INSERT INTO `Achievement` VALUES (2418,-1,-1,2417,"Chocoholic","","","","","","","","","","","","","","","",16712190,"Eat 100 Noblegarden Chocolates during the Noblegarden celebration.","","","","","","","","","","","","","","","",16712190,159,10,3,0,3706,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (2772,-1,-1,0,"Tilted!","","","","","","","","","","","","","","","",16712190,"Defeat another player in a mounted duel at the Argent Tournament.","","","","","","","","","","","","","","","",16712190,14941,10,3,0,370,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2858,-1,603,0,"Ignis the Furnace Master kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,"Ignis the Furnace Master kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,14963,10,3,1,1700,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2890,-1,603,0,"The Keepers of Ulduar (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the Keeper bosses of Ulduar in 10-player mode.","","","","","","","","","","","","","","","",16712190,14961,10,3,0,3847,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2891,-1,603,0,"The Keepers of Ulduar (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the Keeper bosses of Ulduar in 25-player mode.","","","","","","","","","","","","","","","",16712190,14962,10,3,0,3847,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (3577,0,-1,0,"Now We\\'re Cookin\\'","","","","","","","","","","","","","","","",16712190,"Cook up one of every Pilgrim\\'s Bounty dish.","","","","","","","","","","","","","","","",16712190,14981,10,3,0,3678,"","","","","","","","","","","","","","","","",16775150,0,0);
INSERT INTO `Achievement` VALUES (3797,-1,-1,0,"Upper Back Pain (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Icehowl while at least 2 Snobolds remain alive in 10-player mode.","","","","","","","","","","","","","","","",16712190,15001,10,3,0,1665,"","","","","","","","","","","","","","","","",16718847,1,0);
INSERT INTO `Achievement` VALUES (3813,-1,-1,0,"Upper Back Pain (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat Icehowl while at least 4 Snobolds remain alive in 25-player mode.","","","","","","","","","","","","","","","",16712190,15002,10,3,0,1665,"","","","","","","","","","","","","","","","",16718845,1,0);
INSERT INTO `Achievement` VALUES (3845,-1,628,0,"Isle of Conquest All-Star","","","","","","","","","","","","","","","",16712190,"In a single Isle of Conquest battle, assault a base, defend a base, destroy a vehicle and kill a player.","","","","","","","","","","","","","","","",16712190,15003,20,3,0,2268,"","","","","","","","","","","","","","","","",16718847,0,0);
INSERT INTO `Achievement` VALUES (4048,-1,-1,0,"Victories over Mage Champion (Trial of the Champion)","","","","","","","","","","","","","","","",16712190,"Victories over Mage Champion (Trial of the Champion)","","","","","","","","","","","","","","","",16712190,15021,0,3,1,1,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4528,-1,631,0,"The Plagueworks (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Plagueworks in Icecrown Citadel in 10-player mode.","","","","","","","","","","","","","","","",16712190,15041,10,3,0,4177,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4605,-1,631,0,"The Plagueworks (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Plagueworks in Icecrown Citadel in 25-player mode.","","","","","","","","","","","","","","","",16712190,15042,10,3,0,4177,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4715,-1,-1,0,"Devourer of Souls kills (Forge of Souls)","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16712188,15062,0,3,1,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (9,-1,-1,8,"Level 40","","","","","","","","","","","","","","","",16712190,"Reach level 40.","","","","","","","","","","","","","","","",16712190,92,10,4,4,3271,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (45,-1,-1,0,"Explore Northrend","","","","","","","","","","","","","","","",16712190,"Explore the regions of Northrend.","","","","","","","","","","","","","","","",16712190,97,25,4,0,3493,"Reward: Tabard of the Explorer","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (108,-1,-1,0,"Critters killed","","","","","","","","","","","","","","","",16712190,"Critters killed","","","","","","","","","","","","","","","",16712190,135,0,4,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (114,-1,-1,0,"Deaths from falling","","","","","","","","","","","","","","","",16712190,"Deaths from falling","","","","","","","","","","","","","","","",16712190,126,0,4,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (124,-1,-1,123,"Master Cook","","","","","","","","","","","","","","","",16712190,"Become a Master Cook.","","","","","","","","","","","","","","","",16712190,170,10,4,0,1467,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (129,-1,-1,128,"Master Fisherman","","","","","","","","","","","","","","","",16712190,"Become a Master Fisherman.","","","","","","","","","","","","","","","",16712190,171,10,4,0,580,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (134,-1,-1,133,"Master in First Aid","","","","","","","","","","","","","","","",16712190,"Become a Master in first aid.","","","","","","","","","","","","","","","",16712190,172,10,4,0,504,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (158,-1,529,0,"Me and the Cappin\\' Makin\\' it Happen","","","","","","","","","","","","","","","",16712190,"Take 50 flags in Arathi Basin.","","","","","","","","","","","","","","","",16712190,14802,10,4,0,3470,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (200,-1,489,0,"Persistent Defender","","","","","","","","","","","","","","","",16712190,"Return 50 flags as a defender in Warsong Gulch.","","","","","","","","","","","","","","","",16712190,14804,10,4,0,3398,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (222,-1,30,0,"Tower Defense","","","","","","","","","","","","","","","",16712190,"Defend 50 towers in Alterac Valley.","","","","","","","","","","","","","","","",16712190,14801,10,4,0,3581,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (248,-1,-1,0,"Sunday\\'s Finest","","","","","","","","","","","","","","","",16712190,"Discover the White Tuxedo Shirt and Black Tuxedo Pants by opening Brightly Colored Eggs during the Noblegarden celebration.","","","","","","","","","","","","","","","",16712190,159,10,4,0,3712,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (289,-1,-1,0,"The Savior of Hallow\\'s End","","","","","","","","","","","","","","","",16712190,"Complete one of the quests to save a village from the Headless Horseman.","","","","","","","","","","","","","","","",16712190,158,10,4,0,3512,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (326,-1,-1,0,"Gold from quest rewards","","","","","","","","","","","","","","","",16712190,"Gold from quest rewards","","","","","","","","","","","","","","","",16712190,140,0,4,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (336,-1,-1,0,"Legendary items acquired","","","","","","","","","","","","","","","",16712190,"Legendary items acquired","","","","","","","","","","","","","","","",16712190,191,0,4,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (345,-1,-1,0,"Health potions consumed","","","","","","","","","","","","","","","",16712190,"Health potions consumed","","","","","","","","","","","","","","","",16712190,145,0,4,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (362,-1,-1,0,"5v5 victories","","","","","","","","","","","","","","","",16712190,"5v5 victories","","","","","","","","","","","","","","","",16712190,152,0,4,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (383,-1,-1,0,"Arena Honorable Kills","","","","","","","","","","","","","","","",16712190,"Arena Honorable Kills","","","","","","","","","","","","","","","",16712190,136,0,4,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (465,-1,-1,0,"Realm First! Level 80 Paladin","","","","","","","","","","","","","","","",16712190,"First paladin on the realm to achieve level 80.","","","","","","","","","","","","","","","",16712190,81,0,4,256,25,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (481,-1,619,0,"Ahn\\'kahet: The Old Kingdom","","","","","","","","","","","","","","","",16712190,"Defeat the bosses in Ahn\\'kahet: The Old Kingdom.","","","","","","","","","","","","","","","",16712190,14806,10,4,0,3231,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (492,-1,619,0,"Heroic: Ahn\\'kahet: The Old Kingdom","","","","","","","","","","","","","","","",16712190,"Defeat the Ahn\\'kahet: The Old Kingdom bosses on Heroic Difficulty.","","","","","","","","","","","","","","","",16712190,14921,10,4,0,3232,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (506,-1,-1,505,"500 Quests Completed","","","","","","","","","","","","","","","",16712190,"Complete 500 quests.","","","","","","","","","","","","","","","",16712190,96,10,4,0,3418,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (516,-1,-1,515,"1000 Honorable Kills","","","","","","","","","","","","","","","",16712190,"Get 1000 honorable kills.","","","","","","","","","","","","","","","",16712190,95,10,4,0,3457,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (521,-1,-1,524,"15 Exalted Reputations","","","","","","","","","","","","","","","",16712190,"Raise 15 reputations to Exalted.","","","","","","","","","","","","","","","",16712190,201,10,4,0,3607,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (528,-1,-1,0,"Total damage received","","","","","","","","","","","","","","","",16712190,"Total damage received","","","","","","","","","","","","","","","",16712190,141,0,4,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (564,-1,533,0,"The Construct Quarter (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Construct Quarter of Naxxramas in 10-player mode.","","","","","","","","","","","","","","","",16712190,14922,10,4,0,2956,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (565,-1,533,0,"The Construct Quarter (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Construct Quarter of Naxxramas in 25-player mode.","","","","","","","","","","","","","","","",16712190,14923,10,4,0,2956,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (608,-1,-1,607,"25 Coins of Ancestry","","","","","","","","","","","","","","","",16712190,"Receive 25 Coins of Ancestry.","","","","","","","","","","","","","","","",16712190,160,10,4,0,2717,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (631,-1,-1,0,"Shadowfang Keep","","","","","","","","","","","","","","","",16712190,"Defeat Archmage Arugal.","","","","","","","","","","","","","","","",16712190,14808,10,4,0,3822,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (650,-1,-1,0,"Underbog","","","","","","","","","","","","","","","",16712190,"Defeat The Black Stalker.","","","","","","","","","","","","","","","",16712190,14805,10,4,0,3823,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (733,-1,-1,732,"Professional Master","","","","","","","","","","","","","","","",16712190,"Become a Master in a profession.","","","","","","","","","","","","","","","",16712190,169,10,4,0,2846,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (759,-1,-1,0,"Average daily quests completed per day","","","","","","","","","","","","","","","",16712190,"Average daily quests completed per day","","","","","","","","","","","","","","","",16712190,133,0,4,65,1,"","","","","","","","","","","","","","","","",16712174,0,97);
INSERT INTO `Achievement` VALUES (784,-1,566,0,"Eye of the Storm Domination","","","","","","","","","","","","","","","",16712190,"Win Eye of the Storm 10 times while holding 4 bases.","","","","","","","","","","","","","","","",16712190,14803,10,4,0,2830,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (799,-1,-1,0,"Spirit returned to body by shamans","","","","","","","","","","","","","","","",16712190,"Spirit returned to body by shamans","","","","","","","","","","","","","","","",16712190,127,0,4,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (859,-1,-1,0,"Explore Eversong Woods","","","","","","","","","","","","","","","",16712190,"Explore Eversong Woods, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14777,10,4,0,3537,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (860,-1,-1,0,"Explore Azuremyst Isle","","","","","","","","","","","","","","","",16712190,"Explore Azuremyst Isle, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14778,10,4,0,3545,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (866,-1,-1,0,"Explore Nagrand","","","","","","","","","","","","","","","",16712190,"Explore Nagrand, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14779,10,4,0,3563,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (876,-1,-1,875,"Brutally Dedicated","","","","","","","","","","","","","","","",16712190,"Win 300 ranked arena matches at level 80.","","","","","","","","","","","","","","","",16712190,165,10,4,0,3595,"Reward: Tabard of Brute Force","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (894,-1,-1,0,"Flying High Over Skettis","","","","","","","","","","","","","","","",16712190,"Earn exalted status within the Sha\\'tari Skyguard.","","","","","","","","","","","","","","","",16712190,14865,10,4,0,2422,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (917,-1,-1,0,"Total deaths in 10-player raids","","","","","","","","","","","","","","","",16712190,"Total deaths in 10-player raids","","","","","","","","","","","","","","","",16712190,125,0,4,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (924,-1,-1,0,"Most Northrend factions at Exalted","","","","","","","","","","","","","","","",16712190,"Most Northrend factions at Exalted","","","","","","","","","","","","","","","",16712190,147,0,4,33,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (951,-1,-1,0,"The Oracles","","","","","","","","","","","","","","","",16712190,"Earn exalted status with the The Oracles.","","","","","","","","","","","","","","","",16712190,14866,10,4,0,1751,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (955,-1,-1,0,"Hydraxian Waterlords","","","","","","","","","","","","","","","",16712190,"Earn exalted status with the Hydraxian Waterlords.","","","","","","","","","","","","","","","",16712190,14864,10,4,0,2134,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1022,1,-1,0,"Flame Warden of Eastern Kingdoms","","","","","","","","","","","","","","","",16712190,"Honor the flames of Eastern Kingdoms.","","","","","","","","","","","","","","","",16712190,161,10,4,0,1923,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1066,-1,-1,0,"Total times LOL\\'d","","","","","","","","","","","","","","","",16712190,"Total times LOL\\'d","","","","","","","","","","","","","","","",16712190,131,0,4,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1071,-1,547,0,"Quagmirran kills (Slave Pens)","","","","","","","","","","","","","","","",16712190,"Quagmirran kills (Slave Pens)","","","","","","","","","","","","","","","",16712190,14822,5,4,1,2051,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1094,-1,209,0,"Chief Ukorz Sandscalp kills (Zul\\'Farrak)","","","","","","","","","","","","","","","",16712190,"Chief Ukorz Sandscalp kills (Zul\\'Farrak)","","","","","","","","","","","","","","","",16712190,14821,5,4,1,1698,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1106,-1,-1,0,"Deaths in Eye of the Storm","","","","","","","","","","","","","","","",16712190,"Deaths in Eye of the Storm","","","","","","","","","","","","","","","",16712190,124,0,4,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1185,-1,-1,0,"The Brewfest Diet","","","","","","","","","","","","","","","",16712190,"Eat 8 of the Brewfest foods listed below.","","","","","","","","","","","","","","","",16712190,162,10,4,0,2996,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1190,-1,-1,0,"Mysteries of the Marsh","","","","","","","","","","","","","","","",16712190,"Complete 54 quests in Zangarmarsh.","","","","","","","","","","","","","","","",16712190,14862,10,4,0,3585,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1202,-1,-1,0,"Weapon skills at maximum skill","","","","","","","","","","","","","","","",16712190,"Weapon skills at maximum skill","","","","","","","","","","","","","","","",16712190,132,0,4,33,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1255,1,-1,0,"Scrooge","","","","","","","","","","","","","","","",16712190,"Throw a snowball at King Magni Bronzebeard during the Feast of Winter Veil.","","","","","","","","","","","","","","","",16712190,156,10,4,0,1665,"","","","","","","","","","","","","","","","",2113864174,1,0);
INSERT INTO `Achievement` VALUES (1266,-1,-1,0,"Explore Grizzly Hills","","","","","","","","","","","","","","","",16712190,"Explore Grizzly Hills, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14780,10,4,0,3333,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1287,-1,-1,0,"Outland Dungeon Hero","","","","","","","","","","","","","","","",16712190,"Complete the heroic Burning Crusade dungeon achievements listed below.","","","","","","","","","","","","","","","",16712190,168,20,4,0,1762,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1339,-1,-1,0,"Mage portal taken most","","","","","","","","","","","","","","","",16712190,"Mage portal taken most","","","","","","","","","","","","","","","",16712190,134,0,4,17,1,"","","","","","","","","","","","","","","","",4278125036,0,350);
INSERT INTO `Achievement` VALUES (1356,0,-1,0,"I\\'ve Toured the Fjord","","","","","","","","","","","","","","","",16712190,"Complete 105 quests in Howling Fjord.","","","","","","","","","","","","","","","",16712190,14863,10,4,0,3337,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1465,-1,-1,0,"Emblems of Valor acquired","","","","","","","","","","","","","","","",16712190,"Emblems of Valor acquired","","","","","","","","","","","","","","","",16712190,130,0,4,1,1,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1490,-1,-1,0,"Arena Killing Blows","","","","","","","","","","","","","","","",16712190,"Arena Killing Blows","","","","","","","","","","","","","","","",16712190,137,0,4,9,4,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1505,-1,576,0,"Keristrasza kills (Heroic Nexus)","","","","","","","","","","","","","","","",16712190,"Keristrasza kills (Heroic Nexus)","","","","","","","","","","","","","","","",16712190,14823,5,4,1,56,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1678,1,-1,0,"Loremaster of Kalimdor","","","","","","","","","","","","","","","",16712190,"Complete 700 quests in Kalimdor.","","","","","","","","","","","","","","","",16712190,14861,10,4,136,3491,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1699,-1,-1,0,"Fistful of Love","","","","","","","","","","","","","","","",16712190,"Use a Handful of Rose Petals on each of the race/class combinations listed below.","","","","","","","","","","","","","","","",16712190,187,10,4,0,1848,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1730,-1,-1,0,"Blacksmithing Plans learned","","","","","","","","","","","","","","","",16712190,"Blacksmithing Plans learned","","","","","","","","","","","","","","","",16712190,173,0,4,1,4,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1765,-1,607,0,"Steady Hands","","","","","","","","","","","","","","","",16712190,"Disarm 5 seaforium charges in a single battle.","","","","","","","","","","","","","","","",16712190,14881,10,4,0,1755,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1792,-1,-1,0,"Aw, Isn\\'t It Cute?","","","","","","","","","","","","","","","",16712190,"Obtain one of the Children\\'s Week reward pets.","","","","","","","","","","","","","","","",16712190,163,10,4,0,1588,"","","","","","","","","","","","","","","","",2080309740,1,0);
INSERT INTO `Achievement` VALUES (1976,-1,-1,0,"Dalaran Cooking Awards gained","","","","","","","","","","","","","","","",16712190,"Dalaran Cooking Awards gained","","","","","","","","","","","","","","","",16712190,178,0,4,1,1,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (2199,-1,571,0,"Wintergrasp Ranger","","","","","","","","","","","","","","","",16712190,"Kill 10 players in each of the Wintergrasp areas listed below.","","","","","","","","","","","","","","","",16712190,14901,10,4,0,2945,"","","","","","","","","","","","","","","","",1811874284,0,0);
INSERT INTO `Achievement` VALUES (2397,-1,-1,0,"Battleground won the most","","","","","","","","","","","","","","","",16712190,"Battleground won the most","","","","","","","","","","","","","","","",16712190,153,0,4,17,1,"","","","","","","","","","","","","","","","",2130641388,0,840);
INSERT INTO `Achievement` VALUES (2797,1,-1,0,"Noble Gardener","","","","","","","","","","","","","","","",16712190,"Complete the Noblegarden achievements listed below.","","","","","","","","","","","","","","","",16712190,155,10,4,0,3202,"Title Reward: the Noble","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (2836,-1,-1,0,"Lance a Lot","","","","","","","","","","","","","","","",16712190,"Best a rider of every racial faction at the Argent Tournament.","","","","","","","","","","","","","","","",16712190,14941,10,4,0,370,"","","","","","","","","","","","","","","","",2063532524,0,0);
INSERT INTO `Achievement` VALUES (2859,-1,603,0,"XT-002 Deconstructor kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,"XT-002 Deconstructor kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,14963,10,4,1,1700,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2892,-1,603,0,"The Descent into Madness (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Descent into Madness area of Ulduar in 10-player mode.","","","","","","","","","","","","","","","",16712190,14961,10,4,0,3848,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2893,-1,603,0,"The Descent into Madness (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Descent into Madness area of Ulduar in 25-player mode.","","","","","","","","","","","","","","","",16712190,14962,10,4,0,3848,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (3556,1,-1,0,"Pilgrim\\'s Paunch","","","","","","","","","","","","","","","",16712190,"Acquire the Spirit of Sharing from a complete Bountiful Table feast at every Alliance capital.","","","","","","","","","","","","","","","",16712190,14981,10,4,0,3709,"","","","","","","","","","","","","","","","",16775150,0,0);
INSERT INTO `Achievement` VALUES (3846,1,628,0,"Resource Glut","","","","","","","","","","","","","","","",16712190,"Win Isle of Conquest while your team controls the Quarry and Oil Refinery.","","","","","","","","","","","","","","","",16712190,15003,10,4,0,3736,"","","","","","","","","","","","","","","","",16718847,0,0);
INSERT INTO `Achievement` VALUES (3936,-1,-1,0,"Not One, But Two Jormungars (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Acidmaw and Dreadscale within 10 seconds of each other in 10-player mode.","","","","","","","","","","","","","","","",16712190,15001,10,4,0,4025,"","","","","","","","","","","","","","","","",16712172,1,0);
INSERT INTO `Achievement` VALUES (3937,-1,-1,0,"Not One, But Two Jormungars (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat Acidmaw and Dreadscale within 10 seconds of each other in 25-player mode.","","","","","","","","","","","","","","","",16712190,15002,10,4,0,4025,"","","","","","","","","","","","","","","","",16775148,1,0);
INSERT INTO `Achievement` VALUES (4049,-1,-1,0,"Victories over Mage Champion (Heroic Trial of the Champion)","","","","","","","","","","","","","","","",16712190,"Victories over Mage Champion (Heroic Trial of the Champion)","","","","","","","","","","","","","","","",16712190,15021,0,4,1,1,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4629,-1,631,4528,"Heroic: The Plagueworks (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Plagueworks in Icecrown Citadel in 10-player Heroic mode.","","","","","","","","","","","","","","","",16712190,15041,10,4,0,4177,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4633,-1,631,4605,"Heroic: The Plagueworks (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Plagueworks in Icecrown Citadel in 25-player Heroic mode.","","","","","","","","","","","","","","","",16712190,15042,10,4,0,4177,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4716,-1,-1,0,"Devourer of Souls kills (Heroic Forge of Souls)","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16712188,15062,0,4,1,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (10,-1,-1,9,"Level 50","","","","","","","","","","","","","","","",16712190,"Reach level 50.","","","","","","","","","","","","","","","",16712190,92,10,5,4,3272,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (35,1,-1,0,"Might of Dragonblight","","","","","","","","","","","","","","","",16712190,"Complete 115 quests in Dragonblight.","","","","","","","","","","","","","","","",16712190,14863,10,5,0,3338,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (46,-1,-1,0,"World Explorer","","","","","","","","","","","","","","","",16712190,"Explore Eastern Kingdoms, Kalimdor, Outland and Northrend.","","","","","","","","","","","","","","","",16712190,97,50,5,0,2759,"Title Reward: The Explorer","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (53,-1,30,0,"Alterac Valley battles","","","","","","","","","","","","","","","",16712190,"Alterac Valley battles","","","","","","","","","","","","","","","",16712190,153,0,5,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (73,-1,529,0,"Disgracin\\' The Basin","","","","","","","","","","","","","","","",16712190,"Assault 3 bases in a single Arathi Basin battle.","","","","","","","","","","","","","","","",16712190,14802,10,5,0,456,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (94,-1,-1,0,"Quests abandoned","","","","","","","","","","","","","","","",16712190,"Quests abandoned","","","","","","","","","","","","","","","",16712190,133,0,5,1,0,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (115,-1,-1,0,"Deaths from fire and lava","","","","","","","","","","","","","","","",16712190,"Deaths from fire and lava","","","","","","","","","","","","","","","",16712190,126,0,5,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (125,-1,-1,124,"Grand Master Cook","","","","","","","","","","","","","","","",16712190,"Become a Grand Master Cook.","","","","","","","","","","","","","","","",16712190,170,10,5,0,1467,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (130,-1,-1,129,"Grand Master Fisherman","","","","","","","","","","","","","","","",16712190,"Become a Grand Master Fisherman.","","","","","","","","","","","","","","","",16712190,171,10,5,0,580,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (135,-1,-1,134,"Grand Master in First Aid","","","","","","","","","","","","","","","",16712190,"Become a Grand Master in first aid.","","","","","","","","","","","","","","","",16712190,172,10,5,0,504,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (189,-1,-1,0,"Largest heal cast","","","","","","","","","","","","","","","",16712190,"Largest heal cast","","","","","","","","","","","","","","","",16712190,141,0,5,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (214,-1,566,0,"Flurry","","","","","","","","","","","","","","","",16712190,"Win Eye of the Storm in under 6 minutes.","","","","","","","","","","","","","","","",16712190,14803,10,5,0,3386,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (224,0,30,0,"Loyal Defender","","","","","","","","","","","","","","","",16712190,"In Alterac Valley, kill 50 enemy players in the Hall of the Frostwolf.","","","","","","","","","","","","","","","",16712190,14801,10,5,0,3582,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (249,-1,-1,0,"Dressed for the Occasion","","","","","","","","","","","","","","","",16712190,"Discover an Elegant Dress by opening Brightly Colored Eggs during the Noblegarden celebration.","","","","","","","","","","","","","","","",16712190,159,10,5,0,3713,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (281,-1,-1,0,"First Aid skill","","","","","","","","","","","","","","","",16712190,"First Aid skill","","","","","","","","","","","","","","","",16712190,178,0,5,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (339,-1,-1,0,"Mounts owned","","","","","","","","","","","","","","","",16712190,"Mounts owned","","","","","","","","","","","","","","","",16712190,191,0,5,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (353,-1,-1,0,"Number of times hearthed","","","","","","","","","","","","","","","",16712190,"Number of times hearthed","","","","","","","","","","","","","","","",16712190,134,0,5,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (365,-1,-1,0,"3v3 matches","","","","","","","","","","","","","","","",16712190,"3v3 matches","","","","","","","","","","","","","","","",16712190,152,0,5,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (382,-1,-1,0,"Battleground Honorable Kills","","","","","","","","","","","","","","","",16712190,"Battleground Honorable Kills","","","","","","","","","","","","","","","",16712190,136,0,5,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (464,-1,-1,0,"Realm First! Level 80 Priest","","","","","","","","","","","","","","","",16712190,"First priest on the realm to achieve level 80.","","","","","","","","","","","","","","","",16712190,81,0,5,256,1523,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (482,-1,600,0,"Drak\\'Tharon Keep","","","","","","","","","","","","","","","",16712190,"Defeat the bosses in Drak\\'Tharon Keep.","","","","","","","","","","","","","","","",16712190,14806,10,5,0,3233,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (493,-1,600,0,"Heroic: Drak\\'Tharon Keep","","","","","","","","","","","","","","","",16712190,"Defeat the Drak\\'Tharon Keep bosses on Heroic Difficulty.","","","","","","","","","","","","","","","",16712190,14921,10,5,0,3234,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (507,-1,-1,506,"1000 Quests Completed","","","","","","","","","","","","","","","",16712190,"Complete 1000 quests.","","","","","","","","","","","","","","","",16712190,96,10,5,0,3417,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (512,-1,-1,516,"5000 Honorable Kills","","","","","","","","","","","","","","","",16712190,"Get 5000 honorable kills.","","","","","","","","","","","","","","","",16712190,95,10,5,0,3459,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (520,-1,-1,521,"20 Exalted Reputations","","","","","","","","","","","","","","","",16712190,"Raise 20 reputations to Exalted.","","","","","","","","","","","","","","","",16712190,201,10,5,0,3606,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (566,-1,533,0,"The Plague Quarter (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Plague Quarter of Naxxramas in 10-player mode.","","","","","","","","","","","","","","","",16712190,14922,10,5,0,2997,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (567,-1,533,0,"The Plague Quarter (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Plague Quarter of Naxxramas in 25-player mode.","","","","","","","","","","","","","","","",16712190,14923,10,5,0,2997,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (609,-1,-1,608,"50 Coins of Ancestry","","","","","","","","","","","","","","","",16712190,"Receive 50 Coins of Ancestry.","","","","","","","","","","","","","","","",16712190,160,10,5,0,2717,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (632,-1,-1,0,"Blackfathom Deeps","","","","","","","","","","","","","","","",16712190,"Defeat Aku\\'mai.","","","","","","","","","","","","","","","",16712190,14808,10,5,0,3653,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (651,-1,-1,0,"Mana-Tombs","","","","","","","","","","","","","","","",16712190,"Defeat Nexus-Prince Shaffar.","","","","","","","","","","","","","","","",16712190,14805,10,5,0,3666,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (699,-1,-1,0,"World Wide Winner","","","","","","","","","","","","","","","",16712190,"Win a ranked arena match in Blade\\'s Edge, Nagrand, The Ring of Valor, Dalaran Sewers and the Ruins of Lordaeron at level 80.","","","","","","","","","","","","","","","",16712190,165,10,5,0,535,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (734,-1,-1,733,"Professional Grand Master","","","","","","","","","","","","","","","",16712190,"Become a Grand Master in a profession.","","","","","","","","","","","","","","","",16712190,169,10,5,0,2846,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (750,-1,-1,0,"Explore The Barrens","","","","","","","","","","","","","","","",16712190,"Explore The Barrens, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14778,10,5,0,3547,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (779,-1,-1,0,"Explore Loch Modan","","","","","","","","","","","","","","","",16712190,"Explore Loch Modan, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14777,10,5,0,3558,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (800,-1,-1,0,"Redeemed by paladins","","","","","","","","","","","","","","","",16712190,"Redeemed by paladins","","","","","","","","","","","","","","","",16712190,127,0,5,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (865,-1,-1,0,"Explore Blade\\'s Edge Mountains","","","","","","","","","","","","","","","",16712190,"Explore Blade\\'s Edge Mountains, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14779,10,5,0,3549,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (872,-1,489,0,"Frenzied Defender","","","","","","","","","","","","","","","",16712190,"Return 5 flags in a single Warsong Gulch battle.","","","","","","","","","","","","","","","",16712190,14804,10,5,0,3484,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (896,-1,-1,0,"A Quest a Day Keeps the Ogres at Bay","","","","","","","","","","","","","","","",16712190,"Earn exalted status within Ogri\\'la.","","","","","","","","","","","","","","","",16712190,14865,10,5,0,2448,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (916,-1,-1,0,"Total deaths in 25-player raids","","","","","","","","","","","","","","","",16712190,"Total deaths in 25-player raids","","","","","","","","","","","","","","","",16712190,125,0,5,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (919,-1,-1,0,"Gold earned from auctions","","","","","","","","","","","","","","","",16712190,"Gold earned from auctions","","","","","","","","","","","","","","","",16712190,140,0,5,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (925,-1,-1,0,"Most Outland factions at Exalted","","","","","","","","","","","","","","","",16712190,"Most Outland factions at Exalted","","","","","","","","","","","","","","","",16712190,147,0,5,33,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (952,-1,-1,0,"Mercenary of Sholazar","","","","","","","","","","","","","","","",16712190,"Earn exalted status with the The Oracles and the Frenzyheart Tribe.","","","","","","","","","","","","","","","",16712190,14866,10,5,0,229,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (956,-1,-1,0,"Brood of Nozdormu","","","","","","","","","","","","","","","",16712190,"Earn exalted status with the Brood of Nozdormu.","","","","","","","","","","","","","","","",16712190,14864,10,5,0,1701,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (979,-1,-1,0,"The Mask Task","","","","","","","","","","","","","","","",16712190,"Obtain a Flimsy Mask during Hallow\\'s End.","","","","","","","","","","","","","","","",16712190,158,10,5,0,2954,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (1023,1,-1,0,"Flame Warden of Kalimdor","","","","","","","","","","","","","","","",16712190,"Honor the flames of Kalimdor.","","","","","","","","","","","","","","","",16712190,161,10,5,0,1923,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1045,-1,-1,0,"Total cheers","","","","","","","","","","","","","","","",16712190,"Total cheers","","","","","","","","","","","","","","","",16712190,131,0,5,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1072,-1,546,0,"Black Stalker kills (Underbog)","","","","","","","","","","","","","","","",16712190,"Black Stalker kills (Underbog)","","","","","","","","","","","","","","","",16712190,14822,5,5,1,2603,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1095,-1,230,0,"Emperor Dagran Thaurissan kills (Blackrock Depths)","","","","","","","","","","","","","","","",16712190,"Emperor Dagran Thaurissan kills (Blackrock Depths)","","","","","","","","","","","","","","","",16712190,14821,5,5,1,2302,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1191,1,-1,0,"Terror of Terokkar","","","","","","","","","","","","","","","",16712190,"Complete 63 quests in Terokkar Forest.","","","","","","","","","","","","","","","",16712190,14862,10,5,0,3586,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1232,-1,601,0,"Anub\\'arak kills (Azjol-Nerub)","","","","","","","","","","","","","","","",16712190,"Anub\\'arak kills (Azjol-Nerub)","","","","","","","","","","","","","","","",16712190,14823,5,5,1,1899,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1267,-1,-1,0,"Explore Zul\\'Drak","","","","","","","","","","","","","","","",16712190,"Explore Zul\\'Drak, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14780,10,5,0,3334,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1279,1,-1,0,"Flirt With Disaster","","","","","","","","","","","","","","","",16712190,"Get completely smashed, put on your best perfume, throw a handful of rose petals on Sraaz and then kiss him. You\\'ll regret it in the morning.","","","","","","","","","","","","","","","",16712190,187,10,5,0,1846,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1282,-1,-1,0,"Fa-la-la-la-Ogri\\'la","","","","","","","","","","","","","","","",16712190,"Complete the Bomb Them Again! quest while mounted on a flying reindeer during the Feast of Winter Veil.","","","","","","","","","","","","","","","",16712190,156,10,5,0,3700,"","","","","","","","","","","","","","","","",2113864174,1,0);
INSERT INTO `Achievement` VALUES (1286,-1,-1,0,"Outland Raider","","","","","","","","","","","","","","","",16712190,"Complete the Burning Crusade raid achievements listed below.","","","","","","","","","","","","","","","",16712190,168,20,5,0,3204,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1299,-1,-1,0,"Health potion used most","","","","","","","","","","","","","","","",16712190,"Health potion used most","","","","","","","","","","","","","","","",16712190,145,0,5,17,1,"","","","","","","","","","","","","","","","",4278125036,0,345);
INSERT INTO `Achievement` VALUES (1491,-1,-1,0,"Battleground Killing Blows","","","","","","","","","","","","","","","",16712190,"Battleground Killing Blows","","","","","","","","","","","","","","","",16712190,137,0,5,9,4,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1500,-1,-1,0,"Deaths in Strand of the Ancients","","","","","","","","","","","","","","","",16712190,"Deaths in Strand of the Ancients","","","","","","","","","","","","","","","",16712190,124,0,5,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1535,-1,-1,0,"Highest Enchanting skill","","","","","","","","","","","","","","","",16712190,"Highest Enchanting skill","","","","","","","","","","","","","","","",16712190,173,0,5,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1680,0,-1,0,"Loremaster of Kalimdor","","","","","","","","","","","","","","","",16712190,"Complete 685 quests in Kalimdor.","","","","","","","","","","","","","","","",16712190,14861,10,5,136,3491,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1737,1,571,0,"Destruction Derby","","","","","","","","","","","","","","","",16712190,"Destroy each of the vehicles listed below.","","","","","","","","","","","","","","","",16712190,14901,10,5,0,3505,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1757,1,607,0,"Defense of the Ancients","","","","","","","","","","","","","","","",16712190,"Defend the beach without losing any walls.","","","","","","","","","","","","","","","",16712190,14881,10,5,0,276,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1786,-1,-1,0,"School of Hard Knocks","","","","","","","","","","","","","","","",16712190,"Take your orphan into the battlegrounds and complete the feats listed below.","","","","","","","","","","","","","","","",16712190,163,10,5,0,1511,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (2773,-1,-1,0,"It\\'s Just a Flesh Wound","","","","","","","","","","","","","","","",16712190,"Unmask and defeat the Black Knight at the Argent Tournament.","","","","","","","","","","","","","","","",16712190,14941,10,5,0,2737,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2796,-1,-1,0,"Brew of the Month","","","","","","","","","","","","","","","",16712190,"Join the Brew of the Month club.","","","","","","","","","","","","","","","",16712190,162,10,5,0,3082,"","","","","","","","","","","","","","","","",2080309740,1,0);
INSERT INTO `Achievement` VALUES (2798,0,-1,0,"Noble Gardener","","","","","","","","","","","","","","","",16712190,"Complete the Noblegarden achievements listed below.","","","","","","","","","","","","","","","",16712190,155,10,5,0,3202,"Title Reward: the Noble","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (2860,-1,603,0,"Assembly of Iron kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,"Assembly of Iron kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,14963,10,5,1,1700,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2894,-1,-1,0,"The Secrets of Ulduar (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat every boss in Ulduar in 10-player mode.","","","","","","","","","","","","","","","",16712190,14961,25,5,0,3849,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2895,-1,-1,0,"The Secrets of Ulduar (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat every boss in Ulduar in 25-player mode.","","","","","","","","","","","","","","","",16712190,14962,25,5,0,3849,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (3018,-1,-1,0,"Emblems of Conquest acquired","","","","","","","","","","","","","","","",16712190,"Emblems of Conquest acquired","","","","","","","","","","","","","","","",16712190,130,0,5,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (3557,0,-1,0,"Pilgrim\\'s Paunch","","","","","","","","","","","","","","","",16712190,"Acquire the Spirit of Sharing from a complete Bountiful Table feast at every Horde capital.","","","","","","","","","","","","","","","",16712190,14981,10,5,0,3709,"","","","","","","","","","","","","","","","",16775150,0,0);
INSERT INTO `Achievement` VALUES (3851,1,628,3846,"Mine","","","","","","","","","","","","","","","",16712190,"Win Isle of Conquest while controlling the Quarry, Oil Refinery, Shipyard, Siege Workshop and Hangar.","","","","","","","","","","","","","","","",16712190,15003,10,5,0,4016,"","","","","","","","","","","","","","","","",16718847,0,0);
INSERT INTO `Achievement` VALUES (3996,-1,-1,0,"Three Sixty Pain Spike (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Lord Jaraxxus while at least two Mistresses of Pain are alive in 10-player mode.","","","","","","","","","","","","","","","",16712190,15001,10,5,0,1942,"","","","","","","","","","","","","","","","",16712172,1,0);
INSERT INTO `Achievement` VALUES (3997,-1,-1,0,"Three Sixty Pain Spike (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat Lord Jaraxxus while at least two Mistresses of Pain are alive in 25-player mode.","","","","","","","","","","","","","","","",16712190,15002,10,5,0,1942,"","","","","","","","","","","","","","","","",16712172,1,0);
INSERT INTO `Achievement` VALUES (4050,-1,-1,0,"Victories over Rogue Champion (Trial of the Champion)","","","","","","","","","","","","","","","",16712190,"Victories over Rogue Champion (Trial of the Champion)","","","","","","","","","","","","","","","",16712190,15021,0,5,1,1,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4529,-1,631,0,"The Crimson Hall (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Crimson Hall in Icecrown Citadel in 10-player mode.","","","","","","","","","","","","","","","",16712190,15041,10,5,0,4178,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4606,-1,631,0,"The Crimson Hall (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Crimson Hall in Icecrown Citadel in 25-player mode.","","","","","","","","","","","","","","","",16712190,15042,10,5,0,4178,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4717,-1,-1,0,"Forgemaster Garfrost kills (Pit of Saron)","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16712188,15062,0,5,1,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (11,-1,-1,10,"Level 60","","","","","","","","","","","","","","","",16712190,"Reach level 60.","","","","","","","","","","","","","","","",16712190,92,10,6,4,3273,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (49,-1,30,0,"Alterac Valley victories","","","","","","","","","","","","","","","",16712190,"Alterac Valley victories","","","","","","","","","","","","","","","",16712190,153,0,6,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (58,1,30,0,"Deaths from Drek\\'Thar","","","","","","","","","","","","","","","",16712190,"Deaths from Drek\\'Thar","","","","","","","","","","","","","","","",16712190,124,0,6,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (137,-1,-1,0,"Stocking Up","","","","","","","","","","","","","","","",16712190,"Create 500 Heavy Frostweave Bandages.","","","","","","","","","","","","","","","",16712190,172,10,6,0,2497,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (153,-1,-1,0,"The Old Gnome and the Sea","","","","","","","","","","","","","","","",16712190,"Successfully fish from a school.","","","","","","","","","","","","","","","",16712190,171,10,6,0,3694,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (178,-1,-1,0,"Enchanting formulae learned","","","","","","","","","","","","","","","",16712190,"Enchanting formulae learned","","","","","","","","","","","","","","","",16712190,173,0,6,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (206,1,489,0,"Supreme Defender","","","","","","","","","","","","","","","",16712190,"Kill 100 flag carriers in Warsong Gulch.","","","","","","","","","","","","","","","",16712190,14804,10,6,0,3400,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (213,-1,566,0,"Stormtrooper","","","","","","","","","","","","","","","",16712190,"Kill 5 flag carriers in a single Eye of the Storm battle.","","","","","","","","","","","","","","","",16712190,14803,10,6,0,3401,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (277,-1,-1,0,"\\'Tis the Season","","","","","","","","","","","","","","","",16712190,"During the Feast of Winter Veil, wear 3 pieces of winter clothing and eat Graccu\\'s Mince Meat Fruitcake.","","","","","","","","","","","","","","","",16712190,156,10,6,0,1789,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (284,-1,-1,0,"A Mask for All Occasions","","","","","","","","","","","","","","","",16712190,"Collect the 20 unique Flimsy Masks listed below.","","","","","","","","","","","","","","","",16712190,158,20,6,0,2953,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (322,-1,-1,0,"Total deaths to Lich King dungeon bosses","","","","","","","","","","","","","","","",16712190,"Total deaths to Lich King dungeon bosses","","","","","","","","","","","","","","","",16712190,125,0,6,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (329,-1,-1,0,"Auctions posted","","","","","","","","","","","","","","","",16712190,"Auctions posted","","","","","","","","","","","","","","","",16712190,140,0,6,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (338,-1,-1,0,"Vanity pets owned","","","","","","","","","","","","","","","",16712190,"Vanity pets owned","","","","","","","","","","","","","","","",16712190,191,0,6,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (364,-1,-1,0,"3v3 victories","","","","","","","","","","","","","","","",16712190,"3v3 victories","","","","","","","","","","","","","","","",16712190,152,0,6,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (399,-1,-1,0,"Just the Two of Us: 1550","","","","","","","","","","","","","","","",16712190,"Earn a 1550 personal rating in the 2v2 bracket of the arena at level 80.","","","","","","","","","","","","","","","",16712190,165,10,6,0,3039,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (463,-1,-1,0,"Realm First! Level 80 Warlock","","","","","","","","","","","","","","","",16712190,"First warlock on the realm to achieve level 80.","","","","","","","","","","","","","","","",16712190,81,0,6,256,155,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (483,-1,608,0,"The Violet Hold","","","","","","","","","","","","","","","",16712190,"Defeat Cyanigosa in The Violet Hold.","","","","","","","","","","","","","","","",16712190,14806,10,6,0,3235,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (494,-1,608,0,"Heroic: The Violet Hold","","","","","","","","","","","","","","","",16712190,"Defeat Cyanigosa in The Violet Hold on Heroic Difficulty.","","","","","","","","","","","","","","","",16712190,14921,10,6,0,3236,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (508,-1,-1,507,"1500 Quests Completed","","","","","","","","","","","","","","","",16712190,"Complete 1500 quests.","","","","","","","","","","","","","","","",16712190,96,10,6,0,3416,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (509,-1,-1,512,"10000 Honorable Kills","","","","","","","","","","","","","","","",16712190,"Get 10000 honorable kills.","","","","","","","","","","","","","","","",16712190,95,10,6,0,3462,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (519,-1,-1,520,"25 Exalted Reputations","","","","","","","","","","","","","","","",16712190,"Raise 25 reputations to Exalted.","","","","","","","","","","","","","","","",16712190,201,10,6,0,3605,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (568,-1,533,0,"The Military Quarter (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Military Quarter of Naxxramas in 10 player mode.","","","","","","","","","","","","","","","",16712190,14922,10,6,0,2639,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (569,-1,533,0,"The Military Quarter (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Military Quarter of Naxxramas in 25-player mode.","","","","","","","","","","","","","","","",16712190,14923,10,6,0,2639,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (626,-1,-1,0,"Lunar Festival Finery","","","","","","","","","","","","","","","",16712190,"Purchase a festive pant suit or festive dress with Coins of Ancestry.","","","","","","","","","","","","","","","",16712190,160,10,6,0,2789,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (633,-1,-1,0,"Stormwind Stockade","","","","","","","","","","","","","","","",16712190,"Defeat Bazil Thredd.","","","","","","","","","","","","","","","",16712190,14808,10,6,0,3652,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (666,-1,-1,0,"Auchenai Crypts","","","","","","","","","","","","","","","",16712190,"Defeat Exarch Maladaar.","","","","","","","","","","","","","","","",16712190,14805,10,6,0,3590,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (735,-1,-1,0,"Working Day and Night","","","","","","","","","","","","","","","",16712190,"Become a Grand Master in two professions.","","","","","","","","","","","","","","","",16712190,169,10,6,0,162,"","","","","","","","","","","","","","","","",16712174,2,0);
INSERT INTO `Achievement` VALUES (801,-1,-1,0,"Resurrected by soulstones","","","","","","","","","","","","","","","",16712190,"Resurrected by soulstones","","","","","","","","","","","","","","","",16712190,127,0,6,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (802,-1,-1,0,"Explore Westfall","","","","","","","","","","","","","","","",16712190,"Explore Westfall, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14777,10,6,0,3572,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (829,-1,-1,0,"Largest heal received","","","","","","","","","","","","","","","",16712190,"Largest heal received","","","","","","","","","","","","","","","",16712190,141,0,6,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (843,-1,-1,0,"Explore Netherstorm","","","","","","","","","","","","","","","",16712190,"Explore Netherstorm, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14779,10,6,0,3564,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (844,-1,-1,0,"Explore Darkshore","","","","","","","","","","","","","","","",16712190,"Explore Darkshore, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14778,10,6,0,3553,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (877,-1,-1,0,"The Cake Is Not A Lie","","","","","","","","","","","","","","","",16712190,"Bake a Delicious Chocolate Cake.","","","","","","","","","","","","","","","",16712190,170,10,6,0,2917,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (897,-1,-1,0,"You\\'re So Offensive","","","","","","","","","","","","","","","",16712190,"Earn exalted status with the Shattered Sun Offensive.","","","","","","","","","","","","","","","",16712190,14865,10,6,0,2807,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1007,-1,-1,0,"The Wyrmrest Accord","","","","","","","","","","","","","","","",16712190,"Earn exalted status with The Wyrmrest Accord.","","","","","","","","","","","","","","","",16712190,14866,10,6,0,3684,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1024,1,530,0,"Flame Warden of Outland","","","","","","","","","","","","","","","",16712190,"Honor the flames of Outland.","","","","","","","","","","","","","","","",16712190,161,10,6,0,1923,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1065,-1,-1,0,"Total waves","","","","","","","","","","","","","","","",16712190,"Total waves","","","","","","","","","","","","","","","",16712190,131,0,6,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1073,-1,558,0,"Exarch Maladaar kills (Auchenai Crypts)","","","","","","","","","","","","","","","",16712190,"Exarch Maladaar kills (Auchenai Crypts)","","","","","","","","","","","","","","","",16712190,14822,5,6,1,2796,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1097,-1,329,0,"Baron Rivendare kills (Stratholme)","","","","","","","","","","","","","","","",16712190,"Baron Rivendare kills (Stratholme)","","","","","","","","","","","","","","","",16712190,14821,5,6,1,2718,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1151,1,30,0,"Loyal Defender","","","","","","","","","","","","","","","",16712190,"In Alterac Valley, kill 50 enemy players in the Hall of the Stormpike.","","","","","","","","","","","","","","","",16712190,14801,10,6,0,3582,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1153,-1,-1,0,"Overly Defensive","","","","","","","","","","","","","","","",16712190,"Defend 3 bases in a single Arathi Basin battle.","","","","","","","","","","","","","","","",16712190,14802,10,6,0,3397,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1183,-1,-1,0,"Brew of the Year","","","","","","","","","","","","","","","",16712190,"Sample 12 beers featured in the Brew of the Month club.","","","","","","","","","","","","","","","",16712190,162,10,6,0,2535,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1268,-1,-1,0,"Explore Sholazar Basin","","","","","","","","","","","","","","","",16712190,"Explore Sholazar Basin, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14780,10,6,0,3335,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1272,0,-1,0,"Terror of Terokkar","","","","","","","","","","","","","","","",16712190,"Complete 68 quests in Terokkar Forest.","","","","","","","","","","","","","","","",16712190,14862,10,6,0,3586,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1280,0,-1,0,"Flirt With Disaster","","","","","","","","","","","","","","","",16712190,"Get completely smashed, put on your best perfume, throw a handful of rose petals on Jeremiah Payson and then kiss him. You\\'ll regret it in the morning.","","","","","","","","","","","","","","","",16712190,187,10,6,0,1846,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1288,-1,-1,0,"Northrend Dungeonmaster","","","","","","","","","","","","","","","",16712190,"Complete the Northrend dungeon achievements listed below.","","","","","","","","","","","","","","","",16712190,168,10,6,0,1947,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1300,-1,-1,0,"Different health potions used","","","","","","","","","","","","","","","",16712190,"Different health potions used","","","","","","","","","","","","","","","",16712190,145,0,6,33,1,"","","","","","","","","","","","","","","","",4278125036,0,345);
INSERT INTO `Achievement` VALUES (1359,0,-1,0,"Might of Dragonblight","","","","","","","","","","","","","","","",16712190,"Complete 130 quests in Dragonblight.","","","","","","","","","","","","","","","",16712190,14863,10,6,0,3338,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1466,1,-1,0,"Most Alliance factions at Exalted","","","","","","","","","","","","","","","",16712190,"Most Alliance factions at Exalted","","","","","","","","","","","","","","","",16712190,147,0,6,33,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1506,-1,601,0,"Anub\\'arak kills (Heroic Azjol-Nerub)","","","","","","","","","","","","","","","",16712190,"Anub\\'arak kills (Heroic Azjol-Nerub)","","","","","","","","","","","","","","","",16712190,14823,5,6,1,1899,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1716,-1,-1,0,"Battleground with the most Killing Blows","","","","","","","","","","","","","","","",16712190,"Battleground with the most Killing Blows","","","","","","","","","","","","","","","",16712190,137,0,6,17,1,"","","","","","","","","","","","","","","","",2113864172,0,1491);
INSERT INTO `Achievement` VALUES (1719,-1,-1,0,"Battleground with the most Honorable Kills","","","","","","","","","","","","","","","",16712190,"Battleground with the most Honorable Kills","","","","","","","","","","","","","","","",16712190,136,0,6,17,1,"","","","","","","","","","","","","","","","",2130641388,0,382);
INSERT INTO `Achievement` VALUES (1748,-1,-1,0,"First Aid Manuals learned","","","","","","","","","","","","","","","",16712190,"First Aid Manuals learned","","","","","","","","","","","","","","","",16712190,178,0,6,1,4,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1790,-1,-1,0,"Hail To The King, Baby","","","","","","","","","","","","","","","",16712190,"Defeat King Ymiron in Utgarde Pinnacle with your orphan out.","","","","","","","","","","","","","","","",16712190,163,10,6,0,3320,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1793,-1,-1,0,"For The Children","","","","","","","","","","","","","","","",16712190,"Complete the Children\\'s Week achievements listed below.","","","","","","","","","","","","","","","",16712190,155,10,6,0,2523,"Title Reward: Matron/Patron","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (2200,0,607,0,"Defense of the Ancients","","","","","","","","","","","","","","","",16712190,"Defend the beach without losing any walls.","","","","","","","","","","","","","","","",16712190,14881,10,6,0,276,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2416,-1,-1,0,"Hard Boiled","","","","","","","","","","","","","","","",16712190,"Lay an egg in Un\\'Goro Crater\\'s Golakka Hot Springs as a rabbit during the Noblegarden celebration.","","","","","","","","","","","","","","","",16712190,159,10,6,0,3711,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2476,0,571,0,"Destruction Derby","","","","","","","","","","","","","","","",16712190,"Destroy each of the vehicles listed below.","","","","","","","","","","","","","","","",16712190,14901,10,6,0,3505,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2861,-1,603,0,"Kologarn kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,"Kologarn kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,14963,10,6,1,1700,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (3097,-1,603,0,"Dwarfageddon (10 player)","","","","","","","","","","","","","","","",16712190,"Destroy 100 Steelforged Defenders in 10 seconds on the Ulduar gauntlet in 10-player mode.","","","","","","","","","","","","","","","",16712190,14961,10,6,0,3779,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (3098,-1,603,0,"Dwarfageddon (25 player)","","","","","","","","","","","","","","","",16712190,"Destroy 100 Steelforged Defenders in 10 seconds on the Ulduar gauntlet in 25-player mode.","","","","","","","","","","","","","","","",16712190,14962,10,6,0,3779,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (3580,1,-1,0,"Pilgrim\\'s Peril","","","","","","","","","","","","","","","",16712190,"While wearing either a Pilgrim\\'s Dress, Robe, or Attire, take a seat at each enemy capital\\'s Bountiful Table.","","","","","","","","","","","","","","","",16712190,14981,10,6,0,1703,"","","","","","","","","","","","","","","","",16775150,0,0);
INSERT INTO `Achievement` VALUES (3736,-1,-1,0,"Pony Up!","","","","","","","","","","","","","","","",16712190,"Purchase and use an Argent Pony from Dame Evniki Kapsalis, the Crusader\\'s Quartermaster.","","","","","","","","","","","","","","","",16712190,14941,10,6,0,1176,"","","","","","","","","","","","","","","","",16718845,0,0);
INSERT INTO `Achievement` VALUES (3798,-1,-1,0,"Resilience Will Fix It (10 player)","","","","","","","","","","","","","","","",16712190,"Kill all the enemy heroes within 60 seconds of the first one dying in 10-player mode.","","","","","","","","","","","","","","","",16712190,15001,10,6,0,4007,"","","","","","","","","","","","","","","","",16718847,1,0);
INSERT INTO `Achievement` VALUES (3814,-1,-1,0,"Resilience Will Fix It (25 player)","","","","","","","","","","","","","","","",16712190,"Kill all the enemy heroes within 60 seconds of the first one dying in 25-player mode..","","","","","","","","","","","","","","","",16712190,15002,10,6,0,4007,"","","","","","","","","","","","","","","","",16718845,1,0);
INSERT INTO `Achievement` VALUES (4051,-1,-1,0,"Victories over Rogue Champion (Heroic Trial of the Champion)","","","","","","","","","","","","","","","",16712190,"Victories over Rogue Champion (Heroic Trial of the Champion)","","","","","","","","","","","","","","","",16712190,15021,0,6,1,1,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4176,0,628,0,"Resource Glut","","","","","","","","","","","","","","","",16712190,"Win Isle of Conquest while your team controls the Quarry and Oil Refinery.","","","","","","","","","","","","","","","",16712190,15003,10,6,0,3736,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4630,-1,631,4529,"Heroic: The Crimson Hall (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Crimson Hall in Icecrown Citadel in 10-player Heroic mode.","","","","","","","","","","","","","","","",16712190,15041,10,6,0,4178,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4634,-1,631,4606,"Heroic: The Crimson Hall (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Crimson Hall in Icecrown Citadel in 25-player Heroic mode.","","","","","","","","","","","","","","","",16712190,15042,10,6,0,4178,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4728,-1,-1,0,"Forgemaster Garfrost kills (Heroic Pit of Saron)","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16712188,15062,0,6,1,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4729,-1,-1,0,"Emblems of Triumph acquired","","","","","","","","","","","","","","","",16712190,"Emblems of Triumph acquired","","","","","","","","","","","","","","","",16712190,130,0,6,1,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (12,-1,-1,11,"Level 70","","","","","","","","","","","","","","","",16712190,"Reach level 70.","","","","","","","","","","","","","","","",16712190,92,10,7,4,3274,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (32,-1,-1,508,"2000 Quests Completed","","","","","","","","","","","","","","","",16712190,"Complete 2000 quests.","","","","","","","","","","","","","","","",16712190,96,10,7,0,3415,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (37,1,-1,0,"Fo\\' Grizzle My Shizzle","","","","","","","","","","","","","","","",16712190,"Complete 85 quests in Grizzly Hills.","","","","","","","","","","","","","","","",16712190,14863,10,7,0,3339,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (55,-1,529,0,"Arathi Basin battles","","","","","","","","","","","","","","","",16712190,"Arathi Basin battles","","","","","","","","","","","","","","","",16712190,153,0,7,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (141,-1,-1,0,"Ultimate Triage","","","","","","","","","","","","","","","",16712190,"Use a Heavy Frostweave Bandage to heal another player or yourself with less than 5% health.","","","","","","","","","","","","","","","",16712190,172,10,7,0,2741,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (157,-1,529,0,"To The Rescue!","","","","","","","","","","","","","","","",16712190,"Come to the defense of a base in Arathi Basin 50 times by recapping the flag.","","","","","","","","","","","","","","","",16712190,14802,10,7,0,2205,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (183,-1,-1,0,"Materials produced from disenchanting","","","","","","","","","","","","","","","",16712190,"Materials produced from disenchanting","","","","","","","","","","","","","","","",16712190,173,0,7,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (198,-1,-1,0,"Total healing done","","","","","","","","","","","","","","","",16712190,"Total healing done","","","","","","","","","","","","","","","",16712190,141,0,7,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (212,-1,566,0,"Storm Capper","","","","","","","","","","","","","","","",16712190,"Personally carry and capture the flag in Eye of the Storm.","","","","","","","","","","","","","","","",16712190,14803,10,7,0,3391,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (225,1,30,0,"Everything Counts","","","","","","","","","","","","","","","",16712190,"Win Alterac Valley while your team controls both mines.","","","","","","","","","","","","","","","",16712190,14801,10,7,0,3433,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (239,-1,-1,509,"25000 Honorable Kills","","","","","","","","","","","","","","","",16712190,"Get 25000 honorable kills.","","","","","","","","","","","","","","","",16712190,95,10,7,0,3460,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (275,-1,-1,0,"Veteran Nanny","","","","","","","","","","","","","","","",16712190,"Acquire Egbert\\'s Egg, Sleepy Willy, and Elekk Training Collar on one character.","","","","","","","","","","","","","","","",16712190,163,50,7,0,2525,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (330,-1,-1,0,"Auction purchases","","","","","","","","","","","","","","","",16712190,"Auction purchases","","","","","","","","","","","","","","","",16712190,140,0,7,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (367,-1,-1,0,"2v2 matches","","","","","","","","","","","","","","","",16712190,"2v2 matches","","","","","","","","","","","","","","","",16712190,152,0,7,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (400,-1,-1,399,"Just the Two of Us: 1750","","","","","","","","","","","","","","","",16712190,"Earn a 1750 personal rating in the 2v2 bracket of the arena at level 80.","","","","","","","","","","","","","","","",16712190,165,10,7,0,3038,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (462,-1,-1,0,"Realm First! Level 80 Hunter","","","","","","","","","","","","","","","",16712190,"First hunter on the realm to achieve level 80.","","","","","","","","","","","","","","","",16712190,81,0,7,256,2831,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (484,-1,604,0,"Gundrak","","","","","","","","","","","","","","","",16712190,"Defeat the bosses in Gundrak.","","","","","","","","","","","","","","","",16712190,14806,10,7,0,3237,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (495,-1,604,0,"Heroic: Gundrak","","","","","","","","","","","","","","","",16712190,"Defeat the Gundrak bosses on Heroic Difficulty.","","","","","","","","","","","","","","","",16712190,14921,10,7,0,3238,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (518,-1,-1,519,"30 Exalted Reputations","","","","","","","","","","","","","","","",16712190,"Raise 30 reputations to Exalted.","","","","","","","","","","","","","","","",16712190,201,10,7,0,3604,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (572,-1,533,0,"Sapphiron\\'s Demise (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Sapphiron in Naxxramas in 10-player mode.","","","","","","","","","","","","","","","",16712190,14922,10,7,0,1700,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (573,-1,533,0,"Sapphiron\\'s Demise (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat Sapphiron in Naxxramas in 25-player mode.","","","","","","","","","","","","","","","",16712190,14923,10,7,0,1700,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (593,0,-1,0,"Deaths from Vanndar Stormpike","","","","","","","","","","","","","","","",16712190,"Deaths from Vanndar Stormpike","","","","","","","","","","","","","","","",16712190,124,0,7,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (635,-1,-1,0,"Razorfen Kraul","","","","","","","","","","","","","","","",16712190,"Defeat Charlga Razorflank.","","","","","","","","","","","","","","","",16712190,14808,10,7,0,3686,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (652,-1,-1,0,"The Escape From Durnholde","","","","","","","","","","","","","","","",16712190,"Defeat Epoch Hunter.","","","","","","","","","","","","","","","",16712190,14805,10,7,0,3824,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (730,-1,-1,0,"Skills to Pay the Bills","","","","","","","","","","","","","","","",16712190,"Become a Grand Master in fishing, first aid and cooking.","","","","","","","","","","","","","","","",16712190,169,10,7,0,1657,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (841,-1,-1,0,"Explore Wetlands","","","","","","","","","","","","","","","",16712190,"Explore Wetlands, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14777,10,7,0,3573,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (861,-1,-1,0,"Explore Bloodmyst Isle","","","","","","","","","","","","","","","",16712190,"Explore Bloodmyst Isle, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14778,10,7,0,3551,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (864,-1,-1,0,"Explore Shadowmoon Valley","","","","","","","","","","","","","","","",16712190,"Explore Shadowmoon Valley, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14779,10,7,0,3584,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (898,-1,-1,0,"On Wings of Nether","","","","","","","","","","","","","","","",16712190,"Earn exalted status with Netherwing.","","","","","","","","","","","","","","","",16712190,14865,10,7,0,1928,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (906,-1,-1,0,"Kickin\\' It Up a Notch","","","","","","","","","","","","","","","",16712190,"Complete each of The Rokk\\'s 4 cooking daily quests listed below.","","","","","","","","","","","","","","","",16712190,170,10,7,0,2923,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (922,-1,-1,0,"Mana potions consumed","","","","","","","","","","","","","","","",16712190,"Mana potions consumed","","","","","","","","","","","","","","","",16712190,145,0,7,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (926,0,-1,0,"Most Horde factions at Exalted","","","","","","","","","","","","","","","",16712190,"Most Horde factions at Exalted","","","","","","","","","","","","","","","",16712190,147,0,7,33,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (928,-1,-1,0,"Extra bank slots purchased","","","","","","","","","","","","","","","",16712190,"Extra bank slots purchased","","","","","","","","","","","","","","","",16712190,191,0,7,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (933,-1,-1,0,"Total 10-player raids entered","","","","","","","","","","","","","","","",16712190,"Total 10-player raids entered","","","","","","","","","","","","","","","",16712190,14807,0,7,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (981,-1,-1,0,"That Sparkling Smile","","","","","","","","","","","","","","","",16712190,"Show off your sparkling smile by using a Tooth Pick.","","","","","","","","","","","","","","","",16712190,158,10,7,0,3510,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1008,-1,-1,0,"The Kirin Tor","","","","","","","","","","","","","","","",16712190,"Earn exalted status with The Kirin Tor.","","","","","","","","","","","","","","","",16712190,14866,10,7,0,3682,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1034,1,-1,0,"The Fires of Azeroth","","","","","","","","","","","","","","","",16712190,"Complete the Flame Warden of Eastern Kingdoms, Kalimdor and Outland achievements.","","","","","","","","","","","","","","","",16712190,161,10,7,0,12,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1038,1,-1,0,"The Flame Warden","","","","","","","","","","","","","","","",16712190,"Complete the Midsummer achievements listed below.","","","","","","","","","","","","","","","",16712190,155,20,7,0,2974,"Title Reward: Flame Warden","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (1074,-1,556,0,"Talon King Ikiss kills (Sethekk Halls)","","","","","","","","","","","","","","","",16712190,"Talon King Ikiss kills (Sethekk Halls)","","","","","","","","","","","","","","","",16712190,14822,5,7,1,2378,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1096,-1,229,0,"General Drakkisath kills (Blackrock Spire)","","","","","","","","","","","","","","","",16712190,"General Drakkisath kills (Blackrock Spire)","","","","","","","","","","","","","","","",16712190,14821,5,7,1,1551,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1111,-1,-1,0,"2v2 Arena Honorable Kills","","","","","","","","","","","","","","","",16712190,"2v2 Arena Honorable Kills","","","","","","","","","","","","","","","",16712190,136,0,7,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1192,1,-1,0,"Nagrand Slam","","","","","","","","","","","","","","","",16712190,"Complete 75 quests in Nagrand.","","","","","","","","","","","","","","","",16712190,14862,10,7,0,3563,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1233,-1,619,0,"Herald Volazj kills (Ahn\\'kahet: The Old Kingdom)","","","","","","","","","","","","","","","",16712190,"Herald Volazj kills (Ahn\\'kahet: The Old Kingdom)","","","","","","","","","","","","","","","",16712190,14823,5,7,1,1256,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1252,0,489,0,"Supreme Defender","","","","","","","","","","","","","","","",16712190,"Kill 100 flag carriers in Warsong Gulch.","","","","","","","","","","","","","","","",16712190,14804,10,7,0,3400,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1253,-1,-1,0,"Raised as a ghoul","","","","","","","","","","","","","","","",16712190,"Raised as a ghoul","","","","","","","","","","","","","","","",16712190,127,0,7,1,221,"","","","","","","","","","","","","","","","",2130641390,0,0);
INSERT INTO `Achievement` VALUES (1257,-1,-1,0,"The Scavenger","","","","","","","","","","","","","","","",16712190,"Successfully fish in each of the junk nodes listed below.","","","","","","","","","","","","","","","",16712190,171,10,7,0,3068,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1260,-1,-1,0,"Drunken Stupor","","","","","","","","","","","","","","","",16712190,"Fall 65 yards without dying while completely smashed during the Brewfest Holiday.","","","","","","","","","","","","","","","",16712190,162,10,7,0,2402,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1281,-1,-1,0,"The Rocket\\'s Red Glare","","","","","","","","","","","","","","","",16712190,"Shoot off 10 Red Rocket Clusters in 25 seconds or less.","","","","","","","","","","","","","","","",16712190,160,10,7,0,2368,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1289,-1,-1,0,"Northrend Dungeon Hero","","","","","","","","","","","","","","","",16712190,"Complete the heroic Northrend dungeon achievements listed below.","","","","","","","","","","","","","","","",16712190,168,20,7,0,857,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1295,-1,-1,0,"Crashin\\' & Thrashin\\'","","","","","","","","","","","","","","","",16712190,"Gain 25 crashes with your Crashin\\' Thrashin\\' Racer during the Feast of Winter Veil.","","","","","","","","","","","","","","","",16712190,156,10,7,0,2367,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1457,-1,-1,0,"Explore Crystalsong Forest","","","","","","","","","","","","","","","",16712190,"Explore Crystalsong Forest, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14780,10,7,0,3471,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1492,-1,-1,0,"2v2 Arena Killing Blows","","","","","","","","","","","","","","","",16712190,"2v2 Arena Killing Blows","","","","","","","","","","","","","","","",16712190,137,0,7,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1519,-1,-1,0,"Fishing skill","","","","","","","","","","","","","","","",16712190,"Fishing skill","","","","","","","","","","","","","","","",16712190,178,0,7,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1704,-1,-1,0,"I Pitied The Fool","","","","","","","","","","","","","","","",16712190,"Pity the Love Fool in the locations specified below.","","","","","","","","","","","","","","","",16712190,187,10,7,0,2339,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1723,-1,571,0,"Vehicular Gnomeslaughter","","","","","","","","","","","","","","","",16712190,"Kill 100 players in Wintergrasp using a vehicle or a cannon.","","","","","","","","","","","","","","","",16712190,14901,10,7,136,2547,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1761,-1,607,0,"The Dapper Sapper","","","","","","","","","","","","","","","",16712190,"Plant 100 Seaforium charges which successfully damage a wall. ","","","","","","","","","","","","","","","",16712190,14881,10,7,0,2565,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (2216,-1,-1,0,"Most deadly Lich King dungeon boss","","","","","","","","","","","","","","","",16712190,"Most deadly Lich King dungeon boss","","","","","","","","","","","","","","","",16712190,125,0,7,17,1,"","","","","","","","","","","","","","","","",2080309740,0,322);
INSERT INTO `Achievement` VALUES (2419,1,-1,0,"Spring Fling","","","","","","","","","","","","","","","",16712190,"Find your pet Spring Rabbit another one to love in each of the towns listed below.","","","","","","","","","","","","","","","",16712190,159,10,7,0,3202,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2777,1,-1,0,"Champion of Darnassus","","","","","","","","","","","","","","","",16712190,"Earn the right to represent Darnassus in the Argent Tournament.","","","","","","","","","","","","","","","",16712190,14941,10,7,0,3801,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2868,-1,603,0,"Auriaya kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,"Auriaya kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,14963,10,7,1,1700,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2905,-1,603,0,"Unbroken (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Flame Leviathan on the first try without anyone repairing their vehicle in 10-player mode.","","","","","","","","","","","","","","","",16712190,14961,10,7,0,325,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2906,-1,603,0,"Unbroken (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat Flame Leviathan on the first try without anyone repairing their vehicle in 25-player mode.","","","","","","","","","","","","","","","",16712190,14962,10,7,0,325,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (3581,0,-1,0,"Pilgrim\\'s Peril","","","","","","","","","","","","","","","",16712190,"While wearing either a Pilgrim\\'s Dress, Robe, or Attire, take a seat at each enemy capital\\'s Bountiful Table.","","","","","","","","","","","","","","","",16712190,14981,10,7,0,1704,"","","","","","","","","","","","","","","","",16775150,0,0);
INSERT INTO `Achievement` VALUES (3799,-1,-1,0,"Salt and Pepper (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the Twin Val\\'kyr in 3 minutes or less in 10-player mode.","","","","","","","","","","","","","","","",16712190,15001,10,7,0,4005,"","","","","","","","","","","","","","","","",16718847,1,0);
INSERT INTO `Achievement` VALUES (3815,-1,-1,0,"Salt and Pepper (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the Twin Val\\'kyr in 3 minutes or less in 25-player mode.","","","","","","","","","","","","","","","",16712190,15002,10,7,0,4005,"","","","","","","","","","","","","","","","",16718845,1,0);
INSERT INTO `Achievement` VALUES (4052,-1,-1,0,"Victories over Shaman Champion (Trial of the Champion)","","","","","","","","","","","","","","","",16712190,"Victories over Shaman Champion (Trial of the Champion)","","","","","","","","","","","","","","","",16712190,15021,0,7,1,1,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4177,0,628,4176,"Mine","","","","","","","","","","","","","","","",16712190,"Win Isle of Conquest while controlling the Quarry, Oil Refinery, Shipyard, Siege Workshop and Hangar.","","","","","","","","","","","","","","","",16712190,15003,10,7,0,4016,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4527,-1,631,0,"The Frostwing Halls (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Frostwing Halls in Icecrown Citadel in 10-player mode.","","","","","","","","","","","","","","","",16712190,15041,10,7,0,4158,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4607,-1,631,0,"The Frostwing Halls (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Frostwing Halls in Icecrown Citadel in 25-player mode.","","","","","","","","","","","","","","","",16712190,15042,10,7,0,4158,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4718,-1,-1,0,"Ick and Krick kills (Pit of Saron)","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16712188,15062,0,7,1,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4730,-1,-1,0,"Emblems of Frost acquired","","","","","","","","","","","","","","","",16712190,"Emblems of Frost acquired","","","","","","","","","","","","","","","",16712190,130,0,7,1,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (13,-1,-1,12,"Level 80","","","","","","","","","","","","","","","",16712190,"Reach level 80.","","","","","","","","","","","","","","","",16712190,92,10,8,4,3275,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (51,-1,529,0,"Arathi Basin victories","","","","","","","","","","","","","","","",16712190,"Arathi Basin victories","","","","","","","","","","","","","","","",16712190,153,0,8,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (150,-1,-1,0,"The Fishing Diplomat","","","","","","","","","","","","","","","",16712190,"Fish something up in Orgrimmar and Stormwind.","","","","","","","","","","","","","","","",16712190,171,10,8,0,2737,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (161,-1,529,0,"Resilient Victory","","","","","","","","","","","","","","","",16712190,"Overcome a 500 resource disadvantage in a match of Arathi Basin and claim victory.","","","","","","","","","","","","","","","",16712190,14802,10,8,0,3468,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (168,-1,489,0,"Warsong Gulch Perfection","","","","","","","","","","","","","","","",16712190,"Win Warsong Gulch with a score of 3 to 0.","","","","","","","","","","","","","","","",16712190,14804,10,8,0,3485,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (181,-1,-1,0,"Items disenchanted","","","","","","","","","","","","","","","",16712190,"Items disenchanted","","","","","","","","","","","","","","","",16712190,173,0,8,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (216,-1,566,0,"Bound for Glory","","","","","","","","","","","","","","","",16712190,"In a single Eye of the Storm match, capture the flag 3 times without dying.","","","","","","","","","","","","","","","",16712190,14803,10,8,0,2267,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (279,-1,-1,0,"Simply Abominable","","","","","","","","","","","","","","","",16712190,"Complete the quest to retrieve Smokywood Pastures\\' stolen treats and receive a Smokywood Pastures\\' Thank You.","","","","","","","","","","","","","","","",16712190,156,10,8,0,3190,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (295,-1,230,0,"Direbrewfest","","","","","","","","","","","","","","","",16712190,"Kill Coren Direbrew.","","","","","","","","","","","","","","","",16712190,162,10,8,0,2788,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (323,-1,-1,0,"Total deaths to Lich King 10-player raid bosses","","","","","","","","","","","","","","","",16712190,"Total deaths to Lich King 10-player raid bosses","","","","","","","","","","","","","","","",16712190,125,0,8,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (331,-1,-1,0,"Most expensive bid on auction","","","","","","","","","","","","","","","",16712190,"Most expensive bid on auction","","","","","","","","","","","","","","","",16712190,140,0,8,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (366,-1,-1,0,"2v2 victories","","","","","","","","","","","","","","","",16712190,"2v2 victories","","","","","","","","","","","","","","","",16712190,152,0,8,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (401,-1,-1,400,"Just the Two of Us: 2000","","","","","","","","","","","","","","","",16712190,"Earn a 2000 personal rating in the 2v2 bracket of the arena at level 80.","","","","","","","","","","","","","","","",16712190,165,10,8,0,3037,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (461,-1,-1,0,"Realm First! Level 80 Death Knight","","","","","","","","","","","","","","","",16712190,"First death knight on the realm to achieve level 80.","","","","","","","","","","","","","","","",16712190,81,0,8,256,2639,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (485,-1,599,0,"Halls of Stone","","","","","","","","","","","","","","","",16712190,"Defeat the boss encounters in Halls of Stone.","","","","","","","","","","","","","","","",16712190,14806,10,8,0,3239,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (496,-1,599,0,"Heroic: Halls of Stone","","","","","","","","","","","","","","","",16712190,"Defeat the boss encounters in the Halls of Stone on Heroic Difficulty.","","","","","","","","","","","","","","","",16712190,14921,10,8,0,3240,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (574,-1,533,0,"Kel\\'Thuzad\\'s Defeat (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Kel\\'Thuzad in Naxxramas in 10-player mode.","","","","","","","","","","","","","","","",16712190,14922,10,8,0,1898,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (575,-1,533,0,"Kel\\'Thuzad\\'s Defeat (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat Kel\\'Thuzad in Naxxramas in 25-player mode.","","","","","","","","","","","","","","","",16712190,14923,10,8,0,1898,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (634,-1,-1,0,"Gnomeregan","","","","","","","","","","","","","","","",16712190,"Defeat Mekgineer Thermaplugg.","","","","","","","","","","","","","","","",16712190,14808,10,8,0,3641,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (653,-1,-1,0,"Sethekk Halls","","","","","","","","","","","","","","","",16712190,"Defeat Talon King Ikiss.","","","","","","","","","","","","","","","",16712190,14805,10,8,0,3631,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (769,-1,-1,0,"Explore Silverpine Forest","","","","","","","","","","","","","","","",16712190,"Explore Silverpine Forest, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14777,10,8,0,3576,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (830,-1,-1,0,"Total healing received","","","","","","","","","","","","","","","",16712190,"Total healing received","","","","","","","","","","","","","","","",16712190,141,0,8,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (845,-1,-1,0,"Explore Ashenvale","","","","","","","","","","","","","","","",16712190,"Explore Ashenvale, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14778,10,8,0,3543,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (869,-1,-1,239,"50000 Honorable Kills","","","","","","","","","","","","","","","",16712190,"Get 50000 honorable kills.","","","","","","","","","","","","","","","",16712190,95,10,8,0,3461,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (899,1,-1,0,"Oh My, Kurenai","","","","","","","","","","","","","","","",16712190,"Earn exalted status with the Kurenai.","","","","","","","","","","","","","","","",16712190,14865,15,8,0,2208,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (931,-1,-1,0,"Total factions encountered","","","","","","","","","","","","","","","",16712190,"Total factions encountered","","","","","","","","","","","","","","","",16712190,147,0,8,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (934,-1,-1,0,"Total 25-player raids entered","","","","","","","","","","","","","","","",16712190,"Total 25-player raids entered","","","","","","","","","","","","","","","",16712190,14807,0,8,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (978,-1,-1,32,"3000 Quests Completed","","","","","","","","","","","","","","","",16712190,"Complete 3000 quests.","","","","","","","","","","","","","","","",16712190,96,50,8,0,3414,"Title Reward: The Seeker","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (1009,-1,-1,0,"Knights of the Ebon Blade","","","","","","","","","","","","","","","",16712190,"Earn exalted status with the Knights of the Ebon Blade.","","","","","","","","","","","","","","","",16712190,14866,10,8,0,3683,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1014,-1,-1,518,"35 Exalted Reputations","","","","","","","","","","","","","","","",16712190,"Raise 35 reputations to Exalted.","","","","","","","","","","","","","","","",16712190,201,10,8,0,3603,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1028,1,-1,0,"Extinguishing Eastern Kingdoms","","","","","","","","","","","","","","","",16712190,"Desecrate the Horde\\'s bonfires in Eastern Kingdoms.","","","","","","","","","","","","","","","",16712190,161,10,8,0,1920,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1039,0,-1,0,"The Flame Keeper","","","","","","","","","","","","","","","",16712190,"Complete the Midsummer achievements listed below.","","","","","","","","","","","","","","","",16712190,155,20,8,0,2975,"Title Reward: Flame Keeper","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (1040,1,-1,0,"Rotten Hallow","","","","","","","","","","","","","","","",16712190,"Ruin Hallow\\'s End for the Horde by completing Sergeant Hartman\\'s quests which involve crashing the wickerman festival and cleaning up the stinkbombs from Southshore.","","","","","","","","","","","","","","","",16712190,158,10,8,0,3480,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1043,-1,-1,0,"Greed rolls made on loot","","","","","","","","","","","","","","","",16712190,"Greed rolls made on loot","","","","","","","","","","","","","","","",16712190,191,0,8,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1075,-1,555,0,"Murmur kills (Shadow Labyrinth)","","","","","","","","","","","","","","","",16712190,"Murmur kills (Shadow Labyrinth)","","","","","","","","","","","","","","","",16712190,14822,5,8,1,2793,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1102,-1,309,0,"Hakkar kills (Zul\\'Gurub)","","","","","","","","","","","","","","","",16712190,"Hakkar kills (Zul\\'Gurub)","","","","","","","","","","","","","","","",16712190,14821,5,8,1,2804,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1110,-1,-1,0,"3v3 Arena Honorable Kills","","","","","","","","","","","","","","","",16712190,"3v3 Arena Honorable Kills","","","","","","","","","","","","","","","",16712190,136,0,8,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1164,0,30,0,"Everything Counts","","","","","","","","","","","","","","","",16712190,"Win Alterac Valley while your team controls both mines.","","","","","","","","","","","","","","","",16712190,14801,10,8,0,3433,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1269,-1,-1,0,"Explore Storm Peaks","","","","","","","","","","","","","","","",16712190,"Explore Storm Peaks, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14780,10,8,0,3404,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1273,0,-1,0,"Nagrand Slam","","","","","","","","","","","","","","","",16712190,"Complete 87 quests in Nagrand.","","","","","","","","","","","","","","","",16712190,14862,10,8,0,3563,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1291,-1,-1,0,"Lonely?","","","","","","","","","","","","","","","",16712190,"Enjoy a Buttermilk Delight with someone in Dalaran at a Romantic Picnic during the Love is in the Air celebration.","","","","","","","","","","","","","","","",16712190,187,10,8,0,2545,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1301,-1,-1,0,"Mana potion used most","","","","","","","","","","","","","","","",16712190,"Mana potion used most","","","","","","","","","","","","","","","",16712190,145,0,8,17,1,"","","","","","","","","","","","","","","","",4278125036,0,922);
INSERT INTO `Achievement` VALUES (1311,-1,530,0,"Medium Rare","","","","","","","","","","","","","","","",16712190,"Kill one of the extremely rare and hard to find Outland creatures listed below.","","","","","","","","","","","","","","","",16712190,14779,10,8,0,134,"","","","","","","","","","","","","","","","",2113864172,1,0);
INSERT INTO `Achievement` VALUES (1357,0,-1,0,"Fo\\' Grizzle My Shizzle","","","","","","","","","","","","","","","",16712190,"Complete 75 quests in Grizzly Hills.","","","","","","","","","","","","","","","",16712190,14863,10,8,0,3339,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1493,-1,-1,0,"3v3 Arena Killing Blows","","","","","","","","","","","","","","","",16712190,"3v3 Arena Killing Blows","","","","","","","","","","","","","","","",16712190,137,0,8,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1507,-1,619,0,"Herald Volazj kills (Heroic Ahn\\'kahet)","","","","","","","","","","","","","","","",16712190,"Herald Volazj kills (Heroic Ahn\\'kahet)","","","","","","","","","","","","","","","",16712190,14823,5,8,1,1256,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1518,-1,-1,0,"Fish caught","","","","","","","","","","","","","","","",16712190,"Fish caught","","","","","","","","","","","","","","","",16712190,178,0,8,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1552,-1,-1,0,"Frenzied Firecracker","","","","","","","","","","","","","","","",16712190,"Shoot off 10 Festival Firecrackers in 30 seconds or less.","","","","","","","","","","","","","","","",16712190,160,10,8,0,355,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1727,-1,571,0,"Leaning Tower","","","","","","","","","","","","","","","",16712190,"Destroy a tower in Wintergrasp.","","","","","","","","","","","","","","","",16712190,14901,10,8,0,2661,"","","","","","","","","","","","","","","","",2130641388,1,0);
INSERT INTO `Achievement` VALUES (1800,-1,-1,0,"The Outland Gourmet","","","","","","","","","","","","","","","",16712190,"Cook each of the Outland cooking recipes listed below.","","","","","","","","","","","","","","","",16712190,170,10,8,0,3162,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2193,-1,607,0,"Explosives Expert","","","","","","","","","","","","","","","",16712190,"Plant 5 Seaforium charges which successfully damage a wall in a single battle.","","","","","","","","","","","","","","","",16712190,14881,10,8,0,355,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2497,0,-1,0,"Spring Fling","","","","","","","","","","","","","","","",16712190,"Find your pet Spring Rabbit another one to love in each of the towns listed below.","","","","","","","","","","","","","","","",16712190,159,10,8,0,3202,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2760,1,-1,2777,"Exalted Champion of Darnassus","","","","","","","","","","","","","","","",16712190,"Earn exalted status with and the right to represent Darnassus in the Argent Tournament.","","","","","","","","","","","","","","","",16712190,14941,10,8,0,3801,"Title Reward: of Darnassus","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (2862,-1,603,0,"Hodir victories (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,"Hodir victories (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,14963,10,8,1,1700,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2907,-1,603,0,"Three Car Garage (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Flame Leviathan while in each of the following vehicles in 10-player mode.","","","","","","","","","","","","","","","",16712190,14961,10,8,0,656,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2908,-1,603,0,"Three Car Garage (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat Flame Leviathan while in each of the following vehicles in 25-player mode.","","","","","","","","","","","","","","","",16712190,14962,10,8,0,656,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (3596,1,-1,0,"Pilgrim\\'s Progress","","","","","","","","","","","","","","","",16712190,"Complete each of the Pilgrim\\'s Bounty dailies.","","","","","","","","","","","","","","","",16712190,14981,10,8,0,3966,"","","","","","","","","","","","","","","","",16775150,0,0);
INSERT INTO `Achievement` VALUES (3800,-1,-1,0,"The Traitor King (10 player)","","","","","","","","","","","","","","","",16712190,"Kill 40 Swarm Scarabs within 30 seconds in 10-player mode.","","","","","","","","","","","","","","","",16712190,15001,10,8,0,4006,"","","","","","","","","","","","","","","","",16718847,0,0);
INSERT INTO `Achievement` VALUES (3816,-1,-1,0,"The Traitor King (25 player)","","","","","","","","","","","","","","","",16712190,"Kill 40 Swarm Scarabs within 30 seconds in 25-player mode.","","","","","","","","","","","","","","","",16712190,15002,10,8,0,4006,"","","","","","","","","","","","","","","","",16718845,0,0);
INSERT INTO `Achievement` VALUES (3838,-1,-1,0,"Dungeon & Raid Emblem","","","","","","","","","","","","","","","",16712190,"Loot an Emblem of Heroism, Valor, Conquest, Triumph or Frost.","","","","","","","","","","","","","","","",16712190,168,10,8,8,1950,"","","","","","","","","","","","","","","","",16718844,0,0);
INSERT INTO `Achievement` VALUES (3847,-1,628,0,"Four Car Garage","","","","","","","","","","","","","","","",16712190,"In Isle of Conquest, control the following vehicles:","","","","","","","","","","","","","","","",16712190,15003,10,8,0,656,"","","","","","","","","","","","","","","","",16718847,0,0);
INSERT INTO `Achievement` VALUES (4053,-1,-1,0,"Victories over Shaman Champion (Heroic Trial of the Champion)","","","","","","","","","","","","","","","",16712190,"Victories over Shaman Champion (Heroic Trial of the Champion)","","","","","","","","","","","","","","","",16712190,15021,0,8,1,1,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4631,-1,631,4527,"Heroic: The Frostwing Halls (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Frostwing Halls in Icecrown Citadel in 10-player Heroic mode.","","","","","","","","","","","","","","","",16712190,15041,10,8,0,4158,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4635,-1,631,4607,"Heroic: The Frostwing Halls (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of The Frostwing Halls in Icecrown Citadel in 25-player Heroic mode.","","","","","","","","","","","","","","","",16712190,15042,10,8,0,4158,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4719,-1,-1,0,"Ick and Krick kills (Heroic Pit of Saron)","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16712188,15062,0,8,1,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (36,-1,-1,0,"The Empire of Zul\\'Drak","","","","","","","","","","","","","","","",16712190,"Complete 100 quests in Zul\\'Drak.","","","","","","","","","","","","","","","",16712190,14863,10,9,0,3340,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (54,-1,566,0,"Eye of the Storm battles","","","","","","","","","","","","","","","",16712190,"Eye of the Storm battles","","","","","","","","","","","","","","","",16712190,153,0,9,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (103,-1,-1,0,"Circle of Blood matches","","","","","","","","","","","","","","","",16712190,"Circle of Blood matches","","","","","","","","","","","","","","","",16712190,152,0,9,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (156,-1,529,0,"Territorial Dominance","","","","","","","","","","","","","","","",16712190,"Win 10 Arathi Basin matches while controlling all 5 flags.","","","","","","","","","","","","","","","",16712190,14802,10,9,0,3452,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (201,-1,489,0,"Warsong Expedience","","","","","","","","","","","","","","","",16712190,"Win Warsong Gulch in under 7 minutes.","","","","","","","","","","","","","","","",16712190,14804,10,9,0,3389,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (226,-1,30,0,"The Alterac Blitz","","","","","","","","","","","","","","","",16712190,"Win Alterac Valley in 6 minutes.","","","","","","","","","","","","","","","",16712190,14801,20,9,0,3380,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (306,-1,-1,0,"Master Angler of Azeroth","","","","","","","","","","","","","","","",16712190,"Win the Booty Bay fishing contest or the Kalu\\'ak Fishing Derby.","","","","","","","","","","","","","","","",16712190,171,20,9,0,577,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (332,-1,-1,0,"Most expensive auction sold","","","","","","","","","","","","","","","",16712190,"Most expensive auction sold","","","","","","","","","","","","","","","",16712190,140,0,9,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (460,-1,-1,0,"Realm First! Level 80 Mage","","","","","","","","","","","","","","","",16712190,"First mage on the realm to achieve level 80.","","","","","","","","","","","","","","","",16712190,81,0,9,256,2832,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (486,-1,602,0,"Halls of Lightning","","","","","","","","","","","","","","","",16712190,"Defeat the bosses in Halls of Lightning.","","","","","","","","","","","","","","","",16712190,14806,10,9,0,3241,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (497,-1,602,0,"Heroic: Halls of Lightning","","","","","","","","","","","","","","","",16712190,"Defeat the Halls of Lightning bosses on Heroic Difficulty.","","","","","","","","","","","","","","","",16712190,14921,10,9,0,3242,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (576,-1,-1,0,"The Fall of Naxxramas (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat every boss in Naxxramas in 10-player mode.","","","","","","","","","","","","","","","",16712190,14922,25,9,0,3258,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (577,-1,-1,0,"The Fall of Naxxramas (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat every boss in Naxxramas in 25-player mode.","","","","","","","","","","","","","","","",16712190,14923,50,9,0,3259,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (587,-1,566,0,"Stormy Assassin","","","","","","","","","","","","","","","",16712190,"In a single Eye of the Storm battle, get 5 honorable kills at each of the bases.","","","","","","","","","","","","","","","",16712190,14803,10,9,0,2837,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (636,-1,-1,0,"Razorfen Downs","","","","","","","","","","","","","","","",16712190,"Defeat Amnennar the Coldbringer.","","","","","","","","","","","","","","","",16712190,14808,10,9,0,3655,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (654,-1,-1,0,"Shadow Labyrinth","","","","","","","","","","","","","","","",16712190,"Defeat Murmur.","","","","","","","","","","","","","","","",16712190,14805,10,9,0,3825,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (705,-1,-1,0,"Master of Arms","","","","","","","","","","","","","","","",16712190,"Raise four weapon skills to 400.","","","","","","","","","","","","","","","",16712190,92,25,9,0,279,"","","","","","","","","","","","","","","","",16712174,4,0);
INSERT INTO `Achievement` VALUES (846,-1,-1,0,"Explore Thousand Needles","","","","","","","","","","","","","","","",16712190,"Explore Thousand Needles, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14778,10,9,0,3580,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (858,-1,-1,0,"Explore Ghostlands","","","","","","","","","","","","","","","",16712190,"Explore Ghostlands, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14777,10,9,0,3540,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (870,-1,-1,869,"100000 Honorable Kills","","","","","","","","","","","","","","","",16712190,"Get 100000 honorable kills.","","","","","","","","","","","","","","","",16712190,95,10,9,0,3453,"Title Reward: Of the Horde or Of the Alliance","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (901,0,-1,0,"Mag\\'har of Draenor","","","","","","","","","","","","","","","",16712190,"Earn exalted status with The Mag\\'har.","","","","","","","","","","","","","","","",16712190,14865,15,9,0,2208,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (937,-1,-1,0,"Elune\\'s Blessing","","","","","","","","","","","","","","","",16712190,"Complete the Elune\\'s Blessing quest by defeating Omen.","","","","","","","","","","","","","","","",16712190,160,10,9,0,2821,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (973,-1,-1,0,"5 Daily Quests Complete","","","","","","","","","","","","","","","",16712190,"Complete 5 daily quests.","","","","","","","","","","","","","","","",16712190,96,10,9,0,3424,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1010,-1,-1,0,"Northrend Vanguard","","","","","","","","","","","","","","","",16712190,"Gain exalted reputation with the Argent Crusade, Wyrmrest Accord, Kirin Tor and Knights of the Ebon Blade.","","","","","","","","","","","","","","","",16712190,14866,20,9,0,2207,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1015,-1,-1,1014,"40 Exalted Reputations","","","","","","","","","","","","","","","",16712190,"Raise 40 reputations to Exalted.","","","","","","","","","","","","","","","",16712190,201,10,9,0,3602,"Title Reward: The Exalted","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (1029,1,-1,0,"Extinguishing Kalimdor","","","","","","","","","","","","","","","",16712190,"Desecrate the Horde\\'s bonfires in Kalimdor.","","","","","","","","","","","","","","","",16712190,161,10,9,0,1920,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1041,0,-1,0,"Rotten Hallow","","","","","","","","","","","","","","","",16712190,"Ruin Hallow\\'s End for the Alliance by completing Darkcaller Yanka\\'s quests which involve going to Southshore, ruining the kegs with rotten eggs and tossing stinkbombs into the town.","","","","","","","","","","","","","","","",16712190,158,10,9,0,3480,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1044,-1,-1,0,"Need rolls made on loot","","","","","","","","","","","","","","","",16712190,"Need rolls made on loot","","","","","","","","","","","","","","","",16712190,191,0,9,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1076,-1,269,0,"Aeonus kills (Opening of the Dark Portal)","","","","","","","","","","","","","","","",16712190,"Aeonus kills (Opening of the Dark Portal)","","","","","","","","","","","","","","","",16712190,14822,5,9,1,1699,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1098,-1,249,0,"Onyxia kills (Onyxia\\'s Lair)","","","","","","","","","","","","","","","",16712190,"Onyxia kills (Onyxia\\'s Lair)","","","","","","","","","","","","","","","",16712190,14821,5,9,1,1548,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1103,-1,-1,0,"Lich King 5-player dungeons completed (final boss killed)","","","","","","","","","","","","","","","",16712190,"Lich King 5-player dungeons completed (final boss killed)","","","","","","","","","","","","","","","",16712190,14807,0,9,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1109,-1,-1,0,"5v5 Arena Honorable Kills","","","","","","","","","","","","","","","",16712190,"5v5 Arena Honorable Kills","","","","","","","","","","","","","","","",16712190,136,0,9,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1159,-1,-1,401,"Just the Two of Us: 2200","","","","","","","","","","","","","","","",16712190,"Earn a 2200 personal rating in the 2v2 bracket of the arena at level 80.","","","","","","","","","","","","","","","",16712190,165,10,9,0,3036,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1186,-1,-1,0,"Down With The Dark Iron","","","","","","","","","","","","","","","",16712190,"Defend the Brewfest camp from the Dark Iron attack and complete the quest, \\"This One Time, When I Was Drunk...\\"","","","","","","","","","","","","","","","",16712190,162,10,9,0,3072,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (1193,-1,-1,0,"On the Blade\\'s Edge","","","","","","","","","","","","","","","",16712190,"Complete 86 quests in Blade\\'s Edge Mountains.","","","","","","","","","","","","","","","",16712190,14862,10,9,0,3549,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1234,-1,600,0,"The Prophet Tharon\\'ja kills (Drak\\'Tharon Keep)","","","","","","","","","","","","","","","",16712190,"The Prophet Tharon\\'ja kills (Drak\\'Tharon Keep)","","","","","","","","","","","","","","","",16712190,14823,5,9,1,2912,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1270,-1,-1,0,"Explore Icecrown","","","","","","","","","","","","","","","",16712190,"Explore Icecrown, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14780,10,9,0,3473,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1302,-1,-1,0,"Different mana potions used","","","","","","","","","","","","","","","",16712190,"Different mana potions used","","","","","","","","","","","","","","","",16712190,145,0,9,33,1,"","","","","","","","","","","","","","","","",4278125036,0,922);
INSERT INTO `Achievement` VALUES (1312,-1,530,1311,"Bloody Rare","","","","","","","","","","","","","","","",16712190,"Kill all of the extremely rare and hard to find Outland creatures listed below.","","","","","","","","","","","","","","","",16712190,14779,25,9,0,134,"","","","","","","","","","","","","","","","",2113864172,0,1311);
INSERT INTO `Achievement` VALUES (1456,-1,-1,0,"Fish and other things caught","","","","","","","","","","","","","","","",16712190,"Fish and other things caught","","","","","","","","","","","","","","","",16712190,178,0,9,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1494,-1,-1,0,"5v5 Arena Killing Blows","","","","","","","","","","","","","","","",16712190,"5v5 Arena Killing Blows","","","","","","","","","","","","","","","",16712190,137,0,9,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1544,-1,-1,0,"Highest Engineering skill","","","","","","","","","","","","","","","",16712190,"Highest Engineering skill","","","","","","","","","","","","","","","",16712190,173,0,9,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1687,-1,-1,0,"Let It Snow","","","","","","","","","","","","","","","",16712190,"During the Feast of Winter Veil, use a Handful of Snowflakes on each of the race/class combinations listed below.","","","","","","","","","","","","","","","",16712190,156,10,9,0,976,"","","","","","","","","","","","","","","","",2063532524,0,0);
INSERT INTO `Achievement` VALUES (1694,-1,-1,0,"Lovely Luck Is On Your Side","","","","","","","","","","","","","","","",16712190,"Open a Lovely Dress Box and receive a Lovely Black Dress.","","","","","","","","","","","","","","","",16712190,187,10,9,0,3193,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1751,-1,571,0,"Didn\\'t Stand a Chance","","","","","","","","","","","","","","","",16712190,"Kill 20 mounted players using a tower cannon.","","","","","","","","","","","","","","","",16712190,14901,10,9,0,3434,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1762,1,607,0,"Not Even a Scratch","","","","","","","","","","","","","","","",16712190,"Win a Strand of the Ancients battle without losing any siege vehicles.","","","","","","","","","","","","","","","",16712190,14881,10,9,0,457,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1777,-1,-1,0,"The Northrend Gourmet","","","","","","","","","","","","","","","",16712190,"Cook 15 of the Northrend recipes listed below.","","","","","","","","","","","","","","","",16712190,170,10,9,0,3211,"","","","","","","","","","","","","","","","",2080309740,15,0);
INSERT INTO `Achievement` VALUES (2217,-1,-1,0,"Most deadly Lich King 10-player raid boss","","","","","","","","","","","","","","","",16712190,"Most deadly Lich King 10-player raid boss","","","","","","","","","","","","","","","",16712190,125,0,9,17,1,"","","","","","","","","","","","","","","","",2080309740,0,323);
INSERT INTO `Achievement` VALUES (2420,0,-1,0,"Noble Garden","","","","","","","","","","","","","","","",16712190,"Hide a Brightly Colored Egg in Silvermoon City.","","","","","","","","","","","","","","","",16712190,159,10,9,0,3329,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2778,1,-1,0,"Champion of the Exodar","","","","","","","","","","","","","","","",16712190,"Earn the right to represent the Exodar in the Argent Tournament.","","","","","","","","","","","","","","","",16712190,14941,10,9,0,3796,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2863,-1,603,0,"Thorim victories (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,"Thorim victories (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,14963,10,9,1,1700,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2909,-1,603,0,"Take Out Those Turrets (10 player)","","","","","","","","","","","","","","","",16712190,"Destroy a Flame Leviathan Defense Turret in 10-player mode.","","","","","","","","","","","","","","","",16712190,14961,10,9,0,3854,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2910,-1,603,0,"Take Out Those Turrets (25 player)","","","","","","","","","","","","","","","",16712190,"Destroy a Flame Leviathan Defense Turret in 25-player mode.","","","","","","","","","","","","","","","",16712190,14962,10,9,0,2589,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (3457,-1,-1,0,"The Captain\\'s Booty","","","","","","","","","","","","","","","",16712190,"Drink with the Dread Captain Demeza to join her crew during Pirates\\' Day.","","","","","","","","","","","","","","","",16712190,155,10,9,0,2421,"","","","","","","","","","","","","","","","",16775150,0,0);
INSERT INTO `Achievement` VALUES (3597,0,-1,0,"Pilgrim\\'s Progress","","","","","","","","","","","","","","","",16712190,"Complete each of the Pilgrim\\'s Bounty dailies.","","","","","","","","","","","","","","","",16712190,14981,10,9,0,3966,"","","","","","","","","","","","","","","","",16775150,0,0);
INSERT INTO `Achievement` VALUES (3808,-1,-1,0,"A Tribute to Skill (10 player)","","","","","","","","","","","","","","","",16712190,"In the Trial of the Grand Crusader, reach a Tribute Chest with at least 25 attempts remaining in 10-player mode.","","","","","","","","","","","","","","","",16712190,15001,10,9,0,3293,"","","","","","","","","","","","","","","","",16718845,1,0);
INSERT INTO `Achievement` VALUES (3817,-1,-1,0,"A Tribute to Skill (25 player)","","","","","","","","","","","","","","","",16712190,"In the Trial of the Grand Crusader, reach a Tribute Chest with at least 25 attempts remaining in 25-player mode.","","","","","","","","","","","","","","","",16712190,15002,10,9,0,3293,"","","","","","","","","","","","","","","","",16718845,1,0);
INSERT INTO `Achievement` VALUES (3839,-1,-1,3838,"25 Dungeon & Raid Emblems","","","","","","","","","","","","","","","",16712190,"Loot 25 Emblems of Heroism, Valor, Conquest, Triumph or Frost.","","","","","","","","","","","","","","","",16712190,168,10,9,136,1950,"","","","","","","","","","","","","","","","",16718845,0,0);
INSERT INTO `Achievement` VALUES (3848,-1,628,0,"A-bomb-inable","","","","","","","","","","","","","","","",16712190,"In a single Isle of Conquest battle, use 5 Seaforium Bombs on the enemy gates.","","","","","","","","","","","","","","","",16712190,15003,10,9,0,2565,"","","","","","","","","","","","","","","","",16718847,0,0);
INSERT INTO `Achievement` VALUES (4054,-1,-1,0,"Victories over Warrior Champion (Trial of the Champion)","","","","","","","","","","","","","","","",16712190,"Victories over Warrior Champion (Trial of the Champion)","","","","","","","","","","","","","","","",16712190,15021,0,9,1,1,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4530,-1,631,0,"The Frozen Throne (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the Lich King in Icecrown Citadel in 10-player mode.","","","","","","","","","","","","","","","",16712190,15041,10,9,0,4179,"Title: The Kingslayer","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (4597,-1,631,0,"The Frozen Throne (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the Lich King in Icecrown Citadel in 25-player mode.","","","","","","","","","","","","","","","",16712190,15042,10,9,0,4179,"Title: The Kingslayer","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (4720,-1,-1,0,"Scourgelord Tyrannus kills (Pit of Saron)","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16712188,15062,0,9,1,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (16,-1,-1,0,"Did Somebody Order a Knuckle Sandwich?","","","","","","","","","","","","","","","",16712190,"Raise your unarmed skill to 400.","","","","","","","","","","","","","","","",16712190,92,10,10,0,1997,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (39,-1,-1,0,"Into the Basin","","","","","","","","","","","","","","","",16712190,"Complete 75 quests in Sholazar Basin.","","","","","","","","","","","","","","","",16712190,14863,10,10,0,3341,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (50,-1,566,0,"Eye of the Storm victories","","","","","","","","","","","","","","","",16712190,"Eye of the Storm victories","","","","","","","","","","","","","","","",16712190,153,0,10,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (104,-1,-1,0,"Circle of Blood victories","","","","","","","","","","","","","","","",16712190,"Circle of Blood victories","","","","","","","","","","","","","","","",16712190,152,0,10,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (159,-1,529,0,"Let\\'s Get This Done","","","","","","","","","","","","","","","",16712190,"Win Arathi Basin in 6 minutes.","","","","","","","","","","","","","","","",16712190,14802,10,10,0,3383,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (204,-1,489,0,"Ironman","","","","","","","","","","","","","","","",16712190,"In a single Warsong Gulch battle, carry and capture the flag 3 times without dying.","","","","","","","","","","","","","","","",16712190,14804,10,10,0,3482,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (223,-1,30,0,"The Sickly Gazelle","","","","","","","","","","","","","","","",16712190,"In Alterac Valley, kill an enemy in the Field of Strife before they dismount.","","","","","","","","","","","","","","","",16712190,14801,10,10,0,3434,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (293,-1,571,0,"Disturbing the Peace","","","","","","","","","","","","","","","",16712190,"While wearing 3 pieces of Brewfest clothing, get completely smashed and dance in Dalaran.","","","","","","","","","","","","","","","",16712190,162,10,10,0,2518,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (324,-1,-1,0,"Total deaths to Lich King 25-player raid bosses","","","","","","","","","","","","","","","",16712190,"Total deaths to Lich King 25-player raid bosses","","","","","","","","","","","","","","","",16712190,125,0,10,9,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (402,-1,-1,0,"Three\\'s Company: 1550","","","","","","","","","","","","","","","",16712190,"Earn a 1550 personal rating in the 3v3 bracket of the arena at level 80.","","","","","","","","","","","","","","","",16712190,165,10,10,0,3050,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (459,-1,-1,0,"Realm First! Level 80 Warrior","","","","","","","","","","","","","","","",16712190,"First warrior on the realm to achieve level 80.","","","","","","","","","","","","","","","",16712190,81,0,10,256,1462,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (487,-1,578,0,"The Oculus","","","","","","","","","","","","","","","",16712190,"Defeat the bosses in The Oculus.","","","","","","","","","","","","","","","",16712190,14806,10,10,0,3243,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (498,-1,578,0,"Heroic: The Oculus","","","","","","","","","","","","","","","",16712190,"Defeat The Oculus bosses on Heroic Difficulty.","","","","","","","","","","","","","","","",16712190,14921,10,10,0,3244,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (578,-1,533,0,"The Dedicated Few (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of Naxxramas with less than 9 people in the zone in 10-player mode.","","","","","","","","","","","","","","","",16712190,14922,25,10,0,61,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (579,-1,533,0,"The Dedicated Few (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat the bosses of Naxxramas with less than 21 people in the zone in 25-player mode.","","","","","","","","","","","","","","","",16712190,14923,50,10,0,61,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (637,-1,189,0,"Scarlet Monastery","","","","","","","","","","","","","","","",16712190,"Defeat the Scarlet Crusade within the Scarlet Monastery.","","","","","","","","","","","","","","","",16712190,14808,10,10,0,2792,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (655,-1,-1,0,"Opening of the Dark Portal","","","","","","","","","","","","","","","",16712190,"Defeat Aeonus.","","","","","","","","","","","","","","","",16712190,14805,10,10,0,3826,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (726,-1,-1,0,"Mr. Pinchy\\'s Magical Crawdad Box","","","","","","","","","","","","","","","",16712190,"Fish your way to Mr. Pinchy\\'s Magical Crawdad Box.","","","","","","","","","","","","","","","",16712190,171,10,10,0,2105,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (762,0,-1,0,"Ambassador of the Horde","","","","","","","","","","","","","","","",16712190,"Earn exalted reputation with 5 home cities.","","","","","","","","","","","","","","","",16712190,201,10,10,0,3374,"Title Reward: Ambassador","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (780,-1,-1,0,"Explore Redridge Mountains","","","","","","","","","","","","","","","",16712190,"Explore Redridge Mountains, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14777,10,10,0,3565,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (847,-1,-1,0,"Explore Stonetalon Mountains","","","","","","","","","","","","","","","",16712190,"Explore Stonetalon Mountains, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14778,10,10,0,3578,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (902,-1,-1,0,"Chief Exalted Officer","","","","","","","","","","","","","","","",16712190,"Earn exalted status with The Consortium.","","","","","","","","","","","","","","","",16712190,14865,10,10,0,2558,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (912,-1,-1,0,"Elders of Eastern Kingdoms","","","","","","","","","","","","","","","",16712190,"Honor the Elders which are located in Eastern Kingdoms","","","","","","","","","","","","","","","",16712190,160,10,10,0,2218,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (921,-1,-1,0,"Gold from vendors","","","","","","","","","","","","","","","",16712190,"Gold from vendors","","","","","","","","","","","","","","","",16712190,140,0,10,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (923,-1,-1,0,"Elixirs consumed","","","","","","","","","","","","","","","",16712190,"Elixirs consumed","","","","","","","","","","","","","","","",16712190,145,0,10,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (974,-1,-1,973,"50 Daily Quests Complete","","","","","","","","","","","","","","","",16712190,"Complete 50 daily quests.","","","","","","","","","","","","","","","",16712190,96,10,10,0,3425,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1011,0,-1,0,"The Winds of the North","","","","","","","","","","","","","","","",16712190,"Gain exalted reputation with the Horde Expedition.","","","","","","","","","","","","","","","",16712190,14866,20,10,0,2625,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1030,1,-1,0,"Extinguishing Outland","","","","","","","","","","","","","","","",16712190,"Desecrate the Horde\\'s bonfires in Outland.","","","","","","","","","","","","","","","",16712190,161,10,10,0,1920,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1077,-1,545,0,"Warlord Kalithresh kills (The Steamvault)","","","","","","","","","","","","","","","",16712190,"Warlord Kalithresh kills (The Steamvault)","","","","","","","","","","","","","","","",16712190,14822,5,10,1,1647,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1099,-1,409,0,"Ragnaros kills (Molten Core)","","","","","","","","","","","","","","","",16712190,"Ragnaros kills (Molten Core)","","","","","","","","","","","","","","","",16712190,14821,5,10,1,2290,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1104,-1,-1,0,"Lich King 10-player raids completed (final boss killed)","","","","","","","","","","","","","","","",16712190,"Lich King 10-player raids completed (final boss killed)","","","","","","","","","","","","","","","",16712190,14807,0,10,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1113,-1,-1,0,"Alterac Valley Honorable Kills","","","","","","","","","","","","","","","",16712190,"Alterac Valley Honorable Kills","","","","","","","","","","","","","","","",16712190,136,0,10,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1157,-1,-1,0,"Duel-icious","","","","","","","","","","","","","","","",16712190,"Win a duel against another player.","","","","","","","","","","","","","","","",16712190,95,10,10,0,2023,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1194,-1,-1,0,"Into the Nether","","","","","","","","","","","","","","","",16712190,"Complete 120 quests in Netherstorm.","","","","","","","","","","","","","","","",16712190,14862,10,10,0,3564,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1258,-1,566,0,"Take a Chill Pill","","","","","","","","","","","","","","","",16712190,"In Eye of the Storm, kill a player who is under the effects of the Berserker power-up.","","","","","","","","","","","","","","","",16712190,14803,10,10,0,3423,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1261,-1,-1,0,"G.N.E.R.D. Rage","","","","","","","","","","","","","","","",16712190,"Earn 50 honorable kills while under the influence of the G.N.E.R.D. buff. It\\'s a slap in the face!","","","","","","","","","","","","","","","",16712190,158,10,10,0,2006,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1495,-1,-1,0,"Alterac Valley Killing Blows","","","","","","","","","","","","","","","",16712190,"Alterac Valley Killing Blows","","","","","","","","","","","","","","","",16712190,137,0,10,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1508,-1,600,0,"The Prophet Tharon\\'ja kills (Heroic Drak\\'Tharon Keep)","","","","","","","","","","","","","","","",16712190,"The Prophet Tharon\\'ja kills (Heroic Drak\\'Tharon Keep)","","","","","","","","","","","","","","","",16712190,14823,5,10,1,2912,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1526,-1,-1,0,"Fishing daily quests completed","","","","","","","","","","","","","","","",16712190,"Fishing daily quests completed","","","","","","","","","","","","","","","",16712190,178,10,10,9,2736,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1683,0,-1,0,"Brewmaster","","","","","","","","","","","","","","","",16712190,"Complete the Brewfest achievements listed below.","","","","","","","","","","","","","","","",16712190,155,10,10,0,3697,"Title Reward: Brewmaster","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (1685,0,-1,0,"Bros. Before Ho Ho Ho\\'s","","","","","","","","","","","","","","","",16712190,"Use Mistletoe on the Horde \\"Brothers\\" during the Feast of Winter Veil.","","","","","","","","","","","","","","","",16712190,156,10,10,0,1793,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1703,-1,-1,0,"My Love is Like a Red, Red Rose","","","","","","","","","","","","","","","",16712190,"Obtain a Bouquet of Red or Ebon Roses during the Love is in the Air celebration.","","","","","","","","","","","","","","","",16712190,187,10,10,0,1937,"","","","","","","","","","","","","","","","",2080309740,1,0);
INSERT INTO `Achievement` VALUES (1734,-1,-1,0,"Engineering Schematics learned","","","","","","","","","","","","","","","",16712190,"Engineering Schematics learned","","","","","","","","","","","","","","","",16712190,173,0,10,1,4,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1778,-1,-1,1777,"The Northrend Gourmet","","","","","","","","","","","","","","","",16712190,"Cook 30 of the Northrend recipes listed below.","","","","","","","","","","","","","","","",16712190,170,10,10,0,3212,"","","","","","","","","","","","","","","","",2130641388,30,1777);
INSERT INTO `Achievement` VALUES (2080,-1,-1,0,"Black War Mammoth","","","","","","","","","","","","","","","",16712190,"Obtain a Black War Mammoth.","","","","","","","","","","","","","","","",16712190,14901,10,10,0,3444,"","","","","","","","","","","","","","","","",2080309740,1,0);
INSERT INTO `Achievement` VALUES (2192,0,607,0,"Not Even a Scratch","","","","","","","","","","","","","","","",16712190,"Win a Strand of the Ancients battle without losing any siege vehicles.","","","","","","","","","","","","","","","",16712190,14881,10,10,0,457,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2256,-1,-1,0,"Northern Exposure","","","","","","","","","","","","","","","",16712190,"Kill one of the extremely rare and hard to find Northrend creatures listed below.","","","","","","","","","","","","","","","",16712190,14780,10,10,0,3637,"","","","","","","","","","","","","","","","",2130641388,1,0);
INSERT INTO `Achievement` VALUES (2421,1,-1,0,"Noble Garden","","","","","","","","","","","","","","","",16712190,"Hide a Brightly Colored Egg in Stormwind City.","","","","","","","","","","","","","","","",16712190,159,10,10,0,3329,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2761,1,-1,2778,"Exalted Champion of the Exodar","","","","","","","","","","","","","","","",16712190,"Earn exalted status with and the right to represent the Exodar in the Argent Tournament.","","","","","","","","","","","","","","","",16712190,14941,10,10,0,3796,"Title Reward: of the Exodar","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (2864,-1,603,0,"Freya victories (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,"Freya victories (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,14963,10,10,1,1700,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2911,-1,603,0,"Shutout (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Flame Leviathan without causing a System Shutdown in 10-player mode.","","","","","","","","","","","","","","","",16712190,14961,10,10,0,3504,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2912,-1,603,0,"Shutout (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat Flame Leviathan without causing a System Shutdown in 25-player mode.","","","","","","","","","","","","","","","",16712190,14962,10,10,0,3504,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (3558,-1,-1,0,"Sharing is Caring","","","","","","","","","","","","","","","",16712190,"Pass one of every dish at a Bountiful Table.","","","","","","","","","","","","","","","",16712190,14981,10,10,0,79,"","","","","","","","","","","","","","","","",16775150,0,0);
INSERT INTO `Achievement` VALUES (3809,-1,-1,3808,"A Tribute to Mad Skill (10 player)","","","","","","","","","","","","","","","",16712190,"In the Trial of the Grand Crusader, reach a Tribute Chest with at least 45 attempts remaining in 10-player mode.","","","","","","","","","","","","","","","",16712190,15001,10,10,0,4008,"","","","","","","","","","","","","","","","",16718845,1,0);
INSERT INTO `Achievement` VALUES (3818,-1,-1,3817,"A Tribute to Mad Skill (25 player)","","","","","","","","","","","","","","","",16712190,"In the Trial of the Grand Crusader, reach a Tribute Chest with at least 45 attempts remaining in 25-player mode.","","","","","","","","","","","","","","","",16712190,15002,10,10,0,4008,"","","","","","","","","","","","","","","","",16718845,1,0);
INSERT INTO `Achievement` VALUES (3840,-1,-1,3839,"50 Dungeon & Raid Emblems","","","","","","","","","","","","","","","",16712190,"Loot 50 Emblems of Heroism, Valor, Conquest, Triumph or Frost.","","","","","","","","","","","","","","","",16712190,168,10,10,136,1950,"","","","","","","","","","","","","","","","",16718846,0,0);
INSERT INTO `Achievement` VALUES (3849,-1,628,0,"A-bomb-ination","","","","","","","","","","","","","","","",16712190,"In a single Isle of Conquest battle, use 5 Huge Seaforium Bombs on the enemy gates","","","","","","","","","","","","","","","",16712190,15003,10,10,0,1755,"","","","","","","","","","","","","","","","",16718847,0,0);
INSERT INTO `Achievement` VALUES (4055,-1,-1,0,"Victories over Warrior Champion (Heroic Trial of the Champion)","","","","","","","","","","","","","","","",16712190,"Victories over Warrior Champion (Heroic Trial of the Champion)","","","","","","","","","","","","","","","",16712190,15021,0,10,1,1,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4583,-1,631,4530,"Bane of the Fallen King","","","","","","","","","","","","","","","",16712190,"Defeat the Lich King in Icecrown Citadel in 10-player Heroic mode.","","","","","","","","","","","","","","","",16712190,15041,10,10,0,4148,"Title: Bane of the Fallen King","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (4584,-1,631,4597,"The Light of Dawn","","","","","","","","","","","","","","","",16712190,"Defeat the Lich King in Icecrown Citadel in 25-player Heroic mode.","","","","","","","","","","","","","","","",16712190,15042,10,10,0,2821,"Title: the Light of Dawn","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (4721,-1,-1,0,"Scourgelord Tyrannus kills (Heroic Pit of Saron)","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16712188,15062,0,10,1,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4778,-1,-1,0,"Disenchant rolls made on loot","","","","","","","","","","","","","","","",16712190,"Disenchant rolls made on loot","","","","","","","","","","","","","","","",16712190,191,0,10,1,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (38,-1,-1,0,"The Summit of Storm Peaks","","","","","","","","","","","","","","","",16712190,"Complete 100 quests in Storm Peaks.","","","","","","","","","","","","","","","",16712190,14863,10,11,0,3405,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (162,-1,529,0,"We Had It All Along *cough*","","","","","","","","","","","","","","","",16712190,"Win Arathi Basin by 10 points (1600 to 1590).","","","","","","","","","","","","","","","",16712190,14802,10,11,0,1876,"","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (220,1,30,0,"Stormpike Perfection","","","","","","","","","","","","","","","",16712190,"Win Alterac Valley without losing a tower or captain. You must also control all of the Horde\\'s towers.","","","","","","","","","","","","","","","",16712190,14801,20,11,0,2897,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (233,-1,566,0,"Bloodthirsty Berserker","","","","","","","","","","","","","","","",16712190,"Get a killing blow while under the effects of the berserker buff in Eye of the Storm.","","","","","","","","","","","","","","","",16712190,14803,10,11,0,38,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (245,-1,-1,0,"That Takes Class","","","","","","","","","","","","","","","",16712190,"Get an honorable, killing blow on one of each class.","","","","","","","","","","","","","","","",16712190,95,10,11,0,244,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (291,-1,-1,0,"Check Your Head","","","","","","","","","","","","","","","",16712190,"Use Weighted Jack-o\\'-Lanterns to put pumpkin heads on each of the races listed below.","","","","","","","","","","","","","","","",16712190,158,10,11,0,2528,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (303,-1,-1,0,"Have Keg, Will Travel","","","","","","","","","","","","","","","",16712190,"Obtain a Brewfest mount, or transform yours into one using Brewfest Hops.","","","","","","","","","","","","","","","",16712190,162,10,11,0,354,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (403,-1,-1,402,"Three\\'s Company: 1750","","","","","","","","","","","","","","","",16712190,"Earn a 1750 personal rating in the 3v3 bracket of the arena at level 80.","","","","","","","","","","","","","","","",16712190,165,10,11,0,3049,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (458,-1,-1,0,"Realm First! Level 80 Rogue","","","","","","","","","","","","","","","",16712190,"First rogue on the realm to achieve level 80.","","","","","","","","","","","","","","","",16712190,81,0,11,256,1834,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (488,-1,575,0,"Utgarde Pinnacle","","","","","","","","","","","","","","","",16712190,"Defeat the bosses in Utgarde Pinnacle.","","","","","","","","","","","","","","","",16712190,14806,10,11,0,3245,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (499,-1,575,0,"Heroic: Utgarde Pinnacle","","","","","","","","","","","","","","","",16712190,"Defeat the Utgarde Pinnacle bosses on Heroic Difficulty.","","","","","","","","","","","","","","","",16712190,14921,10,11,0,3246,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (546,-1,-1,0,"Safe Deposit","","","","","","","","","","","","","","","",16712190,"Buy 7 additional bank slots.","","","","","","","","","","","","","","","",16712190,92,10,11,0,2492,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (638,-1,-1,0,"Uldaman","","","","","","","","","","","","","","","",16712190,"Defeat Archaedas.","","","","","","","","","","","","","","","",16712190,14808,10,11,0,3656,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (656,-1,-1,0,"The Steamvault","","","","","","","","","","","","","","","",16712190,"Defeat Warlord Kalithresh.","","","","","","","","","","","","","","","",16712190,14805,10,11,0,3657,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (712,0,-1,0,"Warsong Outrider","","","","","","","","","","","","","","","",16712190,"Gain exalted reputation with the Warsong Outriders.","","","","","","","","","","","","","","","",16712190,14804,10,11,0,282,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (778,-1,-1,0,"Explore Duskwood","","","","","","","","","","","","","","","",16712190,"Explore Duskwood, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14777,10,11,0,3533,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (848,-1,-1,0,"Explore Desolace","","","","","","","","","","","","","","","",16712190,"Explore Desolace, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14778,10,11,0,3530,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (878,-1,-1,0,"One That Didn\\'t Get Away","","","","","","","","","","","","","","","",16712190,"Catch one of the rare fish in the list below.","","","","","","","","","","","","","","","",16712190,171,10,11,0,2918,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (900,-1,-1,0,"The Czar of Sporeggar","","","","","","","","","","","","","","","",16712190,"Earn exalted status with Sporeggar.","","","","","","","","","","","","","","","",16712190,14865,15,11,0,2920,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (911,-1,-1,0,"Elders of Kalimdor","","","","","","","","","","","","","","","",16712190,"Honor the Elders which are located in Kalimdor.","","","","","","","","","","","","","","","",16712190,160,10,11,0,2218,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (948,1,-1,0,"Ambassador of the Alliance","","","","","","","","","","","","","","","",16712190,"Earn exalted reputation with 5 home cities.","","","","","","","","","","","","","","","",16712190,201,10,11,0,3375,"Title Reward: Ambassador","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (975,-1,-1,974,"200 Daily Quests Complete","","","","","","","","","","","","","","","",16712190,"Complete 200 daily quests.","","","","","","","","","","","","","","","",16712190,96,10,11,0,3426,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1012,1,-1,0,"The Winds of the North","","","","","","","","","","","","","","","",16712190,"Gain exalted reputation with the Alliance Vanguard.","","","","","","","","","","","","","","","",16712190,14866,20,11,0,2413,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1035,1,-1,0,"Desecration of the Horde","","","","","","","","","","","","","","","",16712190,"Complete the Extinguishing Eastern Kingdoms, Kalimdor and Outland achievements.","","","","","","","","","","","","","","","",16712190,161,10,11,0,1920,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1078,-1,540,0,"Warchief Kargath Bladefist kills (The Shattered Halls)","","","","","","","","","","","","","","","",16712190,"Warchief Kargath Bladefist kills (The Shattered Halls)","","","","","","","","","","","","","","","",16712190,14822,5,11,1,1962,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1100,-1,469,0,"Nefarian kills (Blackwing Lair)","","","","","","","","","","","","","","","",16712190,"Nefarian kills (Blackwing Lair)","","","","","","","","","","","","","","","",16712190,14821,5,11,1,1699,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1114,-1,-1,0,"Arathi Basin Honorable Kills","","","","","","","","","","","","","","","",16712190,"Arathi Basin Honorable Kills","","","","","","","","","","","","","","","",16712190,136,0,11,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1146,-1,-1,0,"Gold spent on travel","","","","","","","","","","","","","","","",16712190,"Gold spent on travel","","","","","","","","","","","","","","","",16712190,140,0,11,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1195,-1,-1,0,"Shadow of the Betrayer","","","","","","","","","","","","","","","",16712190,"Complete 90 quests in Shadowmoon Valley.","","","","","","","","","","","","","","","",16712190,14862,10,11,0,3584,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1235,-1,608,0,"Cyanigosa kills (The Violet Hold)","","","","","","","","","","","","","","","",16712190,"Cyanigosa kills (The Violet Hold)","","","","","","","","","","","","","","","",16712190,14823,5,11,1,1955,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1303,-1,-1,0,"Elixir consumed most","","","","","","","","","","","","","","","",16712190,"Elixir consumed most","","","","","","","","","","","","","","","",16712190,145,0,11,17,1,"","","","","","","","","","","","","","","","",4278125036,0,923);
INSERT INTO `Achievement` VALUES (1496,-1,-1,0,"Arathi Basin Killing Blows","","","","","","","","","","","","","","","",16712190,"Arathi Basin Killing Blows","","","","","","","","","","","","","","","",16712190,137,0,11,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1538,-1,-1,0,"Highest Herbalism skill","","","","","","","","","","","","","","","",16712190,"Highest Herbalism skill","","","","","","","","","","","","","","","",16712190,173,0,11,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1547,-1,-1,0,"Dalaran Sewers matches","","","","","","","","","","","","","","","",16712190,"Dalaran Sewers matches","","","","","","","","","","","","","","","",16712190,152,0,11,1,4,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1549,-1,607,0,"Strand of the Ancients battles","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16775166,153,0,11,1,1,"","","","","","","","","","","","","","","","",2080309742,0,0);
INSERT INTO `Achievement` VALUES (1684,1,-1,0,"Brewmaster","","","","","","","","","","","","","","","",16712190,"Complete the Brewfest achievements listed below.","","","","","","","","","","","","","","","",16712190,155,10,11,0,3697,"Title Reward: Brewmaster","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (1686,1,-1,0,"Bros. Before Ho Ho Ho\\'s","","","","","","","","","","","","","","","",16712190,"Use Mistletoe on the Alliance \\"Brothers\\" during the Feast of Winter Veil.","","","","","","","","","","","","","","","",16712190,156,10,11,0,1793,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1697,1,-1,0,"Nation of Adoration","","","","","","","","","","","","","","","",16712190,"Complete the Lovely Charm Bracelet daily quest for each Alliance capital.","","","","","","","","","","","","","","","",16712190,187,10,11,0,3192,"","","","","","","","","","","","","","","","",2063532524,0,0);
INSERT INTO `Achievement` VALUES (1763,-1,607,0,"Artillery Veteran","","","","","","","","","","","","","","","",16712190,"Destroy 100 vehicles using a turret.","","","","","","","","","","","","","","","",16712190,14881,10,11,0,2244,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1768,-1,-1,0,"Lich King 25-player raids completed (final boss killed)","","","","","","","","","","","","","","","",16712190,"Lich King 25-player raids completed (final boss killed)","","","","","","","","","","","","","","","",16712190,14807,0,11,9,1,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1779,-1,-1,1778,"The Northrend Gourmet","","","","","","","","","","","","","","","",16712190,"Cook 45 of the Northrend recipes listed below.","","","","","","","","","","","","","","","",16712190,170,10,11,0,3213,"","","","","","","","","","","","","","","","",2130641388,45,1777);
INSERT INTO `Achievement` VALUES (1858,-1,533,0,"Arachnophobia (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Maexxna in Naxxramas within 20 minutes of Anub\\'Rekhan\\'s death in 10-player mode.","","","","","","","","","","","","","","","",16712190,14922,10,11,0,3515,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1859,-1,533,0,"Arachnophobia (25 player)","","","","","","","","","","","","","","","",16712190,"Kill Maexxna in Naxxramas within 20 minutes of Anub\\'Rekhan\\'s death in 25-player mode.","","","","","","","","","","","","","","","",16712190,14923,10,11,0,3515,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2085,-1,-1,0,"50 Stone Keeper\\'s Shards","","","","","","","","","","","","","","","",16712190,"Loot 50 Stone Keeper\\'s Shards.","","","","","","","","","","","","","","","",16712190,14901,10,11,0,3448,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2218,-1,-1,0,"Most deadly Lich King 25-player raid boss","","","","","","","","","","","","","","","",16712190,"Most deadly Lich King 25-player raid boss","","","","","","","","","","","","","","","",16712190,125,0,11,17,1,"","","","","","","","","","","","","","","","",2080309740,0,324);
INSERT INTO `Achievement` VALUES (2257,-1,-1,2256,"Frostbitten","","","","","","","","","","","","","","","",16712190,"Kill all of the extremely rare and hard to find Northrend creatures listed below.","","","","","","","","","","","","","","","",16712190,14780,25,11,0,3638,"","","","","","","","","","","","","","","","",2130641388,0,2256);
INSERT INTO `Achievement` VALUES (2422,-1,-1,0,"Shake Your Bunny-Maker","","","","","","","","","","","","","","","",16712190,"Use Spring Flowers to place rabbit ears upon females of at least 18th level.","","","","","","","","","","","","","","","",16712190,159,10,11,0,1216,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2779,1,-1,0,"Champion of Gnomeregan","","","","","","","","","","","","","","","",16712190,"Earn the right to represent the Gnomeregan Exiles in the Argent Tournament.","","","","","","","","","","","","","","","",16712190,14941,10,11,0,3799,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2865,-1,603,0,"Mimiron victories (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,"Mimiron victories (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,14963,10,11,1,1700,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2913,-1,603,0,"Orbital Bombardment (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Flame Leviathan with at least 1 Orbital Defense System active in 10-player mode.","","","","","","","","","","","","","","","",16712190,14961,10,11,0,554,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2918,-1,603,0,"Orbital Bombardment (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat Flame Leviathan with 1 Orbital Defense System active in 25-player mode.","","","","","","","","","","","","","","","",16712190,14962,10,11,0,554,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (3582,-1,-1,0,"Terokkar Turkey Time","","","","","","","","","","","","","","","",16712190,"Defeat Talon King Ikiss while wearing a Pilgrim\\'s Hat and either a Pilgrim\\'s Dress, Robe, or Attire.","","","","","","","","","","","","","","","",16712190,14981,10,11,0,3631,"","","","","","","","","","","","","","","","",16775150,0,0);
INSERT INTO `Achievement` VALUES (3810,-1,-1,3809,"A Tribute to Insanity (10 player)","","","","","","","","","","","","","","","",16712190,"In the Trial of the Grand Crusader, reach a Tribute Chest with 50 attempts remaining in 10-player mode.","","","","","","","","","","","","","","","",16712190,15001,10,11,0,3916,"","","","","","","","","","","","","","","","",16718845,0,0);
INSERT INTO `Achievement` VALUES (3819,-1,-1,3818,"A Tribute to Insanity (25 player)","","","","","","","","","","","","","","","",16712190,"In the Trial of the Grand Crusader, reach a Tribute Chest with 50 attempts remaining in 25-player mode.","","","","","","","","","","","","","","","",16712190,15002,10,11,0,3916,"","","","","","","","","","","","","","","","",16718845,0,0);
INSERT INTO `Achievement` VALUES (3841,-1,-1,3840,"100 Dungeon & Raid Emblems","","","","","","","","","","","","","","","",16712190,"Loot 100 Emblems of Heroism, Valor, Conquest, Triumph or Frost.","","","","","","","","","","","","","","","",16712190,168,10,11,136,1950,"","","","","","","","","","","","","","","","",16718847,0,0);
INSERT INTO `Achievement` VALUES (3850,-1,628,0,"Mowed Down","","","","","","","","","","","","","","","",16712190,"In Isle of Conquest, destroy 10 vehicles and 100 players with turrets.","","","","","","","","","","","","","","","",16712190,15003,10,11,0,3435,"","","","","","","","","","","","","","","","",16718847,0,0);
INSERT INTO `Achievement` VALUES (4022,-1,-1,0,"Victories over Argent Confessor Paletress (Trial of the Champion)","","","","","","","","","","","","","","","",16712190,"Victories over Argent Confessor Paletress (Trial of the Champion)","","","","","","","","","","","","","","","",16712190,15021,0,11,1,1,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4532,-1,-1,0,"Fall of the Lich King (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat every boss in Icecrown Citadel in 10-player mode.","","","","","","","","","","","","","","","",16712190,15041,25,11,0,4157,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4608,-1,-1,0,"Fall of the Lich King (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat every boss in Icecrown Citadel in 25-player mode.","","","","","","","","","","","","","","","",16712190,15042,25,11,0,4157,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4722,-1,-1,0,"Falric kills (Halls of Reflection)","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16712188,15062,0,11,1,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (40,-1,-1,0,"Icecrown: The Final Goal","","","","","","","","","","","","","","","",16712190,"Complete 140 quests in Icecrown.","","","","","","","","","","","","","","","",16712190,14863,10,12,0,3474,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (211,-1,566,0,"Storm Glory","","","","","","","","","","","","","","","",16712190,"While your team holds 4 of the bases in Eye of the Storm, personally grab the flag and capture it.","","","","","","","","","","","","","","","",16712190,14803,10,12,0,3508,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (246,1,-1,0,"Know Thy Enemy","","","","","","","","","","","","","","","",16712190,"Get an honorable, killing blow on five different races.","","","","","","","","","","","","","","","",16712190,95,10,12,0,245,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (283,-1,-1,0,"The Masquerade","","","","","","","","","","","","","","","",16712190,"Get transformed by the Hallowed Wands listed below.","","","","","","","","","","","","","","","",16712190,158,10,12,0,3513,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (405,-1,-1,403,"Three\\'s Company: 2000","","","","","","","","","","","","","","","",16712190,"Earn a 2000 personal rating in the 3v3 bracket of the arena at level 80.","","","","","","","","","","","","","","","",16712190,165,10,12,0,3048,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (479,-1,595,0,"The Culling of Stratholme","","","","","","","","","","","","","","","",16712190,"Defeat the bosses in Caverns of Time: Stratholme.","","","","","","","","","","","","","","","",16712190,14806,10,12,0,3248,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (500,-1,595,0,"Heroic: The Culling of Stratholme","","","","","","","","","","","","","","","",16712190,"Defeat the Caverns of Time: Stratholme bosses on Heroic Difficulty.","","","","","","","","","","","","","","","",16712190,14921,10,12,0,3249,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (639,-1,209,0,"Zul\\'Farrak","","","","","","","","","","","","","","","",16712190,"Defeat Chief Ukorz Sandscalp.","","","","","","","","","","","","","","","",16712190,14808,10,12,0,3687,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (657,-1,-1,0,"The Shattered Halls","","","","","","","","","","","","","","","",16712190,"Defeat Warchief Kargath Bladefist.","","","","","","","","","","","","","","","",16712190,14805,10,12,0,3827,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (710,0,-1,0,"The Defiler","","","","","","","","","","","","","","","",16712190,"Gain exalted reputation with The Forsaken Defilers.","","","","","","","","","","","","","","","",16712190,14802,10,12,0,2847,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (713,1,-1,0,"Silverwing Sentinel","","","","","","","","","","","","","","","",16712190,"Gain exalted reputation with the Silverwing Sentinels.","","","","","","","","","","","","","","","",16712190,14804,10,12,0,131,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (752,-1,-1,0,"Deaths in Naxxramas","","","","","","","","","","","","","","","",16712190,"Deaths in Naxxramas","","","","","","","","","","","","","","","",16712190,125,0,12,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (772,-1,-1,0,"Explore Hillsbrad Foothills","","","","","","","","","","","","","","","",16712190,"Explore Hillsbrad Foothills, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14777,10,12,0,3555,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (850,-1,-1,0,"Explore Dustwallow Marsh","","","","","","","","","","","","","","","",16712190,"Explore Dustwallow Marsh, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14778,10,12,0,3534,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (873,0,30,0,"Frostwolf Perfection","","","","","","","","","","","","","","","",16712190,"Win Alterac Valley without losing a tower or captain. You must also control all of the Alliance\\'s towers.","","","","","","","","","","","","","","","",16712190,14801,20,12,0,2898,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (903,-1,-1,0,"Shattrath Divided","","","","","","","","","","","","","","","",16712190,"Earn exalted status with The Scryers or The Aldor.","","","","","","","","","","","","","","","",16712190,14865,10,12,0,2174,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (942,1,-1,0,"The Diplomat","","","","","","","","","","","","","","","",16712190,"Raise your reputation level from unfriendly to exalted with Timbermaw Hold, Sporeggar and the Kurenai.","","","","","","","","","","","","","","","",16712190,201,25,12,0,2737,"Title Reward: The Diplomat","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (976,-1,-1,975,"500 Daily Quests Complete","","","","","","","","","","","","","","","",16712190,"Complete 500 daily quests.","","","","","","","","","","","","","","","",16712190,96,10,12,0,3427,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1025,0,-1,0,"Flame Keeper of Eastern Kingdoms","","","","","","","","","","","","","","","",16712190,"Honor the flames of Eastern Kingdoms.","","","","","","","","","","","","","","","",16712190,161,10,12,0,1923,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1079,-1,554,0,"Pathaleon the Calculator kills (The Mechanar)","","","","","","","","","","","","","","","",16712190,"Pathaleon the Calculator kills (The Mechanar)","","","","","","","","","","","","","","","",16712190,14822,5,12,1,2529,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1101,-1,531,0,"C\\'Thun kills (Temple of Ahn\\'Qiraj)","","","","","","","","","","","","","","","",16712190,"C\\'Thun kills (Temple of Ahn\\'Qiraj)","","","","","","","","","","","","","","","",16712190,14821,5,12,1,1826,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1115,-1,-1,0,"Warsong Gulch Honorable Kills","","","","","","","","","","","","","","","",16712190,"Warsong Gulch Honorable Kills","","","","","","","","","","","","","","","",16712190,136,0,12,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1147,-1,-1,0,"Gold spent at barber shops","","","","","","","","","","","","","","","",16712190,"Gold spent at barber shops","","","","","","","","","","","","","","","",16712190,140,0,12,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1176,-1,-1,0,"Got My Mind On My Money","","","","","","","","","","","","","","","",16712190,"Loot 100 gold.","","","","","","","","","","","","","","","",16712190,92,10,12,0,2992,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1275,-1,-1,0,"Bombs Away","","","","","","","","","","","","","","","",16712190,"Complete the Fires Over Skettis quest in under 2 minutes 15 seconds while not in a group.","","","","","","","","","","","","","","","",16712190,14862,10,12,0,2505,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1304,-1,-1,0,"Different elixirs used","","","","","","","","","","","","","","","",16712190,"Different elixirs used","","","","","","","","","","","","","","","",16712190,145,0,12,33,1,"","","","","","","","","","","","","","","","",4278125036,0,923);
INSERT INTO `Achievement` VALUES (1396,-1,571,0,"Elders of Northrend","","","","","","","","","","","","","","","",16712190,"Honor the Elders which are located in Northrend.","","","","","","","","","","","","","","","",16712190,160,10,12,0,2218,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1404,-1,-1,0,"Realm First! Level 80 Gnome","","","","","","","","","","","","","","","",16712190,"First gnome on the realm to achieve level 80.","","","","","","","","","","","","","","","",16712190,81,0,12,256,3283,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1467,-1,-1,0,"Lich King 5-player bosses killed","","","","","","","","","","","","","","","",16712190,"Lich King 5-player bosses killed","","","","","","","","","","","","","","","",16712190,14807,10,12,9,2813,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1497,-1,-1,0,"Warsong Gulch Killing Blows","","","","","","","","","","","","","","","",16712190,"Warsong Gulch Killing Blows","","","","","","","","","","","","","","","",16712190,137,0,12,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1509,-1,608,0,"Cyanigosa kills (Heroic Violet Hold)","","","","","","","","","","","","","","","",16712190,"Cyanigosa kills (Heroic Violet Hold)","","","","","","","","","","","","","","","",16712190,14823,5,12,1,1955,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1539,-1,-1,0,"Highest Inscription skill","","","","","","","","","","","","","","","",16712190,"Highest Inscription skill","","","","","","","","","","","","","","","",16712190,173,0,12,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1548,-1,-1,0,"Dalaran Sewers victories","","","","","","","","","","","","","","","",16712190,"Dalaran Sewers victories","","","","","","","","","","","","","","","",16712190,152,0,12,1,4,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1550,-1,607,0,"Strand of the Ancients victories","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16775166,153,0,12,1,1,"","","","","","","","","","","","","","","","",2080309742,0,0);
INSERT INTO `Achievement` VALUES (1656,1,-1,0,"Hallowed Be Thy Name","","","","","","","","","","","","","","","",16712190,"Complete the Hallow\\'s End achievements listed below.","","","","","","","","","","","","","","","",16712190,155,10,12,0,3514,"Title Reward: The Hallowed","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (1688,-1,-1,0,"The Winter Veil Gourmet","","","","","","","","","","","","","","","",16712190,"During the Feast of Winter Veil, use your culinary expertise to produce a Gingerbread Cookie, Egg Nog and Hot Apple Cider.","","","","","","","","","","","","","","","",16712190,156,10,12,0,3191,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1698,0,-1,0,"Nation of Adoration","","","","","","","","","","","","","","","",16712190,"Complete the Lovely Charm Bracelet daily quest for each Horde capital.","","","","","","","","","","","","","","","",16712190,187,10,12,0,3192,"","","","","","","","","","","","","","","","",2063532524,0,0);
INSERT INTO `Achievement` VALUES (1836,-1,-1,0,"Old Crafty","","","","","","","","","","","","","","","",16712190,"Fish up Old Crafty in Orgrimmar.","","","","","","","","","","","","","","","",16712190,171,10,12,0,2918,"","","","","","","","","","","","","","","","",2113864172,1,0);
INSERT INTO `Achievement` VALUES (1856,-1,533,0,"Make Quick Werk Of Him (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Patchwerk in Naxxramas in 3 minutes or less in 10-player mode.","","","","","","","","","","","","","","","",16712190,14922,10,12,0,313,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1857,-1,533,0,"Make Quick Werk Of Him (25 player)","","","","","","","","","","","","","","","",16712190,"Kill Patchwerk in Naxxramas in 3 minutes or less in 25-player mode.","","","","","","","","","","","","","","","",16712190,14923,10,12,0,97,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1998,-1,-1,0,"Dalaran Cooking Award","","","","","","","","","","","","","","","",16712190,"Obtain a Dalaran Cooking Award.","","","","","","","","","","","","","","","",16712190,170,10,12,0,2468,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (2082,-1,-1,0,"Ice Mammoth","","","","","","","","","","","","","","","",16712190,"Obtain an Ice Mammoth.","","","","","","","","","","","","","","","",16712190,14866,10,12,0,3446,"","","","","","","","","","","","","","","","",2080309740,1,0);
INSERT INTO `Achievement` VALUES (2086,-1,-1,2085,"100 Stone Keeper\\'s Shards","","","","","","","","","","","","","","","",16712190,"Loot 100 Stone Keeper\\'s Shards.","","","","","","","","","","","","","","","",16712190,14901,10,12,0,3448,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2189,-1,607,0,"Artillery Expert","","","","","","","","","","","","","","","",16712190,"Destroy 5 vehicles using a turret in a single battle.","","","","","","","","","","","","","","","",16712190,14881,10,12,0,1617,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (2436,-1,-1,0,"Desert Rose","","","","","","","","","","","","","","","",16712190,"Use Spring Robes to plant a flower in each of the deserts listed below.","","","","","","","","","","","","","","","",16712190,159,10,12,0,3060,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2762,1,-1,2779,"Exalted Champion of Gnomeregan","","","","","","","","","","","","","","","",16712190,"Earn exalted status with and the right to represent the Gnomeregan Exiles in the Argent Tournament.","","","","","","","","","","","","","","","",16712190,14941,10,12,0,3799,"Title Reward: of Gnomeregan","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (2866,-1,603,0,"General Vezax kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,"General Vezax kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,14963,10,12,1,1700,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2914,-1,603,2913,"Orbital Devastation (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Flame Leviathan with at least 2 Orbital Defense Systems active in 10-player mode.","","","","","","","","","","","","","","","",16712190,14961,10,12,0,287,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2916,-1,603,2918,"Orbital Devastation (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat Flame Leviathan with 2 Orbital Defense Systems active in 25-player mode.","","","","","","","","","","","","","","","",16712190,14962,10,12,0,287,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (3578,-1,-1,0,"The Turkinator","","","","","","","","","","","","","","","",16712190,"Hunt enough Wild Turkeys quickly enough to gain Turkey Triumph.","","","","","","","","","","","","","","","",16712190,14981,10,12,0,2221,"","","","","","","","","","","","","","","","",16775150,0,0);
INSERT INTO `Achievement` VALUES (3842,-1,-1,3841,"250 Dungeon & Raid Emblems","","","","","","","","","","","","","","","",16712190,"Loot 250 Emblems of Heroism, Valor, Conquest, Triumph or Frost.","","","","","","","","","","","","","","","",16712190,168,10,12,136,1950,"","","","","","","","","","","","","","","","",16718844,0,0);
INSERT INTO `Achievement` VALUES (3852,-1,628,0,"Cut the Blue Wire... No the Red Wire!","","","","","","","","","","","","","","","",16712190,"In Isle of Conquest, disarm 25 bombs.","","","","","","","","","","","","","","","",16712190,15003,10,12,0,355,"","","","","","","","","","","","","","","","",16718847,0,0);
INSERT INTO `Achievement` VALUES (4023,-1,-1,0,"Victories over Argent Confessor Paletress (Heroic Trial of the Champion)","","","","","","","","","","","","","","","",16712190,"Victories over Argent Confessor Paletress (Heroic Trial of the Champion)","","","","","","","","","","","","","","","",16712190,15021,0,12,1,1,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4080,-1,-1,3810,"A Tribute to Dedicated Insanity","","","","","","","","","","","","","","","",16712190,"Meet the criteria for A Tribute to Insanity without any raid member having used an item only obtainable from 25-player Coliseum, or any more powerful item.","","","","","","","","","","","","","","","",16712190,15001,10,12,0,3805,"Title: Argent Defender","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (4636,-1,-1,4532,"Heroic: Fall of the Lich King (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat every boss in Icecrown Citadel in 10-player Heroic mode.","","","","","","","","","","","","","","","",16712190,15041,25,12,0,4157,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4637,-1,-1,4608,"Heroic: Fall of the Lich King (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat every boss in Icecrown Citadel in 25-player Heroic mode.","","","","","","","","","","","","","","","",16712190,15042,25,12,0,4157,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (4723,-1,-1,0,"Falric kills (Heroic Halls of Reflection)","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16712188,15062,0,12,5,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (52,-1,489,0,"Warsong Gulch battles","","","","","","","","","","","","","","","",16712190,"Warsong Gulch battles","","","","","","","","","","","","","","","",16712190,153,0,13,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (101,-1,-1,0,"Ring of Trials matches","","","","","","","","","","","","","","","",16712190,"Ring of Trials matches","","","","","","","","","","","","","","","",16712190,152,0,13,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (292,-1,-1,0,"Sinister Calling","","","","","","","","","","","","","","","",16712190,"Obtain a Sinister Squashling pet and Hallowed Helm.","","","","","","","","","","","","","","","",16712190,158,10,13,0,3511,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (561,-1,-1,0,"D.E.H.T.A\\'s Little P.I.T.A.","","","","","","","","","","","","","","","",16712190,"Uphold D.E.H.T.A\\'s beliefs by completing all of the quests up to and including the Assassination of Harold Lane.","","","","","","","","","","","","","","","",16712190,14863,10,13,0,3476,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (582,-1,30,0,"Alterac Valley All-Star","","","","","","","","","","","","","","","",16712190,"In a single Alterac Valley battle, assault a graveyard, defend a graveyard, assault a tower, defend a tower and slay someone in the Field of Strife.","","","","","","","","","","","","","","","",16712190,14801,20,13,0,2268,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (640,-1,-1,0,"Maraudon","","","","","","","","","","","","","","","",16712190,"Defeat Princess Theradras.","","","","","","","","","","","","","","","",16712190,14808,10,13,0,3689,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (658,-1,-1,0,"The Mechanar","","","","","","","","","","","","","","","",16712190,"Defeat Pathaleon the Calculator.","","","","","","","","","","","","","","","",16712190,14805,10,13,0,3688,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (711,1,-1,0,"Knight of Arathor","","","","","","","","","","","","","","","",16712190,"Gain exalted reputation with The League of Arathor.","","","","","","","","","","","","","","","",16712190,14802,10,13,0,1934,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (782,-1,-1,0,"Explore Swamp of Sorrows","","","","","","","","","","","","","","","",16712190,"Explore Swamp of Sorrows, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14777,10,13,0,3569,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (811,-1,-1,0,"Flasks consumed","","","","","","","","","","","","","","","",16712190,"Flasks consumed","","","","","","","","","","","","","","","",16712190,145,0,13,9,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (849,-1,-1,0,"Explore Feralas","","","","","","","","","","","","","","","",16712190,"Explore Feralas, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14778,10,13,0,3539,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (910,-1,-1,0,"Elders of the Dungeons","","","","","","","","","","","","","","","",16712190,"Honor the Elders which are located inside the dungeons.","","","","","","","","","","","","","","","",16712190,160,10,13,0,2218,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (943,0,-1,0,"The Diplomat","","","","","","","","","","","","","","","",16712190,"Raise your reputation level from unfriendly to exalted with Timbermaw Hold, Sporeggar and The Mag\\'har.","","","","","","","","","","","","","","","",16712190,201,25,13,0,2737,"Title Reward: The Diplomat","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (958,-1,-1,0,"Sworn to the Deathsworn","","","","","","","","","","","","","","","",16712190,"Earn exalted status with the Ashtongue Deathsworn.","","","","","","","","","","","","","","","",16712190,14865,10,13,0,3696,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (977,-1,-1,976,"1000 Daily Quests Complete","","","","","","","","","","","","","","","",16712190,"Complete 1000 daily quests.","","","","","","","","","","","","","","","",16712190,96,10,13,0,3428,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1005,0,-1,0,"Know Thy Enemy","","","","","","","","","","","","","","","",16712190,"Get an honorable, killing blow on five different races.","","","","","","","","","","","","","","","",16712190,95,10,13,0,245,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1026,0,-1,0,"Flame Keeper of Kalimdor","","","","","","","","","","","","","","","",16712190,"Honor the flames of Kalimdor.","","","","","","","","","","","","","","","",16712190,161,10,13,0,1923,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1080,-1,553,0,"Warp Splinter kills (The Botanica)","","","","","","","","","","","","","","","",16712190,"Warp Splinter kills (The Botanica)","","","","","","","","","","","","","","","",16712190,14822,5,13,1,2794,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1112,-1,-1,0,"Eye of the Storm Honorable Kills","","","","","","","","","","","","","","","",16712190,"Eye of the Storm Honorable Kills","","","","","","","","","","","","","","","",16712190,136,0,13,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1148,-1,-1,0,"Gold spent on postage","","","","","","","","","","","","","","","",16712190,"Gold spent on postage","","","","","","","","","","","","","","","",16712190,140,0,13,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1160,-1,-1,405,"Three\\'s Company: 2200","","","","","","","","","","","","","","","",16712190,"Earn a 2200 personal rating in the 3v3 bracket of the arena at level 80.","","","","","","","","","","","","","","","",16712190,165,10,13,0,3047,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1171,-1,-1,0,"Master of Eye of the Storm","","","","","","","","","","","","","","","",16712190,"Complete the Eye of the Storm achievements listed below.","","","","","","","","","","","","","","","",16712190,14803,25,13,0,1931,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1177,-1,-1,1176,"Got My Mind On My Money","","","","","","","","","","","","","","","",16712190,"Loot 1,000 gold.","","","","","","","","","","","","","","","",16712190,92,10,13,0,2802,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1236,-1,604,0,"Gal\\'darah kills (Gundrak)","","","","","","","","","","","","","","","",16712190,"Gal\\'darah kills (Gundrak)","","","","","","","","","","","","","","","",16712190,14823,5,13,1,2914,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1259,-1,489,0,"Not So Fast","","","","","","","","","","","","","","","",16712190,"In Warsong Gulch, kill a player who is under the effects of the speed power-up.","","","","","","","","","","","","","","","",16712190,14804,10,13,0,517,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1276,-1,-1,0,"Blade\\'s Edge Bomberman","","","","","","","","","","","","","","","",16712190,"Complete the Bomb Them Again! quest in under 2 minutes 15 seconds while not in a group.","","","","","","","","","","","","","","","",16712190,14862,10,13,0,1696,"","","","","","","","","","","","","","","","",2113864174,0,0);
INSERT INTO `Achievement` VALUES (1405,-1,-1,0,"Realm First! Level 80 Blood Elf","","","","","","","","","","","","","","","",16712190,"First blood elf on the realm to achieve level 80.","","","","","","","","","","","","","","","",16712190,81,0,13,256,3323,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1485,-1,-1,0,"Lich King 5-player different bosses killed","","","","","","","","","","","","","","","",16712190,"Lich King 5-player different bosses killed","","","","","","","","","","","","","","","",16712190,14807,0,13,33,1,"","","","","","","","","","","","","","","","",2080309740,0,1467);
INSERT INTO `Achievement` VALUES (1498,-1,-1,0,"Eye of the Storm Killing Blows","","","","","","","","","","","","","","","",16712190,"Eye of the Storm Killing Blows","","","","","","","","","","","","","","","",16712190,137,0,13,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1657,0,-1,0,"Hallowed Be Thy Name","","","","","","","","","","","","","","","",16712190,"Complete the Hallow\\'s End achievements listed below.","","","","","","","","","","","","","","","",16712190,155,10,13,0,3514,"Title Reward: The Hallowed","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (1689,-1,-1,0,"He Knows If You\\'ve Been Naughty","","","","","","","","","","","","","","","",16712190,"Open one of the presents underneath the Winter Veil tree once they are available.","","","","","","","","","","","","","","","",16712190,156,10,13,0,1859,"","","","","","","","","","","","","","","","",2063532524,1,0);
INSERT INTO `Achievement` VALUES (1700,-1,-1,0,"Perma-Peddle","","","","","","","","","","","","","","","",16712190,"Obtain a permanent Peddlefeet pet by procuring a Truesilver Shafted Arrow.","","","","","","","","","","","","","","","",16712190,187,10,13,0,288,"","","","","","","","","","","","","","","","",2063532524,1,0);
INSERT INTO `Achievement` VALUES (1735,-1,-1,0,"Inscriptions learned","","","","","","","","","","","","","","","",16712190,"Inscriptions learned","","","","","","","","","","","","","","","",16712190,173,0,13,1,4,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (1764,-1,607,0,"Drop it!","","","","","","","","","","","","","","","",16712190,"Kill 100 players carrying seaforium.","","","","","","","","","","","","","","","",16712190,14881,10,13,0,454,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1837,-1,-1,0,"Old Ironjaw","","","","","","","","","","","","","","","",16712190,"Fish up Old Ironjaw in Ironforge.","","","","","","","","","","","","","","","",16712190,171,10,13,0,1881,"","","","","","","","","","","","","","","","",2113864172,1,0);
INSERT INTO `Achievement` VALUES (1996,-1,533,0,"The Safety Dance (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Heigan the Unclean in Naxxramas without anyone in the raid dying in 10 player mode.","","","","","","","","","","","","","","","",16712190,14922,10,13,0,2116,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (1999,-1,-1,1998,"10 Dalaran Cooking Awards","","","","","","","","","","","","","","","",16712190,"Obtain 10 Dalaran Cooking Awards.","","","","","","","","","","","","","","","",16712190,170,10,13,0,2468,"","","","","","","","","","","","","","","","",2130641388,0,0);
INSERT INTO `Achievement` VALUES (2083,-1,-1,0,"Grand Ice Mammoth","","","","","","","","","","","","","","","",16712190,"Obtain a Grand Ice Mammoth.","","","","","","","","","","","","","","","",16712190,14866,10,13,0,3446,"","","","","","","","","","","","","","","","",2080309740,1,0);
INSERT INTO `Achievement` VALUES (2087,-1,-1,2086,"250 Stone Keeper\\'s Shards","","","","","","","","","","","","","","","",16712190,"Loot 250 Stone Keeper\\'s Shards.","","","","","","","","","","","","","","","",16712190,14901,10,13,0,3448,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2139,-1,533,0,"The Safety Dance (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat Heigan the Unclean in Naxxramas without anyone in the raid dying in 25-player mode.","","","","","","","","","","","","","","","",16712190,14923,10,13,0,2116,"","","","","","","","","","","","","","","","",2063532524,0,0);
INSERT INTO `Achievement` VALUES (2576,-1,-1,0,"Blushing Bride","","","","","","","","","","","","","","","",16712190,"Kiss someone wearing an Elegant Dress while wearing a White Tuxedo Shirt and Black Tuxedo Pants.","","","","","","","","","","","","","","","",16712190,159,10,13,0,694,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2780,1,-1,0,"Champion of Ironforge","","","","","","","","","","","","","","","",16712190,"Earn the right to represent Ironforge in the Argent Tournament.","","","","","","","","","","","","","","","",16712190,14941,10,13,0,3797,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2869,-1,603,0,"Yogg-Saron kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,"Yogg-Saron kills (Ulduar 10 player)","","","","","","","","","","","","","","","",16712190,14963,10,13,1,1700,"","","","","","","","","","","","","","","","",2113864172,0,0);
INSERT INTO `Achievement` VALUES (2915,-1,603,2914,"Nuked from Orbit (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Flame Leviathan with at least 3 Orbital Defense Systems active in 10-player mode.","","","","","","","","","","","","","","","",16712190,14961,10,13,0,3850,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (2917,-1,603,2916,"Nuked from Orbit (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat Flame Leviathan with 3 Orbital Defense Systems active in 25-player mode.","","","","","","","","","","","","","","","",16712190,14962,10,13,0,3850,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (3516,-1,-1,0,"Deaths in Ulduar","","","","","","","","","","","","","","","",16712190,"Deaths in Ulduar","","","","","","","","","","","","","","","",16712190,125,0,13,1,1,"","","","","","","","","","","","","","","","",16775150,0,0);
INSERT INTO `Achievement` VALUES (3559,-1,-1,0,"Turkey Lurkey","","","","","","","","","","","","","","","",16712190,"Blast those dirty, sneaking Rogues with your Turkey Shooter.","","","","","","","","","","","","","","","",16712190,14981,10,13,0,3589,"","","","","","","","","","","","","","","","",16775150,0,0);
INSERT INTO `Achievement` VALUES (3778,0,650,0,"Trial of the Champion","","","","","","","","","","","","","","","",16712190,"Defeat the bosses in the Trial of the Champion.","","","","","","","","","","","","","","","",16712190,14806,10,13,0,370,"","","","","","","","","","","","","","","","",16718846,0,0);
INSERT INTO `Achievement` VALUES (3843,-1,-1,3842,"500 Dungeon & Raid Emblems","","","","","","","","","","","","","","","",16712190,"Loot 500 Emblems of Heroism, Valor, Conquest, Triumph or Frost.","","","","","","","","","","","","","","","",16712190,168,10,13,136,1950,"","","","","","","","","","","","","","","","",16718845,0,0);
INSERT INTO `Achievement` VALUES (3853,-1,628,0,"All Over the Isle","","","","","","","","","","","","","","","",16712190,"In a single Isle of Conquest battle, kill a player at each of the following locations:","","","","","","","","","","","","","","","",16712190,15003,10,13,0,4017,"","","","","","","","","","","","","","","","",16718844,0,0);
INSERT INTO `Achievement` VALUES (4024,-1,-1,0,"Victories over Eadric the Pure (Trial of the Champion)","","","","","","","","","","","","","","","",16712190,"Victories over Eadric the Pure (Trial of the Champion)","","","","","","","","","","","","","","","",16712190,15021,0,13,1,1,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4297,0,650,0,"Heroic: Trial of the Champion","","","","","","","","","","","","","","","",16712190,"Defeat the bosses in the Trial of the Champion on Heroic Difficulty.","","","","","","","","","","","","","","","",16712190,14921,10,13,0,370,"","","","","","","","","","","","","","","","",16712172,0,0);
INSERT INTO `Achievement` VALUES (4534,-1,631,0,"Boned (10 player)","","","","","","","","","","","","","","","",16712190,"Defeat Lord Marrowgar without any raid member remaining impaled for more than 8 seconds in 10-player mode.","","","","","","","","","","","","","","","",16712190,15041,10,13,0,4159,"","","","","","","","","","","","","","","","",16712188,1,0);
INSERT INTO `Achievement` VALUES (4610,-1,631,0,"Boned (25 player)","","","","","","","","","","","","","","","",16712190,"Defeat Lord Marrowgar without any raid member remaining impaled for more than 8 seconds in 25-player mode.","","","","","","","","","","","","","","","",16712190,15042,10,13,0,4159,"","","","","","","","","","","","","","","","",16712188,1,0);
INSERT INTO `Achievement` VALUES (4724,-1,-1,0,"Marwyn kills (Halls of Reflection)","","","","","","","","","","","","","","","",16712190,"","","","","","","","","","","","","","","","",16712188,15062,0,13,1,1,"","","","","","","","","","","","","","","","",16712188,0,0);
INSERT INTO `Achievement` VALUES (31,-1,-1,0,"A Simple Re-Quest","","","","","","","","","","","","","","","",16712190,"Complete a daily quest every day for five consecutive days.","","","","","","","","","","","","","","","",16712190,96,10,14,0,3481,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (100,-1,-1,0,"Ring of Trials victories","","","","","","","","","","","","","","","",16712190,"Ring of Trials victories","","","","","","","","","","","","","","","",16712190,152,0,14,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (105,-1,-1,0,"Warsong Gulch victories","","","","","","","","","","","","","","","",16712190,"Warsong Gulch victories","","","","","","","","","","","","","","","",16712190,153,0,14,1,4,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (110,-1,-1,0,"Lich King 5-player boss killed the most","","","","","","","","","","","","","","","",16712190,"Lich King 5-player boss killed the most","","","","","","","","","","","","","","","",16712190,14807,0,14,17,4,"","","","","","","","","","","","","","","","",16712174,0,1467);
INSERT INTO `Achievement` VALUES (203,1,489,0,"Not In My House","","","","","","","","","","","","","","","",16712190,"In a single Warsong Gulch battle, kill 2 flag carriers before they leave the Silverwing Flag Room.","","","","","","","","","","","","","","","",16712190,14804,10,14,0,3583,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (247,-1,-1,0,"Make Love, Not Warcraft","","","","","","","","","","","","","","","",16712190,"Emote /hug on a dead enemy before they release corpse.","","","","","","","","","","","","","","","",16712190,95,10,14,0,1853,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (406,-1,-1,0,"High Five: 1550","","","","","","","","","","","","","","","",16712190,"Earn a 1550 personal rating in the 5v5 bracket of the arena at level 80.","","","","","","","","","","","","","","","",16712190,165,10,14,0,3046,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (547,-1,-1,0,"Veteran of the Wrathgate","","","","","","","","","","","","","","","",16712190,"Complete the Dragonblight quests leading up to and including the Return to Angrathar.","","","","","","","","","","","","","","","",16712190,14863,10,14,0,3475,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (560,-1,-1,0,"Deadliest Catch","","","","","","","","","","","","","","","",16712190,"Fish up Gahz\\'ranka in Zul\\'Gurub using the Mudskunk Lure.","","","","","","","","","","","","","","","",16712190,171,10,14,0,1751,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (583,-1,529,0,"Arathi Basin All-Star","","","","","","","","","","","","","","","",16712190,"Assault and Defend 2 bases in a single Arathi Basin match.","","","","","","","","","","","","","","","",16712190,14802,20,14,0,2729,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (641,-1,-1,0,"Sunken Temple","","","","","","","","","","","","","","","",16712190,"Defeat Shade of Eranikus.","","","","","","","","","","","","","","","",16712190,14808,10,14,0,3690,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (659,-1,-1,0,"The Botanica","","","","","","","","","","","","","","","",16712190,"Defeat Warp Splinter.","","","","","","","","","","","","","","","",16712190,14805,10,14,0,3642,"","","","","","","","","","","","","","","","",16712174,1,0);
INSERT INTO `Achievement` VALUES (706,0,-1,0,"Frostwolf Howler","","","","","","","","","","","","","","","",16712190,"Obtain a Frostwolf Howler.","","","","","","","","","","","","","","","",16712190,14801,10,14,0,2826,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (765,-1,-1,0,"Explore Badlands","","","","","","","","","","","","","","","",16712190,"Explore Badlands, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14777,10,14,0,3546,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (851,-1,-1,0,"Explore Tanaris Desert","","","","","","","","","","","","","","","",16712190,"Explore Tanaris Desert, revealing the covered areas of the world map.","","","","","","","","","","","","","","","",16712190,14778,10,14,0,3577,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (914,-1,-1,0,"Elders of the Horde","","","","","","","","","","","","","","","",16712190,"Honor the Elders which are located in the Horde capital cities.","","","","","","","","","","","","","","","",16712190,160,10,14,0,2218,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (945,-1,-1,0,"The Argent Champion","","","","","","","","","","","","","","","",16712190,"Earn exalted status with the Argent Dawn and the Argent Crusade.","","","","","","","","","","","","","","","",16712190,201,25,14,0,2139,"Title Reward: The Argent Champion","","","","","","","","","","","","","","","",16712190,0,0);
INSERT INTO `Achievement` VALUES (959,-1,-1,0,"The Scale of the Sands","","","","","","","","","","","","","","","",16712190,"Earn exalted status with The Scale of the Sands.","","","","","","","","","","","","","","","",16712190,14865,10,14,0,2937,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (965,0,-1,0,"Tricks and Treats of Kalimdor","","","","","","","","","","","","","","","",16712190,"Visit the Candy Buckets in Kalimdor.","","","","","","","","","","","","","","","",16712190,158,10,14,0,3509,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1027,0,530,0,"Flame Keeper of Outland","","","","","","","","","","","","","","","",16712190,"Honor the flames of Outland.","","","","","","","","","","","","","","","",16712190,161,10,14,0,1923,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1081,-1,552,0,"Harbinger Skyriss kills (The Arcatraz)","","","","","","","","","","","","","","","",16712190,"Harbinger Skyriss kills (The Arcatraz)","","","","","","","","","","","","","","","",16712190,14822,5,14,1,2313,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1150,-1,-1,0,"Gold spent on talent tree respecs","","","","","","","","","","","","","","","",16712190,"Gold spent on talent tree respecs","","","","","","","","","","","","","","","",16712190,140,0,14,1,1,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1178,-1,-1,1177,"Got My Mind On My Money","","","","","","","","","","","","","","","",16712190,"Loot 5,000 gold.","","","","","","","","","","","","","","","",16712190,92,10,14,0,2994,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1262,1,-1,0,"Loremaster of Outland","","","","","","","","","","","","","","","",16712190,"Complete the Outland quest achievements listed below.","","","","","","","","","","","","","","","",16712190,14862,10,14,0,3492,"","","","","","","","","","","","","","","","",2130641390,0,0);
INSERT INTO `Achievement` VALUES (1305,-1,-1,0,"Flask consumed most","","","","","","","","","","","","","","","",16712190,"Flask consumed most","","","","","","","","","","","","","","","",16712190,145,0,14,17,1,"","","","","","","","","","","","","","","","",4278125036,0,811);
INSERT INTO `Achievement` VALUES (1406,-1,-1,0,"Realm First! Level 80 Draenei","","","","","","","","","","","","","","","",16712190,"First draenei on the realm to achieve level 80.","","","","","","","","","","","","","","","",16712190,81,0,14,256,3324,"","","","","","","","","","","","","","","","",16712174,0,0);
INSERT INTO `Achievement` VALUES (1486,-1,-1,0,"Strand of the Ancients Honorable Kills","","","","","","","","","","","","","","","",16712190,"Strand of the Ancients Honorable Kills","","","","","","","","","","","","","","","",16712190,136,0,14,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);
INSERT INTO `Achievement` VALUES (1499,-1,-1,0,"Strand of the Ancients Killing Blows","","","","","","","","","","","","","","","",16712190,"Strand of the Ancients Killing Blows","","","","","","","","","","","","","","","",16712190,137,0,14,1,1,"","","","","","","","","","","","","","","","",2080309740,0,0);