-
Notifications
You must be signed in to change notification settings - Fork 0
/
achievement.exh_en.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 19 columns, instead of 20 in line 1.
1513 lines (1513 loc) · 190 KB
/
achievement.exh_en.csv
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
Index,Category,Name,Description,Points,Title,Item,Icon,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11
0,0,"","",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
1,1,"To Crush Your Enemies I","Defeat 100 enemies.",5,0,0,262,1,11,100,0,0,0,0,0,0,0,3,1
2,1,"To Crush Your Enemies II","Defeat 500 enemies.",5,0,0,262,1,11,500,0,0,0,0,0,0,0,3,2
3,1,"To Crush Your Enemies III","Defeat 1,000 enemies.",10,0,0,262,1,11,1000,0,0,0,0,0,0,0,3,3
4,1,"To Crush Your Enemies IV","Defeat 5,000 enemies.",10,0,0,262,1,11,5000,0,0,0,0,0,0,0,3,4
5,1,"To Crush Your Enemies V","Defeat 10,000 enemies.",10,0,0,262,1,11,10000,0,0,0,0,0,0,0,3,5
6,1,"To Crush Your Enemies VI","Defeat 50,000 enemies.",10,9,0,262,1,11,50000,0,0,0,0,0,0,0,3,6
7,1,"Let the Bodies Hit the Floor","Defeat 100,000 enemies.",30,0,2907,2554,1,11,100000,0,0,0,0,0,0,0,3,7
8,48,"La Noscea Big Game Hunter","Defeat the notorious monsters Barometz, Slippery Sykes, Gluttonous Gertrude, bomb baron, Unknown Soldier, great buffalo, and Old Sixarms.",10,0,0,62904,0,0,0,0,0,0,0,0,0,0,2,0
9,48,"Black Shroud Big Game Hunter","Defeat the notorious monsters Queen Bolete, Alux, the Jackanapes, Sirocco, Phaia, Haughtpox Bloatbelly, and the Prince of Pestilence.",10,0,0,62904,0,0,0,0,0,0,0,0,0,0,2,0
10,48,"Thanalan Big Game Hunter","Defeat the notorious monsters Cactuar Jack, elder mosshorn, Daddy Longlegs, Kokoroon Quickfingers, nest commander, Bardi, and Pyrausta.",10,0,0,62904,0,0,0,0,0,0,0,0,0,0,2,0
11,48,"Coerthas Big Game Hunter","Defeat the notorious monsters Uraeus, Spitfire, and Downy Dunstan.",10,0,0,62904,0,0,0,0,0,0,0,0,0,0,2,0
12,48,"Mor Dhona Big Game Hunter","Defeat the notorious monster Dodore.",10,0,0,62904,0,0,0,0,0,0,0,0,0,0,2,0
13,48,"Shposhae Big Game Hunter","Defeat the notorious monsters Shearing Sheridan, giant remora, and the lone coeurl.",10,0,0,62904,0,0,0,0,0,0,0,0,0,0,2,0
14,48,"Bane of the Tribes","Defeat the notorious beastmen Lozol Totoloq the Decapitator, Flamefist Ahlygg Roh, and 3rd Order Patriarch Zu Ga.",10,0,0,62904,0,0,0,0,0,0,0,0,0,0,2,0
15,48,"Notorious Monster Hunting","Defeat 25 different notorious monsters.",30,10,0,62904,0,0,0,0,0,0,0,0,0,0,2,0
16,48,"Had Me Some Fun","Defeat Ifrit in the Bowl of Embers (Hard).",5,0,0,62912,0,0,0,0,0,0,0,0,0,0,2,0
17,48,"Most Adorable Death Ever","Defeat Good King Moggle Mog XII in Thornmarch (Hard).",5,0,0,62912,0,0,0,0,0,0,0,0,0,0,2,0
18,48,"Where the Wind Blows","Defeat Garuda in the Howling Eye (Hard).",5,0,0,62912,0,0,0,0,0,0,0,0,0,0,2,0
19,10,"Stick Them with the Pointy End I","Achieve gladiator level 10.",5,0,0,30408,3,1,10,0,0,0,0,0,0,0,3,1
20,10,"Stick Them with the Pointy End II","Achieve gladiator level 20.",5,0,0,30408,3,1,20,0,0,0,0,0,0,0,3,2
21,10,"Stick Them with the Pointy End III","Achieve gladiator level 30.",5,0,0,30408,3,1,30,0,0,0,0,0,0,0,3,3
22,10,"Stick Them with the Pointy End IV","Achieve gladiator level 40.",5,0,0,30408,3,1,40,0,0,0,0,0,0,0,3,4
23,10,"Stick Them with the Pointy End V","Achieve gladiator level 50.",5,0,0,30408,3,1,50,0,0,0,0,0,0,0,3,5
24,10,"The Sweet Science I","Achieve pugilist level 10.",5,0,0,31004,3,2,10,0,0,0,0,0,0,0,3,7
25,10,"The Sweet Science II","Achieve pugilist level 20.",5,0,0,31004,3,2,20,0,0,0,0,0,0,0,3,8
26,10,"The Sweet Science III","Achieve pugilist level 30.",5,0,0,31004,3,2,30,0,0,0,0,0,0,0,3,9
27,10,"The Sweet Science IV","Achieve pugilist level 40.",5,0,0,31004,3,2,40,0,0,0,0,0,0,0,3,10
28,10,"The Sweet Science V","Achieve pugilist level 50.",5,0,0,31004,3,2,50,0,0,0,0,0,0,0,3,11
29,10,"An Axe to Grind I","Achieve marauder level 10.",5,0,0,31409,3,3,10,0,0,0,0,0,0,0,3,13
30,10,"An Axe to Grind II","Achieve marauder level 20.",5,0,0,31409,3,3,20,0,0,0,0,0,0,0,3,14
31,10,"An Axe to Grind III","Achieve marauder level 30.",5,0,0,31409,3,3,30,0,0,0,0,0,0,0,3,15
32,10,"An Axe to Grind IV","Achieve marauder level 40.",5,0,0,31409,3,3,40,0,0,0,0,0,0,0,3,16
33,10,"An Axe to Grind V","Achieve marauder level 50.",5,0,0,31409,3,3,50,0,0,0,0,0,0,0,3,17
34,10,"Strong Lance Arm I","Achieve lancer level 10.",5,0,0,31816,3,4,10,0,0,0,0,0,0,0,3,19
35,10,"Strong Lance Arm II","Achieve lancer level 20.",5,0,0,31816,3,4,20,0,0,0,0,0,0,0,3,20
36,10,"Strong Lance Arm III","Achieve lancer level 30.",5,0,0,31816,3,4,30,0,0,0,0,0,0,0,3,21
37,10,"Strong Lance Arm IV","Achieve lancer level 40.",5,0,0,31816,3,4,40,0,0,0,0,0,0,0,3,22
38,10,"Strong Lance Arm V","Achieve lancer level 50.",5,0,0,31816,3,4,50,0,0,0,0,0,0,0,3,23
39,10,"Just Talkin' 'bout Shafts I","Achieve archer level 10.",5,0,0,32204,3,5,10,0,0,0,0,0,0,0,3,25
40,10,"Just Talkin' 'bout Shafts II","Achieve archer level 20.",5,0,0,32204,3,5,20,0,0,0,0,0,0,0,3,26
41,10,"Just Talkin' 'bout Shafts III","Achieve archer level 30.",5,0,0,32204,3,5,30,0,0,0,0,0,0,0,3,27
42,10,"Just Talkin' 'bout Shafts IV","Achieve archer level 40.",5,0,0,32204,3,5,40,0,0,0,0,0,0,0,3,28
43,10,"Just Talkin' 'bout Shafts V","Achieve archer level 50.",5,0,0,32204,3,5,50,0,0,0,0,0,0,0,3,29
44,9,"Mastering War I","Achieve level 50 as a gladiator, pugilist, marauder, archer, and lancer.",20,13,0,2504,2,23,28,33,38,43,0,0,0,0,4,1
45,11,"I Got the Magic Stick I","Achieve conjurer level 10.",5,0,0,32611,3,6,10,0,0,0,0,0,0,0,3,1
46,11,"I Got the Magic Stick II","Achieve conjurer level 20.",5,0,0,32611,3,6,20,0,0,0,0,0,0,0,3,2
47,11,"I Got the Magic Stick III","Achieve conjurer level 30.",5,0,0,32611,3,6,30,0,0,0,0,0,0,0,3,3
48,11,"I Got the Magic Stick IV","Achieve conjurer level 40.",5,0,0,32611,3,6,40,0,0,0,0,0,0,0,3,4
49,11,"I Got the Magic Stick V","Achieve conjurer level 50.",5,0,0,32611,3,6,50,0,0,0,0,0,0,0,3,5
50,11,"Bring Out Your Dead I","Achieve thaumaturge level 10.",5,0,0,32806,3,7,10,0,0,0,0,0,0,0,3,7
51,11,"Bring Out Your Dead II","Achieve thaumaturge level 20.",5,0,0,32806,3,7,20,0,0,0,0,0,0,0,3,8
52,11,"Bring Out Your Dead III","Achieve thaumaturge level 30.",5,0,0,32806,3,7,30,0,0,0,0,0,0,0,3,9
53,11,"Bring Out Your Dead IV","Achieve thaumaturge level 40.",5,0,0,32806,3,7,40,0,0,0,0,0,0,0,3,10
54,11,"Bring Out Your Dead V","Achieve thaumaturge level 50.",5,0,0,32806,3,7,50,0,0,0,0,0,0,0,3,11
55,9,"Mastering Magic I","Achieve level 50 as a conjurer, thaumaturge, and arcanist.",20,14,0,2655,2,49,54,596,0,0,0,0,0,0,4,2
56,9,"A Life of Adventure I","Obtain the achievements “Mastering War I” and “Mastering Magic I.”",30,0,2909,302,2,44,55,0,0,0,0,0,0,0,4,3
57,12,"Knock on Wood I","Achieve carpenter level 10.",5,0,0,35001,3,8,10,0,0,0,0,0,0,0,3,1
58,12,"Knock on Wood II","Achieve carpenter level 20.",5,0,0,35001,3,8,20,0,0,0,0,0,0,0,3,2
59,12,"Knock on Wood III","Achieve carpenter level 30.",5,0,0,35001,3,8,30,0,0,0,0,0,0,0,3,3
60,12,"Knock on Wood IV","Achieve carpenter level 40.",5,0,0,35001,3,8,40,0,0,0,0,0,0,0,3,4
61,12,"Knock on Wood V","Achieve carpenter level 50.",5,0,0,35001,3,8,50,0,0,0,0,0,0,0,3,5
62,12,"Temper, Temper I","Achieve blacksmith level 10.",5,0,0,35106,3,9,10,0,0,0,0,0,0,0,3,7
63,12,"Temper, Temper II","Achieve blacksmith level 20.",5,0,0,35106,3,9,20,0,0,0,0,0,0,0,3,8
64,12,"Temper, Temper III","Achieve blacksmith level 30.",5,0,0,35106,3,9,30,0,0,0,0,0,0,0,3,9
65,12,"Temper, Temper IV","Achieve blacksmith level 40.",5,0,0,35106,3,9,40,0,0,0,0,0,0,0,3,10
66,12,"Temper, Temper V","Achieve blacksmith level 50.",5,0,0,35106,3,9,50,0,0,0,0,0,0,0,3,11
67,12,"The Riddle of Steel I","Achieve armorer level 10.",5,0,0,35203,3,10,10,0,0,0,0,0,0,0,3,13
68,12,"The Riddle of Steel II","Achieve armorer level 20.",5,0,0,35203,3,10,20,0,0,0,0,0,0,0,3,14
69,12,"The Riddle of Steel III","Achieve armorer level 30.",5,0,0,35203,3,10,30,0,0,0,0,0,0,0,3,15
70,12,"The Riddle of Steel IV","Achieve armorer level 40.",5,0,0,35203,3,10,40,0,0,0,0,0,0,0,3,16
71,12,"The Riddle of Steel V","Achieve armorer level 50.",5,0,0,35203,3,10,50,0,0,0,0,0,0,0,3,17
72,12,"Heart of Gold I","Achieve goldsmith level 10.",5,0,0,35301,3,11,10,0,0,0,0,0,0,0,3,19
73,12,"Heart of Gold II","Achieve goldsmith level 20.",5,0,0,35301,3,11,20,0,0,0,0,0,0,0,3,20
74,12,"Heart of Gold III","Achieve goldsmith level 30.",5,0,0,35301,3,11,30,0,0,0,0,0,0,0,3,21
75,12,"Heart of Gold IV","Achieve goldsmith level 40.",5,0,0,35301,3,11,40,0,0,0,0,0,0,0,3,22
76,12,"Heart of Gold V","Achieve goldsmith level 50.",5,0,0,35301,3,11,50,0,0,0,0,0,0,0,3,23
77,12,"Tougher than Leather I","Achieve leatherworker level 10.",5,0,0,35404,3,12,10,0,0,0,0,0,0,0,3,25
78,12,"Tougher than Leather II","Achieve leatherworker level 20.",5,0,0,35404,3,12,20,0,0,0,0,0,0,0,3,26
79,12,"Tougher than Leather III","Achieve leatherworker level 30.",5,0,0,35404,3,12,30,0,0,0,0,0,0,0,3,27
80,12,"Tougher than Leather IV","Achieve leatherworker level 40.",5,0,0,35404,3,12,40,0,0,0,0,0,0,0,3,28
81,12,"Tougher than Leather V","Achieve leatherworker level 50.",5,0,0,35404,3,12,50,0,0,0,0,0,0,0,3,29
82,12,"Smiling, Styling, and Textiling I","Achieve weaver level 10.",5,0,0,35501,3,13,10,0,0,0,0,0,0,0,3,31
83,12,"Smiling, Styling, and Textiling II","Achieve weaver level 20.",5,0,0,35501,3,13,20,0,0,0,0,0,0,0,3,32
84,12,"Smiling, Styling, and Textiling III","Achieve weaver level 30.",5,0,0,35501,3,13,30,0,0,0,0,0,0,0,3,33
85,12,"Smiling, Styling, and Textiling IV","Achieve weaver level 40.",5,0,0,35501,3,13,40,0,0,0,0,0,0,0,3,34
86,12,"Smiling, Styling, and Textiling V","Achieve weaver level 50.",5,0,0,35501,3,13,50,0,0,0,0,0,0,0,3,35
87,12,"'Tis True without Lying I","Achieve alchemist level 10.",5,0,0,35604,3,14,10,0,0,0,0,0,0,0,3,37
88,12,"'Tis True without Lying II","Achieve alchemist level 20.",5,0,0,35604,3,14,20,0,0,0,0,0,0,0,3,38
89,12,"'Tis True without Lying III","Achieve alchemist level 30.",5,0,0,35604,3,14,30,0,0,0,0,0,0,0,3,39
90,12,"'Tis True without Lying IV","Achieve alchemist level 40.",5,0,0,35604,3,14,40,0,0,0,0,0,0,0,3,40
91,12,"'Tis True without Lying V","Achieve alchemist level 50.",5,0,0,35604,3,14,50,0,0,0,0,0,0,0,3,41
92,12,"All in Good Taste I","Achieve culinarian level 10.",5,0,0,35704,3,15,10,0,0,0,0,0,0,0,3,43
93,12,"All in Good Taste II","Achieve culinarian level 20.",5,0,0,35704,3,15,20,0,0,0,0,0,0,0,3,44
94,12,"All in Good Taste III","Achieve culinarian level 30.",5,0,0,35704,3,15,30,0,0,0,0,0,0,0,3,45
95,12,"All in Good Taste IV","Achieve culinarian level 40.",5,0,0,35704,3,15,40,0,0,0,0,0,0,0,3,46
96,12,"All in Good Taste V","Achieve culinarian level 50.",5,0,0,35704,3,15,50,0,0,0,0,0,0,0,3,47
97,9,"Mastering the Hand I","Achieve level 50 as a carpenter, blacksmith, armorer, goldsmith, leatherworker, weaver, alchemist, and culinarian.",20,15,0,1558,2,61,66,71,76,81,86,91,96,0,4,7
98,13,"Breaking Rocks in the Hot Sun I","Achieve miner level 10.",5,0,0,38003,3,16,10,0,0,0,0,0,0,0,3,1
99,13,"Breaking Rocks in the Hot Sun II","Achieve miner level 20.",5,0,0,38003,3,16,20,0,0,0,0,0,0,0,3,2
100,13,"Breaking Rocks in the Hot Sun III","Achieve miner level 30.",5,0,0,38003,3,16,30,0,0,0,0,0,0,0,3,3
101,13,"Breaking Rocks in the Hot Sun IV","Achieve miner level 40.",5,0,0,38003,3,16,40,0,0,0,0,0,0,0,3,4
102,13,"Breaking Rocks in the Hot Sun V","Achieve miner level 50.",5,0,0,38003,3,16,50,0,0,0,0,0,0,0,3,5
103,13,"Fear the Reaper I","Achieve botanist level 10.",5,0,0,38103,3,17,10,0,0,0,0,0,0,0,3,7
104,13,"Fear the Reaper II","Achieve botanist level 20.",5,0,0,38103,3,17,20,0,0,0,0,0,0,0,3,8
105,13,"Fear the Reaper III","Achieve botanist level 30.",5,0,0,38103,3,17,30,0,0,0,0,0,0,0,3,9
106,13,"Fear the Reaper IV","Achieve botanist level 40.",5,0,0,38103,3,17,40,0,0,0,0,0,0,0,3,10
107,13,"Fear the Reaper V","Achieve botanist level 50.",5,0,0,38103,3,17,50,0,0,0,0,0,0,0,3,11
108,13,"Gone Fishin' I","Achieve fisher level 10.",5,0,0,38203,3,18,10,0,0,0,0,0,0,0,3,13
109,13,"Gone Fishin' II","Achieve fisher level 20.",5,0,0,38203,3,18,20,0,0,0,0,0,0,0,3,14
110,13,"Gone Fishin' III","Achieve fisher level 30.",5,0,0,38203,3,18,30,0,0,0,0,0,0,0,3,15
111,13,"Gone Fishin' IV","Achieve fisher level 40.",5,0,0,38203,3,18,40,0,0,0,0,0,0,0,3,16
112,13,"Gone Fishin' V","Achieve fisher level 50.",5,0,0,38203,3,18,50,0,0,0,0,0,0,0,3,17
113,9,"Mastering the Land I","Achieve level 50 as a miner, botanist, and fisher.",20,16,0,1068,2,102,107,112,0,0,0,0,0,0,4,8
114,18,"On the Payroll I","Earn a cumulative total of 100 gil from levequests.",5,0,0,25919,1,13,100,0,0,0,0,0,0,0,3,0
115,18,"On the Payroll II","Earn a cumulative total of 1,000 gil from levequests.",5,0,0,25919,1,13,1000,0,0,0,0,0,0,0,3,0
116,18,"On the Payroll III","Earn a cumulative total of 10,000 gil from levequests.",5,0,0,25919,1,13,10000,0,0,0,0,0,0,0,3,0
117,18,"On the Payroll IV","Earn a cumulative total of 100,000 gil from levequests.",5,0,0,25919,1,13,100000,0,0,0,0,0,0,0,3,0
118,18,"On the Payroll V","Earn a cumulative total of 1,000,000 gil from levequests.",5,0,0,25919,1,13,1000000,0,0,0,0,0,0,0,3,0
119,18,"Who Wants to Be a Gillionaire?","Earn a cumulative total of 10,000,000 gil from levequests.",10,11,0,463,1,13,10000000,0,0,0,0,0,0,0,3,0
120,49,"You Can't Take It with You I","Earn a cumulative total of 1,000 gil from defeating enemies.",5,0,0,26001,1,12,1000,0,0,0,0,0,0,0,0,0
121,49,"You Can't Take It with You II","Earn a cumulative total of 10,000 gil from defeating enemies.",5,0,0,26001,1,12,10000,0,0,0,0,0,0,0,0,0
122,49,"You Can't Take It with You III","Earn a cumulative total of 100,000 gil from defeating enemies.",5,0,0,26001,1,12,100000,0,0,0,0,0,0,0,0,0
123,49,"You Can't Take It with You IV","Earn a cumulative total of 1,000,000 gil from defeating enemies.",5,0,0,26001,1,12,1000000,0,0,0,0,0,0,0,0,0
124,49,"You Can't Take It with You V","Earn a cumulative total of 10,000,000 gil from defeating enemies.",5,0,0,26001,1,12,10000000,0,0,0,0,0,0,0,0,0
125,49,"Never Met a Corpse I Couldn't Rifle","Earn a cumulative total of 100,000,000 gil from defeating enemies.",10,12,0,207,1,12,100000000,0,0,0,0,0,0,0,0,0
126,17,"My Body Is a Temple","Obtain a complete set of templar armor consisting of a templar's chain coif, a templar's haubergeon, a pair of templar's sollerets, and a set of templar's tassets.<br>* Speak to Jonathas with all four items equipped.",5,0,0,40039,1,232,0,0,0,0,0,0,0,0,4,1
127,17,"Dress Like a Pirate Day","Obtain a complete set of buccaneer armor consisting of a buccaneer's tricorne, a buccaneer's shirt, a pair of buccaneer's boots, and a buccaneer's sash.<br>* Speak to Jonathas with all four items equipped.",5,0,0,40599,1,233,0,0,0,0,0,0,0,0,4,2
128,17,"A Mummer in Motley","Obtain a complete set of harlequin armor consisting of a harlequin's cap, a harlequin's acton, a pair of harlequin's tights, and a harlequin's belt.<br>* Speak to Jonathas with all four items equipped.",5,0,0,40575,1,234,0,0,0,0,0,0,0,0,4,3
129,17,"Raising the Curtana","Obtain Curtana and a Holy Shield in the quest “A Relic Reborn.”",10,2,0,30446,6,66656,0,0,0,0,0,0,0,0,4,4
130,17,"Enter the Coeurl","Obtain a pair of Sphairai in the quest “A Relic Reborn.”",10,3,0,31034,6,66657,0,0,0,0,0,0,0,0,4,5
131,17,"Cleaving to Tradition","Obtain a Bravura in the quest “A Relic Reborn.”",10,4,0,31440,6,66655,0,0,0,0,0,0,0,0,4,6
132,17,"Having a Gae Old Time","Obtain Gae Bolg in the quest “A Relic Reborn.”",10,5,0,31842,6,66658,0,0,0,0,0,0,0,0,4,7
133,17,"Hard to Miss","Obtain the Artemis Bow in the quest “A Relic Reborn.”",10,6,0,32238,6,66661,0,0,0,0,0,0,0,0,4,8
134,17,"Dressed to Heal","Obtain Thyrus in the quest “A Relic Reborn.”",10,7,0,32626,6,66660,0,0,0,0,0,0,0,0,4,10
135,17,"Ohohohohoho!","Obtain a Stardust Rod in the quest “A Relic Reborn.”",10,8,0,33012,6,66659,0,0,0,0,0,0,0,0,4,11
136,17,"Armed to the Teeth","Obtain Curtana, a Holy Shield, a pair of Sphairai, a Bravura, Gae Bolg, the Artemis Bow, Thyrus, a Stardust Rod, the Veil of Wiyu, and a copy of the <i>Omnilex</i> in the quest “A Relic Reborn.”",30,1,0,2502,2,129,130,131,132,133,134,135,597,598,4,14
137,22,"Going with the Grain: Amateur","Successfully synthesize 50 times for level 1-10 woodworking recipes.",5,0,0,35001,1,23,50,0,0,0,0,0,0,0,3,1
138,22,"Going with the Grain: Initiate","Successfully synthesize 300 times for level 11-20 woodworking recipes.",5,0,0,35001,1,24,300,0,0,0,0,0,0,0,3,2
139,22,"Going with the Grain: Apprentice","Successfully synthesize 750 times for level 21-30 woodworking recipes.",5,0,0,35001,1,25,750,0,0,0,0,0,0,0,3,3
140,22,"Going with the Grain: Journeyman","Successfully synthesize 1,500 times for level 31-40 woodworking recipes.",5,0,0,35001,1,26,1500,0,0,0,0,0,0,0,3,4
141,22,"Going with the Grain: Artisan","Successfully synthesize 3,000 times for level 41-50 woodworking recipes.",10,17,0,35001,1,27,3000,0,0,0,0,0,0,0,3,5
142,22,"A Carpenter's Life for Me","Obtain the first five “Going with the Grain” achievements.",30,0,2326,35010,2,137,138,139,140,141,0,0,0,0,4,6
143,23,"Working the Bellows: Amateur","Successfully synthesize 50 times for level 1-10 smithing recipes.",5,0,0,35106,1,28,50,0,0,0,0,0,0,0,3,1
144,23,"Working the Bellows: Initiate","Successfully synthesize 300 times for level 11-20 smithing recipes.",5,0,0,35106,1,29,300,0,0,0,0,0,0,0,3,2
145,23,"Working the Bellows: Apprentice","Successfully synthesize 750 times for level 21-30 smithing recipes.",5,0,0,35106,1,30,750,0,0,0,0,0,0,0,3,3
146,23,"Working the Bellows: Journeyman","Successfully synthesize 1,500 times for level 31-40 smithing recipes.",5,0,0,35106,1,31,1500,0,0,0,0,0,0,0,3,4
147,23,"Working the Bellows: Artisan","Successfully synthesize 3,000 times for level 41-50 smithing recipes.",10,18,0,35106,1,32,3000,0,0,0,0,0,0,0,3,5
148,23,"A Blacksmith's Life for Me","Obtain the first five “Working the Bellows” achievements.",30,0,2353,35110,2,143,144,145,146,147,0,0,0,0,4,6
149,24,"Pounding Out the Dents: Amateur","Successfully synthesize 50 times for level 1-10 armorcraft recipes.",5,0,0,35203,1,33,50,0,0,0,0,0,0,0,3,1
150,24,"Pounding Out the Dents: Initiate","Successfully synthesize 300 times for level 11-20 armorcraft recipes.",5,0,0,35203,1,34,300,0,0,0,0,0,0,0,3,2
151,24,"Pounding Out the Dents: Apprentice","Successfully synthesize 750 times for level 21-30 armorcraft recipes.",5,0,0,35203,1,35,750,0,0,0,0,0,0,0,3,3
152,24,"Pounding Out the Dents: Journeyman","Successfully synthesize 1,500 times for level 31-40 armorcraft recipes.",5,0,0,35203,1,36,1500,0,0,0,0,0,0,0,3,4
153,24,"Pounding Out the Dents: Artisan","Successfully synthesize 3,000 times for level 41-50 armorcraft recipes.",10,19,0,35203,1,37,3000,0,0,0,0,0,0,0,3,5
154,24,"An Armorer's Life for Me","Obtain the first five “Pounding Out the Dents” achievements.",30,0,2378,35209,2,149,150,151,152,153,0,0,0,0,4,6
155,25,"Cutting the Carats: Amateur","Successfully synthesize 50 times for level 1-10 goldsmithing recipes.",5,0,0,35301,1,38,50,0,0,0,0,0,0,0,3,1
156,25,"Cutting the Carats: Initiate","Successfully synthesize 300 times for level 11-20 goldsmithing recipes.",5,0,0,35301,1,39,300,0,0,0,0,0,0,0,3,2
157,25,"Cutting the Carats: Apprentice","Successfully synthesize 750 times for level 21-30 goldsmithing recipes.",5,0,0,35301,1,40,750,0,0,0,0,0,0,0,3,3
158,25,"Cutting the Carats: Journeyman","Successfully synthesize 1,500 times for level 31-40 goldsmithing recipes.",5,0,0,35301,1,41,1500,0,0,0,0,0,0,0,3,4
159,25,"Cutting the Carats: Artisan","Successfully synthesize 3,000 times for level 41-50 goldsmithing recipes.",10,20,0,35301,1,42,3000,0,0,0,0,0,0,0,3,5
160,25,"A Goldsmith's Life for Me","Obtain the first five “Cutting the Carats” achievements.",30,0,2403,35309,2,155,156,157,158,159,0,0,0,0,4,6
161,26,"Hiding in Plain Sight: Amateur","Successfully synthesize 50 times for level 1-10 leatherworking recipes.",5,0,0,35404,1,43,50,0,0,0,0,0,0,0,3,1
162,26,"Hiding in Plain Sight: Initiate","Successfully synthesize 300 times for level 11-20 leatherworking recipes.",5,0,0,35404,1,44,300,0,0,0,0,0,0,0,3,2
163,26,"Hiding in Plain Sight: Apprentice","Successfully synthesize 750 times for level 21-30 leatherworking recipes.",5,0,0,35404,1,45,750,0,0,0,0,0,0,0,3,3
164,26,"Hiding in Plain Sight: Journeyman","Successfully synthesize 1,500 times for level 31-40 leatherworking recipes.",5,0,0,35404,1,46,1500,0,0,0,0,0,0,0,3,4
165,26,"Hiding in Plain Sight: Artisan","Successfully synthesize 3,000 times for level 41-50 leatherworking recipes.",10,21,0,35404,1,47,3000,0,0,0,0,0,0,0,3,5
166,26,"A Leatherworker's Life for Me","Obtain the first five “Hiding in Plain Sight” achievements.",30,0,2428,35409,2,161,162,163,164,165,0,0,0,0,4,6
167,27,"Threading the Needle: Amateur","Successfully synthesize 50 times for level 1-10 clothcraft recipes.",5,0,0,35501,1,48,50,0,0,0,0,0,0,0,3,1
168,27,"Threading the Needle: Initiate","Successfully synthesize 300 times for level 11-20 clothcraft recipes.",5,0,0,35501,1,49,300,0,0,0,0,0,0,0,3,2
169,27,"Threading the Needle: Apprentice","Successfully synthesize 750 times for level 21-30 clothcraft recipes.",5,0,0,35501,1,50,750,0,0,0,0,0,0,0,3,3
170,27,"Threading the Needle: Journeyman","Successfully synthesize 1,500 times for level 31-40 clothcraft recipes.",5,0,0,35501,1,51,1500,0,0,0,0,0,0,0,3,4
171,27,"Threading the Needle: Artisan","Successfully synthesize 3,000 times for level 41-50 clothcraft recipes.",10,22,0,35501,1,52,3000,0,0,0,0,0,0,0,3,5
172,27,"A Weaver's Life for Me","Obtain the first five “Threading the Needle” achievements.",30,0,2454,35510,2,167,168,169,170,171,0,0,0,0,4,6
173,28,"Mixing It Up: Amateur","Successfully synthesize 50 times for level 1-10 alchemy recipes.",5,0,0,35604,1,53,50,0,0,0,0,0,0,0,3,1
174,28,"Mixing It Up: Initiate","Successfully synthesize 300 times for level 11-20 alchemy recipes.",5,0,0,35604,1,54,300,0,0,0,0,0,0,0,3,2
175,28,"Mixing It Up: Apprentice","Successfully synthesize 750 times for level 21-30 alchemy recipes.",5,0,0,35604,1,55,750,0,0,0,0,0,0,0,3,3
176,28,"Mixing It Up: Journeyman","Successfully synthesize 1,500 times for level 31-40 alchemy recipes.",5,0,0,35604,1,56,1500,0,0,0,0,0,0,0,3,4
177,28,"Mixing It Up: Artisan","Successfully synthesize 3,000 times for level 41-50 alchemy recipes.",10,23,0,35604,1,57,3000,0,0,0,0,0,0,0,3,5
178,28,"An Alchemist's Life for Me","Obtain the first five “Mixing it Up” achievements.",30,0,2479,35609,2,173,174,175,176,177,0,0,0,0,4,6
179,29,"Savoring the Realm: Amateur","Successfully synthesize 50 times for level 1-10 cooking recipes.",5,0,0,35704,1,58,50,0,0,0,0,0,0,0,3,1
180,29,"Savoring the Realm: Initiate","Successfully synthesize 300 times for level 11-20 cooking recipes.",5,0,0,35704,1,59,300,0,0,0,0,0,0,0,3,2
181,29,"Savoring the Realm: Apprentice","Successfully synthesize 750 times for level 21-30 cooking recipes.",5,0,0,35704,1,60,750,0,0,0,0,0,0,0,3,3
182,29,"Savoring the Realm: Journeyman","Successfully synthesize 1,500 times for level 31-40 cooking recipes.",5,0,0,35704,1,61,1500,0,0,0,0,0,0,0,3,4
183,29,"Savoring the Realm: Artisan","Successfully synthesize 3,000 times for level 41-50 cooking recipes.",10,24,0,35704,1,62,3000,0,0,0,0,0,0,0,3,5
184,29,"A Life of Cooking","Obtain the first five “Savoring the Realm” achievements.",30,0,2505,35711,2,179,180,181,182,183,0,0,0,0,4,6
185,30,"Mining Your Own Business: La Noscea I","Mine 20 times at level 1-10 mineral deposits in La Noscea.",5,0,0,1015,1,63,20,0,0,0,0,0,0,0,3,1
186,30,"Mining Your Own Business: La Noscea II","Mine 300 times at level 11-20 mineral deposits in La Noscea.",5,0,0,1015,1,78,300,0,0,0,0,0,0,0,3,2
187,30,"Mining Your Own Business: La Noscea III","Mine 1,000 times at level 21-30 mineral deposits in La Noscea.",5,0,0,1015,1,93,1000,0,0,0,0,0,0,0,3,3
188,30,"Mining Your Own Business: La Noscea IV","Mine 2,000 times at level 31-40 mineral deposits in La Noscea.",5,0,0,1015,1,108,2000,0,0,0,0,0,0,0,3,4
189,30,"Mining Your Own Business: La Noscea V","Mine 4,000 times at level 41-50 mineral deposits in La Noscea.",5,0,0,1015,1,123,4000,0,0,0,0,0,0,0,3,5
190,30,"A Miner's Life for Me: La Noscea","Obtain all five “Mining Your Own Business: La Noscea” achievements.",10,25,0,1002,2,185,186,187,188,189,0,0,0,0,4,6
191,30,"Mining Your Own Business: Black Shroud I","Mine 20 times at level 1-10 mineral deposits in the Black Shroud.",5,0,0,1015,1,64,20,0,0,0,0,0,0,0,3,7
192,30,"Mining Your Own Business: Black Shroud II","Mine 300 times at level 11-20 mineral deposits in the Black Shroud.",5,0,0,1015,1,79,300,0,0,0,0,0,0,0,3,8
193,30,"Mining Your Own Business: Black Shroud III","Mine 1,000 times at level 21-30 mineral deposits in the Black Shroud.",5,0,0,1015,1,94,1000,0,0,0,0,0,0,0,3,9
194,30,"Mining Your Own Business: Black Shroud IV","Mine 2,000 times at level 31-40 mineral deposits in the Black Shroud.",5,0,0,1015,1,109,2000,0,0,0,0,0,0,0,3,10
195,30,"Mining Your Own Business: Black Shroud V","Mine 4,000 times at level 41-50 mineral deposits in the Black Shroud.",5,0,0,1015,1,124,4000,0,0,0,0,0,0,0,3,11
196,30,"A Miner's Life for Me: Black Shroud","Obtain all five “Mining Your Own Business: Black Shroud” achievements.",10,26,0,1002,2,191,192,193,194,195,0,0,0,0,4,12
197,30,"Mining Your Own Business: Thanalan I","Mine 20 times at level 1-10 mineral deposits in Thanalan.",5,0,0,1015,1,65,20,0,0,0,0,0,0,0,3,13
198,30,"Mining Your Own Business: Thanalan II","Mine 300 times at level 11-20 mineral deposits in Thanalan.",5,0,0,1015,1,80,300,0,0,0,0,0,0,0,3,14
199,30,"Mining Your Own Business: Thanalan III","Mine 1,000 times at level 21-30 mineral deposits in Thanalan.",5,0,0,1015,1,95,1000,0,0,0,0,0,0,0,3,15
200,30,"Mining Your Own Business: Thanalan IV","Mine 2,000 times at level 31-40 mineral deposits in Thanalan.",5,0,0,1015,1,110,2000,0,0,0,0,0,0,0,3,16
201,30,"Mining Your Own Business: Thanalan V","Mine 4,000 times at level 41-50 mineral deposits in Thanalan.",5,0,0,1015,1,125,4000,0,0,0,0,0,0,0,3,17
202,30,"A Miner's Life for Me: Thanalan","Obtain all five “Mining Your Own Business: Thanalan” achievements.",10,27,0,1002,2,197,198,199,200,201,0,0,0,0,4,18
203,30,"A Miner's Life for Me: Greater Eorzea","Obtain the “A Miner's Life for Me” achievements for La Noscea, the Black Shroud, and Thanalan.",30,0,2531,38011,2,190,196,202,0,0,0,0,0,0,4,19
204,50,"Rocking Around the Clock: La Noscea I","Quarry 10 times at level 1-10 rocky outcrops in La Noscea.",5,0,0,1008,1,66,10,0,0,0,0,0,0,0,0,0
205,50,"Rocking Around the Clock: La Noscea II","Quarry 30 times at level 11-20 rocky outcrops in La Noscea.",5,0,0,1008,1,81,30,0,0,0,0,0,0,0,0,0
206,50,"Rocking Around the Clock: La Noscea III","Quarry 100 times at level 21-30 rocky outcrops in La Noscea.",5,0,0,1008,1,96,100,0,0,0,0,0,0,0,0,0
207,50,"Rocking Around the Clock: La Noscea IV","Quarry 200 times at level 31-40 rocky outcrops in La Noscea.",5,0,0,1008,1,111,200,0,0,0,0,0,0,0,0,0
208,50,"Rocking Around the Clock: La Noscea V","Quarry 500 times at level 41-50 rocky outcrops in La Noscea.",5,0,0,1008,1,126,500,0,0,0,0,0,0,0,0,0
209,50,"I'd Rather Be Quarrying: La Noscea","Obtain all five “Rocking Around the Clock: La Noscea” achievements.",10,28,0,1002,2,204,205,206,207,208,0,0,0,0,0,0
210,50,"Rocking Around the Clock: Black Shroud I","Quarry 10 times at level 1-10 rocky outcrops in the Black Shroud.",5,0,0,1008,1,67,10,0,0,0,0,0,0,0,0,0
211,50,"Rocking Around the Clock: Black Shroud II","Quarry 30 times at level 11-20 rocky outcrops in the Black Shroud.",5,0,0,1008,1,82,30,0,0,0,0,0,0,0,0,0
212,50,"Rocking Around the Clock: Black Shroud III","Quarry 100 times at level 21-30 rocky outcrops in the Black Shroud.",5,0,0,1008,1,97,100,0,0,0,0,0,0,0,0,0
213,50,"Rocking Around the Clock: Black Shroud IV","Quarry 200 times at level 31-40 rocky outcrops in the Black Shroud.",5,0,0,1008,1,112,200,0,0,0,0,0,0,0,0,0
214,50,"Rocking Around the Clock: Black Shroud V","Quarry 500 times at level 41-50 rocky outcrops in the Black Shroud.",5,0,0,1008,1,127,500,0,0,0,0,0,0,0,0,0
215,50,"I'd Rather Be Quarrying: Black Shroud","Obtain all five “Rocking Around the Clock: Black Shroud” achievements.",10,29,0,1002,2,210,211,212,213,214,0,0,0,0,0,0
216,50,"Rocking Around the Clock: Thanalan I","Quarry 10 times at level 1-10 rocky outcrops in Thanalan.",5,0,0,1008,1,68,10,0,0,0,0,0,0,0,0,0
217,50,"Rocking Around the Clock: Thanalan II","Quarry 30 times at level 11-20 rocky outcrops in Thanalan.",5,0,0,1008,1,83,30,0,0,0,0,0,0,0,0,0
218,50,"Rocking Around the Clock: Thanalan III","Quarry 100 times at level 21-30 rocky outcrops in Thanalan.",5,0,0,1008,1,98,100,0,0,0,0,0,0,0,0,0
219,50,"Rocking Around the Clock: Thanalan IV","Quarry 200 times at level 31-40 rocky outcrops in Thanalan.",5,0,0,1008,1,113,200,0,0,0,0,0,0,0,0,0
220,50,"Rocking Around the Clock: Thanalan V","Quarry 500 times at level 41-50 rocky outcrops in Thanalan.",5,0,0,1008,1,128,500,0,0,0,0,0,0,0,0,0
221,50,"I'd Rather Be Quarrying: Thanalan","Obtain all five “Rocking Around the Clock: Thanalan” achievements.",10,30,0,1002,2,216,217,218,219,220,0,0,0,0,0,0
222,31,"Logging the Hours: La Noscea I","Log 20 times from level 1-10 mature trees in La Noscea.",5,0,0,1056,1,69,20,0,0,0,0,0,0,0,3,1
223,31,"Logging the Hours: La Noscea II","Log 300 times from level 11-20 mature trees in La Noscea.",5,0,0,1056,1,84,300,0,0,0,0,0,0,0,3,2
224,31,"Logging the Hours: La Noscea III","Log 1,000 times from level 21-30 mature trees in La Noscea.",5,0,0,1056,1,99,1000,0,0,0,0,0,0,0,3,3
225,31,"Logging the Hours: La Noscea IV","Log 2,000 times from level 31-40 mature trees in La Noscea.",5,0,0,1056,1,114,2000,0,0,0,0,0,0,0,3,4
226,31,"Logging the Hours: La Noscea V","Log 4,000 times from level 41-50 mature trees in La Noscea.",5,0,0,1056,1,129,4000,0,0,0,0,0,0,0,3,5
227,31,"A Botanist's Life for Me: La Noscea","Obtain all five “Logging the Hours: La Noscea” achievements.",10,31,0,1052,2,222,223,224,225,226,0,0,0,0,4,6
228,31,"Logging the Hours: Black Shroud I","Log 20 times from level 1-10 mature trees in the Black Shroud.",5,0,0,1056,1,70,20,0,0,0,0,0,0,0,3,7
229,31,"Logging the Hours: Black Shroud II","Log 300 times from level 11-20 mature trees in the Black Shroud.",5,0,0,1056,1,85,300,0,0,0,0,0,0,0,3,8
230,31,"Logging the Hours: Black Shroud III","Log 1,000 times from level 21-30 mature trees in the Black Shroud.",5,0,0,1056,1,100,1000,0,0,0,0,0,0,0,3,9
231,31,"Logging the Hours: Black Shroud IV","Log 2,000 times from level 31-40 mature trees in the Black Shroud.",5,0,0,1056,1,115,2000,0,0,0,0,0,0,0,3,10
232,31,"Logging the Hours: Black Shroud V","Log 4,000 times from level 41-50 mature trees in the Black Shroud.",5,0,0,1056,1,130,4000,0,0,0,0,0,0,0,3,11
233,31,"A Botanist's Life for Me: Black Shroud","Obtain all five “Logging the Hours: Black Shroud” achievements.",10,32,0,1052,2,228,229,230,231,232,0,0,0,0,4,12
234,31,"Logging the Hours: Thanalan I","Log 20 times from level 1-10 mature trees in Thanalan.",5,0,0,1056,1,71,20,0,0,0,0,0,0,0,3,13
235,31,"Logging the Hours: Thanalan II","Log 300 times from level 11-20 mature trees in Thanalan.",5,0,0,1056,1,86,300,0,0,0,0,0,0,0,3,14
236,31,"Logging the Hours: Thanalan III","Log 1,000 times from level 21-30 mature trees in Thanalan.",5,0,0,1056,1,101,1000,0,0,0,0,0,0,0,3,15
237,31,"Logging the Hours: Thanalan IV","Log 2,000 times from level 31-40 mature trees in Thanalan.",5,0,0,1056,1,116,2000,0,0,0,0,0,0,0,3,16
238,31,"Logging the Hours: Thanalan V","Log 4,000 times from level 41-50 mature trees in Thanalan.",5,0,0,1056,1,131,4000,0,0,0,0,0,0,0,3,17
239,31,"A Botanist's Life for Me: Thanalan","Obtain all five “Logging the Hours: Thanalan” achievements.",10,33,0,1052,2,234,235,236,237,238,0,0,0,0,4,18
240,31,"A Botanist's Life for Me: Greater Eorzea","Obtain the “A Botanist's Life for Me” achievements for La Noscea, the Black Shroud, and Thanalan.",30,0,2557,38110,2,227,233,239,0,0,0,0,0,0,4,19
241,50,"Reaping What You Sow: La Noscea I","Harvest 10 times from level 1-10 lush vegetation in La Noscea.",5,0,0,1065,1,72,10,0,0,0,0,0,0,0,0,0
242,50,"Reaping What You Sow: La Noscea II","Harvest 30 times from level 11-20 lush vegetation in La Noscea.",5,0,0,1065,1,87,30,0,0,0,0,0,0,0,0,0
243,50,"Reaping What You Sow: La Noscea III","Harvest 100 times from level 21-30 lush vegetation in La Noscea.",5,0,0,1065,1,102,100,0,0,0,0,0,0,0,0,0
244,50,"Reaping What You Sow: La Noscea IV","Harvest 200 times from level 31-40 lush vegetation in La Noscea.",5,0,0,1065,1,117,200,0,0,0,0,0,0,0,0,0
245,50,"Reaping What You Sow: La Noscea V","Harvest 500 times from level 41-50 lush vegetation in La Noscea.",5,0,0,1065,1,132,500,0,0,0,0,0,0,0,0,0
246,50,"I'd Rather Be Harvesting: La Noscea","Obtain all five “Reaping What You Sow: La Noscea” achievements.",10,34,0,1052,2,241,242,243,244,245,0,0,0,0,0,0
247,50,"Reaping What You Sow: Black Shroud I","Harvest 10 times from level 1-10 lush vegetation in the Black Shroud.",5,0,0,1065,1,73,10,0,0,0,0,0,0,0,0,0
248,50,"Reaping What You Sow: Black Shroud II","Harvest 30 times from level 11-20 lush vegetation in the Black Shroud.",5,0,0,1065,1,88,30,0,0,0,0,0,0,0,0,0
249,50,"Reaping What You Sow: Black Shroud III","Harvest 100 times from level 21-30 lush vegetation in the Black Shroud.",5,0,0,1065,1,103,100,0,0,0,0,0,0,0,0,0
250,50,"Reaping What You Sow: Black Shroud IV","Harvest 200 times from level 31-40 lush vegetation in the Black Shroud.",5,0,0,1065,1,118,200,0,0,0,0,0,0,0,0,0
251,50,"Reaping What You Sow: Black Shroud V","Harvest 500 times from level 41-50 lush vegetation in the Black Shroud.",5,0,0,1065,1,133,500,0,0,0,0,0,0,0,0,0
252,50,"I'd Rather Be Harvesting: Black Shroud","Obtain all five “Reaping What You Sow: Black Shroud” achievements.",10,35,0,1052,2,247,248,249,250,251,0,0,0,0,0,0
253,50,"Reaping What You Sow: Thanalan I","Harvest 10 times from level 1-10 lush vegetation in Thanalan.",5,0,0,1065,1,74,10,0,0,0,0,0,0,0,0,0
254,50,"Reaping What You Sow: Thanalan II","Harvest 30 times from level 11-20 lush vegetation in Thanalan.",5,0,0,1065,1,89,30,0,0,0,0,0,0,0,0,0
255,50,"Reaping What You Sow: Thanalan III","Harvest 100 times from level 21-30 lush vegetation in Thanalan.",5,0,0,1065,1,104,100,0,0,0,0,0,0,0,0,0
256,50,"Reaping What You Sow: Thanalan IV","Harvest 200 times from level 31-40 lush vegetation in Thanalan.",5,0,0,1065,1,119,200,0,0,0,0,0,0,0,0,0
257,50,"Reaping What You Sow: Thanalan V","Harvest 500 times from level 41-50 lush vegetation in Thanalan.",5,0,0,1065,1,134,500,0,0,0,0,0,0,0,0,0
258,50,"I'd Rather Be Harvesting: Thanalan","Obtain all five “Reaping What You Sow: Thanalan” achievements.",10,36,0,1052,2,253,254,255,256,257,0,0,0,0,0,0
259,32,"Good Things Come to Those Who Bait: La Noscea I","Fish 20 times from level 1-10 waters in La Noscea.",5,0,0,1101,1,75,20,0,0,0,0,0,0,0,3,1
260,32,"Good Things Come to Those Who Bait: La Noscea II","Fish 100 times from level 11-20 waters in La Noscea.",5,0,0,1101,1,90,100,0,0,0,0,0,0,0,3,2
261,32,"Good Things Come to Those Who Bait: La Noscea III","Fish 300 times from level 21-30 waters in La Noscea.",5,0,0,1101,1,105,300,0,0,0,0,0,0,0,3,3
262,32,"Good Things Come to Those Who Bait: La Noscea IV","Fish 500 times from level 31-40 waters in La Noscea.",5,0,0,1101,1,120,500,0,0,0,0,0,0,0,3,4
263,32,"Good Things Come to Those Who Bait: La Noscea V","Fish 1,000 times from level 41-50 waters in La Noscea.",5,0,0,1101,1,135,1000,0,0,0,0,0,0,0,3,5
264,32,"A Fisher's Life for Me: La Noscea","Obtain all five “Good Things Come to Those Who Bait: La Noscea” achievements.",10,37,0,1103,2,259,260,261,262,263,0,0,0,0,4,6
265,32,"Good Things Come to Those Who Bait: Black Shroud I","Fish 20 times from level 1-10 waters in the Black Shroud.",5,0,0,1101,1,76,20,0,0,0,0,0,0,0,3,7
266,32,"Good Things Come to Those Who Bait: Black Shroud II","Fish 100 times from level 11-20 waters in the Black Shroud.",5,0,0,1101,1,91,100,0,0,0,0,0,0,0,3,8
267,32,"Good Things Come to Those Who Bait: Black Shroud III","Fish 300 times from level 21-30 waters in the Black Shroud.",5,0,0,1101,1,106,300,0,0,0,0,0,0,0,3,9
268,32,"Good Things Come to Those Who Bait: Black Shroud IV","Fish 500 times from level 31-40 waters in the Black Shroud.",5,0,0,1101,1,121,500,0,0,0,0,0,0,0,3,10
269,32,"Good Things Come to Those Who Bait: Black Shroud V","Fish 1,000 times from level 41-50 waters in the Black Shroud.",5,0,0,1101,1,136,1000,0,0,0,0,0,0,0,3,11
270,32,"A Fisher's Life for Me: Black Shroud","Obtain all five “Good Things Come to Those Who Bait: Black Shroud” achievements.",10,38,0,1103,2,265,266,267,268,269,0,0,0,0,4,12
271,32,"Good Things Come to Those Who Bait: Thanalan I","Fish 20 times from level 1-10 waters in Thanalan.",5,0,0,1101,1,77,20,0,0,0,0,0,0,0,3,13
272,32,"Good Things Come to Those Who Bait: Thanalan II","Fish 100 times from level 11-20 waters in Thanalan.",5,0,0,1101,1,92,100,0,0,0,0,0,0,0,3,14
273,32,"Good Things Come to Those Who Bait: Thanalan III","Fish 300 times from level 21-30 waters in Thanalan.",5,0,0,1101,1,107,300,0,0,0,0,0,0,0,3,15
274,32,"Good Things Come to Those Who Bait: Thanalan IV","Fish 500 times from level 31-40 waters in Thanalan.",5,0,0,1101,1,122,500,0,0,0,0,0,0,0,3,16
275,32,"Good Things Come to Those Who Bait: Thanalan V","Fish 1,000 times from level 41-50 waters in Thanalan.",5,0,0,1101,1,137,1000,0,0,0,0,0,0,0,3,17
276,32,"A Fisher's Life for Me: Thanalan","Obtain all five “Good Things Come to Those Who Bait: Thanalan” achievements.",10,39,0,1103,2,271,272,273,274,275,0,0,0,0,4,18
277,32,"A Fisher's Life for Me: Greater Eorzea","Obtain the “A Fisher's Life for Me” achievements for La Noscea, the Black Shroud, and Thanalan.",30,0,2583,38211,2,264,270,276,0,0,0,0,0,0,4,19
278,50,"Getting Giggy with It: La Noscea I","Spearfish 10 times at level 1-10 shallow pools in La Noscea.",5,0,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
279,50,"Getting Giggy with It: La Noscea II","Spearfish 30 times at level 11-20 shallow pools in La Noscea.",5,0,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
280,50,"Getting Giggy with It: La Noscea III","Spearfish 100 times at level 21-30 shallow pools in La Noscea.",5,0,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
281,50,"Getting Giggy with It: La Noscea IV","Spearfish 200 times at level 31-40 shallow pools in La Noscea.",5,0,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
282,50,"Getting Giggy with It: La Noscea V","Spearfish 500 times at level 41-50 shallow pools in La Noscea.",5,0,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
283,50,"I'd Rather Be Spearfishing: La Noscea","Obtain all five “Getting Giggy with It: La Noscea” achievements.",10,40,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
284,50,"Getting Giggy with It: Black Shroud I","Spearfish 10 times at level 1-10 shallow pools in the Black Shroud.",5,0,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
285,50,"Getting Giggy with It: Black Shroud II","Spearfish 30 times at level 11-20 shallow pools in the Black Shroud.",5,0,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
286,50,"Getting Giggy with It: Black Shroud III","Spearfish 100 times at level 21-30 shallow pools in the Black Shroud.",5,0,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
287,50,"Getting Giggy with It: Black Shroud IV","Spearfish 200 times at level 31-40 shallow pools in the Black Shroud.",5,0,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
288,50,"Getting Giggy with It: Black Shroud V","Spearfish 500 times at level 41-50 shallow pools in the Black Shroud.",5,0,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
289,50,"I'd Rather Be Spearfishing: Black Shroud","Obtain all five “Getting Giggy with It: Black Shroud” achievements.",10,41,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
290,50,"Getting Giggy with It: Thanalan I","Spearfish 10 times at level 1-10 shallow pools in Thanalan.",5,0,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
291,50,"Getting Giggy with It: Thanalan II","Spearfish 30 times at level 11-20 shallow pools in Thanalan.",5,0,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
292,50,"Getting Giggy with It: Thanalan III","Spearfish 100 times at level 21-30 shallow pools in Thanalan.",5,0,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
293,50,"Getting Giggy with It: Thanalan IV","Spearfish 200 times at level 31-40 shallow pools in Thanalan.",5,0,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
294,50,"Getting Giggy with It: Thanalan V","Spearfish 500 times at level 41-50 shallow pools in Thanalan.",5,0,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
295,50,"I'd Rather Be Spearfishing: Thanalan","Obtain all five “Getting Giggy with It: Thanalan” achievements.",10,42,0,62911,0,0,0,0,0,0,0,0,0,0,0,0
296,21,"Getting Too Attached I","Successfully affix 10 materia.",5,0,0,20201,1,16,10,0,0,0,0,0,0,0,3,1
297,21,"Getting Too Attached II","Successfully affix 50 materia.",5,0,0,20202,1,16,50,0,0,0,0,0,0,0,3,2
298,21,"Getting Too Attached III","Successfully affix 100 materia.",5,0,0,20203,1,16,100,0,0,0,0,0,0,0,3,3
299,21,"Getting Too Attached IV","Successfully affix 500 materia.",5,0,0,20204,1,16,500,0,0,0,0,0,0,0,3,4
300,21,"Materia Hysteria","Successfully affix 1,000 materia.",10,43,0,109,1,16,1000,0,0,0,0,0,0,0,3,5
301,21,"Beginner's Luck","Successfully affix two materia to the same piece of gear.",10,0,0,20206,4,2,0,0,0,0,0,0,0,0,4,8
302,21,"I Make My Own Luck","Successfully affix three materia to the same piece of gear.",20,0,0,20207,4,3,0,0,0,0,0,0,0,0,4,9
303,21,"Luck's Got Nothing to Do with It","Successfully affix four materia to the same piece of gear.",30,0,0,20208,4,4,0,0,0,0,0,0,0,0,4,10
304,21,"I Got This!","Successfully affix five materia to the same piece of gear.",40,0,2910,407,4,5,0,0,0,0,0,0,0,0,4,11
305,21,"Prepare to Be Assimilated I","Successfully convert 10 spiritbound items into materia.",5,0,0,20209,1,17,10,0,0,0,0,0,0,0,3,12
306,21,"Prepare to Be Assimilated II","Successfully convert 50 spiritbound items into materia.",5,0,0,20210,1,17,50,0,0,0,0,0,0,0,3,13
307,21,"Prepare to Be Assimilated III","Successfully convert 100 spiritbound items into materia.",5,0,0,20211,1,17,100,0,0,0,0,0,0,0,3,14
308,21,"Prepare to Be Assimilated IV","Successfully convert 500 spiritbound items into materia.",5,0,0,20212,1,17,500,0,0,0,0,0,0,0,3,15
309,21,"Living in a Materia World","Successfully convert 1,000 spiritbound items into materia.",10,44,0,460,1,17,1000,0,0,0,0,0,0,0,3,16
310,33,"Leaving Limsa Lominsa","Complete the main scenario quest “The Lominsan Envoy.”",5,0,0,62951,6,66082,0,0,0,0,0,0,0,0,4,11
311,33,"Gone from Gridania","Complete the main scenario quest “The Gridanian Envoy.”",5,0,0,62952,6,66043,0,0,0,0,0,0,0,0,4,12
312,33,"Out of Ul'dah","Complete the main scenario quest “The Ul'dahn Envoy.”",5,0,0,62953,6,66064,0,0,0,0,0,0,0,0,4,13
313,33,"This One Time, at Level Thirty...","Complete any one of the Disciple of War or Magic class quests available at level 30.",5,0,0,26002,9,65801,66103,65855,65975,65612,65977,65889,65997,65691,4,85
314,33,"Tales of War","Complete all the Disciple of War quests available at level 30.",10,45,0,2553,6,65801,66103,65855,65975,65612,0,0,0,0,4,86
315,33,"Tales of Magic","Complete all the Disciple of Magic quests available at level 30.",10,46,0,2630,6,65977,65889,65997,0,0,0,0,0,0,4,87
316,33,"Tales of the Hand","Complete all the Disciple of the Hand quests available at level 30.",10,47,0,1503,6,65705,65834,65816,66153,65597,66129,66120,65802,0,4,88
317,33,"Tales of the Land","Complete all the Disciple of the Land quests available at level 30.",10,48,0,1015,6,66142,65545,66650,0,0,0,0,0,0,4,90
318,33,"The Greatest Tales Ever Told","Complete all the class quests available at level 30.",20,0,2908,452,2,314,315,316,317,0,0,0,0,0,4,91
319,51,"A Little Something on the Side: La Noscea","Complete 15 sidequests originating in La Noscea.",5,0,0,62901,0,0,0,0,0,0,0,0,0,0,0,0
320,51,"A Little Something on the Side: Black Shroud","Complete 15 sidequests originating in the Black Shroud.",5,0,0,62902,0,0,0,0,0,0,0,0,0,0,0,0
321,51,"A Little Something on the Side: Thanalan","Complete 15 sidequests originating in Thanalan.",5,0,0,62903,0,0,0,0,0,0,0,0,0,0,0,0
322,51,"Sideways","Obtain all three “A Little Something on the Side” achievements.",10,49,0,62938,2,319,320,321,0,0,0,0,0,0,0,0
323,34,"All the More Region to Leve I","Complete 10 regional battlecraft levequests.",5,0,0,159,1,18,10,0,0,0,0,0,0,0,3,1
324,34,"All the More Region to Leve II","Complete 20 regional battlecraft levequests.",5,0,0,159,1,18,20,0,0,0,0,0,0,0,3,2
325,34,"All the More Region to Leve III","Complete 50 regional battlecraft levequests.",5,0,0,159,1,18,50,0,0,0,0,0,0,0,3,3
326,34,"All the More Region to Leve IV","Complete 100 regional battlecraft levequests.",5,0,0,159,1,18,100,0,0,0,0,0,0,0,3,4
327,34,"All the More Region to Leve V","Complete 200 regional battlecraft levequests.",5,0,0,159,1,18,200,0,0,0,0,0,0,0,3,5
328,34,"All the More Region to Leve VI","Complete 500 regional battlecraft levequests.",10,50,0,159,1,18,500,0,0,0,0,0,0,0,3,6
329,34,"Region d'Etre","Complete 1,000 regional battlecraft levequests.",20,0,0,165,1,18,1000,0,0,0,0,0,0,0,3,7
330,34,"Think Global, Quest Local I","Complete 10 local tradecraft levequests.",5,0,0,1514,1,19,10,0,0,0,0,0,0,0,3,9
331,34,"Think Global, Quest Local II","Complete 20 local tradecraft levequests.",5,0,0,1514,1,19,20,0,0,0,0,0,0,0,3,10
332,34,"Think Global, Quest Local III","Complete 50 local tradecraft levequests.",5,0,0,1514,1,19,50,0,0,0,0,0,0,0,3,11
333,34,"Think Global, Quest Local IV","Complete 100 local tradecraft levequests.",5,0,0,1514,1,19,100,0,0,0,0,0,0,0,3,12
334,34,"Think Global, Quest Local V","Complete 200 local tradecraft levequests.",5,0,0,1514,1,19,200,0,0,0,0,0,0,0,3,13
335,34,"Think Global, Quest Local VI","Complete 500 local tradecraft levequests.",10,51,0,1514,1,19,500,0,0,0,0,0,0,0,3,14
336,34,"Lost in Localization","Complete 1,000 local tradecraft levequests.",20,0,0,1519,1,19,1000,0,0,0,0,0,0,0,3,15
337,51,"A Slave to Faction I","Complete 10 faction levequests.",5,0,0,62906,1,14,10,0,0,0,0,0,0,0,0,0
338,51,"A Slave to Faction II","Complete 50 faction levequests.",5,0,0,62906,1,14,50,0,0,0,0,0,0,0,0,0
339,51,"A Slave to Faction III","Complete 100 faction levequests.",10,52,0,62906,1,14,100,0,0,0,0,0,0,0,0,0
340,51,"Just the Factions, Ma'am","Complete 500 faction levequests.",20,0,0,62905,1,14,500,0,0,0,0,0,0,0,0,0
341,33,"Serving a Greater Cause I","Complete 5 guildhests.",5,0,0,158,1,15,5,0,0,0,0,0,0,0,3,1
342,33,"Serving a Greater Cause II","Complete 10 guildhests.",5,0,0,158,1,15,10,0,0,0,0,0,0,0,3,2
343,33,"Serving a Greater Cause III","Complete 20 guildhests.",5,0,0,158,1,15,20,0,0,0,0,0,0,0,3,3
344,33,"Serving a Greater Cause IV","Complete 30 guildhests.",5,0,0,158,1,15,30,0,0,0,0,0,0,0,3,4
345,33,"Serving a Greater Cause V","Complete 50 guildhests.",5,0,0,158,1,15,50,0,0,0,0,0,0,0,3,5
346,33,"Serving a Greater Cause VI","Complete 100 guildhests.",10,53,0,158,1,15,100,0,0,0,0,0,0,0,3,6
347,33,"Enraptured Servitude","Complete 200 guildhests.",20,0,0,161,1,15,200,0,0,0,0,0,0,0,3,7
348,51,"Around the Realm and Back Again","Complete one regional battlecraft levequest at every aetheryte camp and aetherial gate in La Noscea, the Black Shroud, and Thanalan.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
349,51,"I Survived Camp Bearded Rock","Complete 20 regional battlecraft levequests originating at Camp Bearded Rock.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
350,51,"I Survived Cedarwood","Complete 20 regional battlecraft levequests originating in Cedarwood.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
351,51,"I Survived Camp Skull Valley","Complete 20 regional battlecraft levequests originating at Camp Skull Valley.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
352,51,"I Survived Camp Bald Knoll","Complete 20 regional battlecraft levequests originating at Camp Bald Knoll.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
353,51,"I Survived Camp Bloodshore","Complete 20 regional battlecraft levequests originating at Camp Bloodshore.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
354,51,"I Survived Cassiopeia Hollow","Complete 20 regional battlecraft levequests originating in Cassiopeia Hollow.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
355,51,"I Survived Camp Iron Lake","Complete 20 regional battlecraft levequests originating at Camp Iron Lake.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
356,51,"And All I Got Was This Lousy Achievement: La Noscea","Complete 20 regional battlecraft levequests at each aetheryte camp and aetherial gate in La Noscea.",10,54,0,62901,0,0,0,0,0,0,0,0,0,0,0,0
357,51,"I Survived Camp Bentbranch","Complete 20 regional battlecraft levequests originating at Camp Bentbranch.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
358,51,"I Survived Humblehearth","Complete 20 regional battlecraft levequests originating in Humblehearth.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
359,51,"I Survived Camp Nine Ivies","Complete 20 regional battlecraft levequests originating at Camp Nine Ivies.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
360,51,"I Survived Camp Emerald Moss","Complete 20 regional battlecraft levequests originating at Camp Emerald Moss.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
361,51,"I Survived Treespeak","Complete 20 regional battlecraft levequests originating in Treespeak.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
362,51,"I Survived the Mun-Tuy Cellars","Complete 20 regional battlecraft levequests originating in the MunTuy Cellars.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
363,51,"I Survived Camp Tranquil","Complete 20 regional battlecraft levequests originating at Camp Tranquil.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
364,51,"And All I Got Was This Lousy Achievement: Black Shroud","Complete 20 regional battlecraft levequests at each aetheryte camp and aetherial gate in the Black Shroud.",10,55,0,62902,0,0,0,0,0,0,0,0,0,0,0,0
365,51,"I Survived Camp Black Brush","Complete 20 regional battlecraft levequests originating at Camp Black Brush.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
366,51,"I Survived the Nanawa Mines","Complete 20 regional battlecraft levequests originating in the Nanawa Mines.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
367,51,"I Survived Camp Drybone","Complete 20 regional battlecraft levequests originating at Camp Drybone.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
368,51,"I Survived Halatali","Complete 20 regional battlecraft levequests originating in Halatali.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
369,51,"I Survived Camp Horizon","Complete 20 regional battlecraft levequests originating at Camp Horizon.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
370,51,"I Survived Nophica's Wells","Complete 20 regional battlecraft levequests originating in Nophica's Wells.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
371,51,"I Survived Camp Broken Water","Complete 20 regional battlecraft levequests originating at Camp Broken Water.",5,0,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
372,51,"And All I Got Was This Lousy Achievement: Thanalan","Complete 20 regional battlecraft levequests at each aetheryte camp and aetherial gate in Thanalan.",10,56,0,62903,0,0,0,0,0,0,0,0,0,0,0,0
373,51,"Globetrotter","Complete 20 regional battlecraft levequests at every aetheryte camp and aetherial gate in La Noscea, the Black Shroud, and Thanalan.",20,57,0,62916,0,0,0,0,0,0,0,0,0,0,0,0
374,51,"At the Realm's Behest","Complete one behest at every aetheryte camp and aetherial gate in La Noscea, the Black Shroud, and Thanalan.",5,0,0,62914,0,0,0,0,0,0,0,0,0,0,0,0
375,51,"To Serve and Protect: Camp Bearded Rock","Complete 10 behests at Camp Bearded Rock.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
376,51,"To Serve and Protect: Cedarwood","Complete 10 behests in Cedarwood.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
377,51,"To Serve and Protect: Camp Skull Valley","Complete 10 behests at Camp Skull Valley.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
378,51,"To Serve and Protect: Camp Bald Knoll","Complete 10 behests at Camp Bald Knoll.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
379,51,"To Serve and Protect: Camp Bloodshore","Complete 10 behests at Camp Bloodshore.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
380,51,"To Serve and Protect: Cassiopeia Hollow","Complete 10 behests in Cassiopeia Hollow.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
381,51,"To Serve and Protect: Camp Iron Lake","Complete 10 behests at Camp Iron Lake.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
382,51,"La Noscea Got Served...and Protected","Complete 10 behests at each aetheryte camp and aetherial gate in La Noscea.",10,58,0,62901,0,0,0,0,0,0,0,0,0,0,0,0
383,51,"To Serve and Protect: Camp Bentbranch","Complete 10 behests at Camp Bentbranch.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
384,51,"To Serve and Protect: Humblehearth","Complete 10 behests in Humblehearth.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
385,51,"To Serve and Protect: Camp Nine Ivies","Complete 10 behests at Camp Nine Ivies.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
386,51,"To Serve and Protect: Camp Emerald Moss","Complete 10 behests at Camp Emerald Moss.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
387,51,"To Serve and Protect: Treespeak","Complete 10 behests in Treespeak.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
388,51,"To Serve and Protect: Mun-Tuy Cellars","Complete 10 behests in the MunTuy Cellars.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
389,51,"To Serve and Protect: Camp Tranquil","Complete 10 behests at Camp Tranquil.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
390,51,"The Black Shroud Got Served...and Protected","Complete 10 behests at each aetheryte camp and aetherial gate in the Black Shroud.",10,59,0,62902,0,0,0,0,0,0,0,0,0,0,0,0
391,51,"To Serve and Protect: Camp Black Brush","Complete 10 behests at Camp Black Brush.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
392,51,"To Serve and Protect: Nanawa Silvermines","Complete 10 behests in the Nanawa Mines.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
393,51,"To Serve and Protect: Camp Drybone","Complete 10 behests at Camp Drybone.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
394,51,"To Serve and Protect: Halatali","Complete 10 behests in Halatali.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
395,51,"To Serve and Protect: Camp Horizon","Complete 10 behests at Camp Horizon.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
396,51,"To Serve and Protect: Nophica's Wells","Complete 10 behests in Nophica's Wells.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
397,51,"To Serve and Protect: Camp Broken Water","Complete 10 behests at Camp Broken Water.",5,0,0,62913,0,0,0,0,0,0,0,0,0,0,0,0
398,51,"Thanalan Got Served...and Protected","Complete 10 behests at each aetheryte camp and aetherial gate in Thanalan.",10,60,0,62903,0,0,0,0,0,0,0,0,0,0,0,0
399,51,"Eorzea Got Served...and Protected","Complete 10 behests at every aetheryte camp and aetherial gate in La Noscea, the Black Shroud, and Thanalan.",20,61,0,62915,0,0,0,0,0,0,0,0,0,0,0,0
400,51,"Leaning Towards the Brotherhood","Complete 10 faction levequests for the Brotherhood of the Broken Blade.",5,0,0,62916,1,20,10,0,0,0,0,0,0,0,0,0
401,51,"Love Thy Brother","Complete 50 faction levequests for the Brotherhood of the Broken Blade.",10,62,0,62916,1,20,50,0,0,0,0,0,0,0,0,0
402,51,"Leaning Towards the Shield","Complete 10 faction levequests for Azeyma's Shields.",5,0,0,62916,1,21,10,0,0,0,0,0,0,0,0,0
403,51,"Another Brick in the Shield Wall","Complete 50 faction levequests for Azeyma's Shields.",10,63,0,62916,1,21,50,0,0,0,0,0,0,0,0,0
404,51,"Leaning Towards the Horn","Complete 10 faction levequests for the Horn and Hand.",5,0,0,62916,1,22,10,0,0,0,0,0,0,0,0,0
405,51,"A Helping Horn","Complete 50 faction levequests for the Horn and Hand.",10,64,0,62916,1,22,50,0,0,0,0,0,0,0,0,0
406,51,"Commitment Issues","Complete 50 faction levequests each for the Brotherhood of the Broken Blade, Azeyma's Shields, and the Horn and Hand.",20,65,0,62916,2,401,403,405,0,0,0,0,0,0,0,0
407,33,"Like a Knight in Shining Armor I","Complete the paladin job quest “Keeping the Oath.”",5,0,0,26003,6,66596,0,0,0,0,0,0,0,0,4,100
408,33,"Bulletproof I","Complete the monk job quest “Five Easy Pieces.”",5,0,0,26004,6,66602,0,0,0,0,0,0,0,0,4,110
409,33,"I Am the Warrior I","Complete the warrior job quest “How to Quit You.”",5,0,0,26005,6,66590,0,0,0,0,0,0,0,0,4,120
410,33,"Dragoon Age I","Complete the dragoon job quest “Into the Dragon's Maw.”",5,0,0,26006,6,66608,0,0,0,0,0,0,0,0,4,130
411,33,"A Bard's Tale I","Complete the bard job quest “Requiem for the Fallen.”",5,0,0,26007,6,66626,0,0,0,0,0,0,0,0,4,140
412,33,"Seeing White I","Complete the white mage job quest “Heart of the Forest.”",5,0,0,26008,6,66620,0,0,0,0,0,0,0,0,4,160
413,33,"Back in Black I","Complete the black mage job quest “Always Bet on Black.”",5,0,0,26009,6,66614,0,0,0,0,0,0,0,0,4,170
414,33,"Career Opportunities","Obtain the following seven achievements: “Like a Knight in Shining Armor,” “Bulletproof,” “I Am the Warrior,” Dragoon Age,“ ”A Bard's Tale,“ ”Seeing White,“ and ”Back in Black.“",20,66,0,2627,2,407,408,409,410,411,412,413,599,600,4,230
415,51,"Once in a Lifetime","Complete the entire scenario centered around Dalamud and the Empire's Meteor project.",20,0,0,26002,0,0,0,0,0,0,0,0,0,0,0,0
416,51,"Patricide","Defeat 11th Order Patriarch Gu Bu during the Battle for Aleport.",5,67,0,62901,0,0,0,0,0,0,0,0,0,0,0,0
417,51,"To Kill a Mocking Bird","Defeat Sazel Ciloc the Divine during the Battle for Hyrstmill.",5,68,0,62902,0,0,0,0,0,0,0,0,0,0,0,0
418,51,"Pounding the Spike","Defeat Stonespike Tanadd Gah during the battle for the Golden Bazaar.",5,69,0,62903,0,0,0,0,0,0,0,0,0,0,0,0
419,51,"An Eye on the Ale I","Receive a score of 10,000 or better for your efforts during a victorious campaign in the Battle for Aleport.",5,0,0,62901,0,0,0,0,0,0,0,0,0,0,0,0
420,51,"An Eye on the Ale II","Receive a score of 20,000 or better for your efforts during a victorious campaign in the Battle for Aleport.",5,0,0,62901,0,0,0,0,0,0,0,0,0,0,0,0
421,51,"An Eye on the Ale III","Receive a score of 30,000 or better for your efforts during a victorious campaign in the Battle for Aleport.",5,0,0,62901,0,0,0,0,0,0,0,0,0,0,0,0
422,51,"An Eye on the Ale IV","Receive a score of 40,000 or better for your efforts during a victorious campaign in the Battle for Aleport.",5,0,0,62901,0,0,0,0,0,0,0,0,0,0,0,0
423,51,"First Blood: Aleport","Receive a score of 50,000 or better for your efforts during a victorious campaign in the Battle for Aleport.",10,70,0,62901,0,0,0,0,0,0,0,0,0,0,0,0
424,51,"An Eye on the Trees I","Receive a score of 10,000 or better for your efforts during a victorious campaign in the Battle for Hyrstmill.",5,0,0,62902,0,0,0,0,0,0,0,0,0,0,0,0
425,51,"An Eye on the Trees II","Receive a score of 20,000 or better for your efforts during a victorious campaign in the Battle for Hyrstmill.",5,0,0,62902,0,0,0,0,0,0,0,0,0,0,0,0
426,51,"An Eye on the Trees III","Receive a score of 30,000 or better for your efforts during a victorious campaign in the Battle for Hyrstmill.",5,0,0,62902,0,0,0,0,0,0,0,0,0,0,0,0
427,51,"An Eye on the Trees IV","Receive a score of 40,000 or better for your efforts during a victorious campaign in the Battle for Hyrstmill.",5,0,0,62902,0,0,0,0,0,0,0,0,0,0,0,0
428,51,"First Blood: Hyrstmill","Receive a score of 50,000 or better for your efforts during a victorious campaign in the Battle for Hyrstmill.",10,71,0,62902,0,0,0,0,0,0,0,0,0,0,0,0
429,51,"An Eye on the Gold I","Receive a score of 10,000 or better for your efforts during a victorious campaign in the Battle for the Golden Bazaar.",5,0,0,62903,0,0,0,0,0,0,0,0,0,0,0,0
430,51,"An Eye on the Gold II","Receive a score of 20,000 or better for your efforts during a victorious campaign in the Battle for the Golden Bazaar.",5,0,0,62903,0,0,0,0,0,0,0,0,0,0,0,0
431,51,"An Eye on the Gold III","Receive a score of 30,000 or better for your efforts during a victorious campaign in the Battle for the Golden Bazaar.",5,0,0,62903,0,0,0,0,0,0,0,0,0,0,0,0
432,51,"An Eye on the Gold IV","Receive a score of 40,000 or better for your efforts during a victorious campaign in the Battle for the Golden Bazaar.",5,0,0,62903,0,0,0,0,0,0,0,0,0,0,0,0
433,51,"First Blood: Golden Bazaar","Receive a score of 50,000 or better for your efforts during a victorious campaign in the Battle for the Golden Bazaar.",10,72,0,62903,0,0,0,0,0,0,0,0,0,0,0,0
434,51,"Holding the Hamlet: Aleport I","Defend Aleport from invading kobold forces 5 times.",5,0,0,62901,1,162,5,0,0,0,0,0,0,0,0,0
435,51,"Holding the Hamlet: Aleport II","Defend Aleport from invading kobold forces 10 times.",5,0,0,62901,1,162,10,0,0,0,0,0,0,0,0,0
436,51,"Holding the Hamlet: Aleport III","Defend Aleport from invading kobold forces 50 times.",5,0,0,62901,1,162,50,0,0,0,0,0,0,0,0,0
437,51,"Holding the Hamlet: Aleport IV","Defend Aleport from invading kobold forces 100 times.",5,0,0,62901,1,162,100,0,0,0,0,0,0,0,0,0
438,51,"To Be or Not to Be the Guardian of Aleport","Defend Aleport from invading kobold forces 1,000 times.",10,73,0,62901,1,162,1000,0,0,0,0,0,0,0,0,0
439,51,"Holding the Hamlet: Hyrstmill I","Defend Hyrstmill from invading Ixali forces 5 times.",5,0,0,62902,1,163,5,0,0,0,0,0,0,0,0,0
440,51,"Holding the Hamlet: Hyrstmill II","Defend Hyrstmill from invading Ixali forces 10 times.",5,0,0,62902,1,163,10,0,0,0,0,0,0,0,0,0
441,51,"Holding the Hamlet: Hyrstmill III","Defend Hyrstmill from invading Ixali forces 50 times.",5,0,0,62902,1,163,50,0,0,0,0,0,0,0,0,0
442,51,"Holding the Hamlet: Hyrstmill IV","Defend Hyrstmill from invading Ixali forces 100 times.",5,0,0,62902,1,163,100,0,0,0,0,0,0,0,0,0
443,51,"To Be or Not to Be the Guardian of Hyrstmill","Defend Hyrstmill from invading Ixali forces 1,000 times.",10,74,0,62902,1,163,1000,0,0,0,0,0,0,0,0,0
444,51,"Holding the Hamlet: Golden Bazaar I","Defend the Golden Bazaar from invading Amalj'aa forces 5 times.",5,0,0,62903,1,164,5,0,0,0,0,0,0,0,0,0
445,51,"Holding the Hamlet: Golden Bazaar II","Defend the Golden Bazaar from invading Amalj'aa forces 10 times.",5,0,0,62903,1,164,10,0,0,0,0,0,0,0,0,0
446,51,"Holding the Hamlet: Golden Bazaar III","Defend the Golden Bazaar from invading Amalj'aa forces 50 times.",5,0,0,62903,1,164,50,0,0,0,0,0,0,0,0,0
447,51,"Holding the Hamlet: Golden Bazaar IV","Defend the Golden Bazaar from invading Amalj'aa forces 100 times.",5,0,0,62903,1,164,100,0,0,0,0,0,0,0,0,0
448,51,"To Be or Not to Be the Guardian of the Golden Bazaar","Defend the Golden Bazaar from invading Amalj'aa forces 1,000 times.",10,75,0,62903,1,164,1000,0,0,0,0,0,0,0,0,0
449,51,"Helping the Hamlet: Aleport I","Procure and submit supplies 10 times during the Battle for Aleport.",5,0,0,62901,1,165,10,0,0,0,0,0,0,0,0,0
450,51,"Helping the Hamlet: Aleport II","Procure and submit supplies 100 times during the Battle for Aleport.",5,0,0,62901,1,165,100,0,0,0,0,0,0,0,0,0
451,51,"Helping the Hamlet: Aleport III","Procure and submit supplies 500 times during the Battle for Aleport.",5,0,0,62901,1,165,500,0,0,0,0,0,0,0,0,0
452,51,"Helping the Hamlet: Aleport IV","Procure and submit supplies 1,000 times during the Battle for Aleport.",5,0,0,62901,1,165,1000,0,0,0,0,0,0,0,0,0
453,51,"To Be or Not to Be the Wind of Aleport","Procure and submit supplies 10,000 times during the Battle for Aleport.",10,76,0,62901,1,165,10000,0,0,0,0,0,0,0,0,0
454,51,"Helping the Hamlet: Hyrstmill I","Procure and submit supplies 10 times during the Battle for Hyrstmill.",5,0,0,62902,1,166,10,0,0,0,0,0,0,0,0,0
455,51,"Helping the Hamlet: Hyrstmill II","Procure and submit supplies 100 times during the Battle for Hyrstmill.",5,0,0,62902,1,166,100,0,0,0,0,0,0,0,0,0
456,51,"Helping the Hamlet: Hyrstmill III","Procure and submit supplies 500 times during the Battle for Hyrstmill.",5,0,0,62902,1,166,500,0,0,0,0,0,0,0,0,0
457,51,"Helping the Hamlet: Hyrstmill IV","Procure and submit supplies 1,000 times during the Battle for Hyrstmill.",5,0,0,62902,1,166,1000,0,0,0,0,0,0,0,0,0
458,51,"To Be or Not to Be the Wind of Hyrstmill","Procure and submit supplies 10,000 times during the Battle for Hyrstmill.",10,77,0,62902,1,166,10000,0,0,0,0,0,0,0,0,0
459,51,"Helping the Hamlet: Golden Bazaar I","Procure and submit supplies 10 times during the Battle for the Golden Bazaar.",5,0,0,62903,1,167,10,0,0,0,0,0,0,0,0,0
460,51,"Helping the Hamlet: Golden Bazaar II","Procure and submit supplies 100 times during the Battle for the Golden Bazaar.",5,0,0,62903,1,167,100,0,0,0,0,0,0,0,0,0
461,51,"Helping the Hamlet: Golden Bazaar III","Procure and submit supplies 500 times during the Battle for the Golden Bazaar.",5,0,0,62903,1,167,500,0,0,0,0,0,0,0,0,0
462,51,"Helping the Hamlet: Golden Bazaar IV","Procure and submit supplies 1,000 times during the Battle for the Golden Bazaar.",5,0,0,62903,1,167,1000,0,0,0,0,0,0,0,0,0
463,51,"To Be or Not to Be the Wind of the Golden Bazaar","Procure and submit supplies 10,000 times during the Battle for the Golden Bazaar.",10,78,0,62903,1,167,10000,0,0,0,0,0,0,0,0,0
464,51,"Habiting the Hamlet: Aleport I","Craft and submit materia-augmented equipment 10 times during the Battle for Aleport.",5,0,0,62901,1,168,10,0,0,0,0,0,0,0,0,0
465,51,"Habiting the Hamlet: Aleport II","Craft and submit materia-augmented equipment 100 times during the Battle for Aleport.",5,0,0,62901,1,168,100,0,0,0,0,0,0,0,0,0
466,51,"Habiting the Hamlet: Aleport III","Craft and submit materia-augmented equipment 500 times during the Battle for Aleport.",5,0,0,62901,1,168,500,0,0,0,0,0,0,0,0,0
467,51,"Habiting the Hamlet: Aleport IV","Craft and submit materia-augmented equipment 1,000 times during the Battle for Aleport.",5,0,0,62901,1,168,1000,0,0,0,0,0,0,0,0,0
468,51,"To Be or Not to Be the Hand of Aleport","Craft and submit materia-augmented equipment 10,000 times during the Battle for Aleport.",10,79,0,62901,1,168,10000,0,0,0,0,0,0,0,0,0
469,51,"Habiting the Hamlet: Hyrstmill I","Craft and submit materia-augmented equipment 10 times during the Battle for Hyrstmill.",5,0,0,62902,1,169,10,0,0,0,0,0,0,0,0,0
470,51,"Habiting the Hamlet: Hyrstmill II","Craft and submit materia-augmented equipment 100 times during the Battle for Hyrstmill.",5,0,0,62902,1,169,100,0,0,0,0,0,0,0,0,0
471,51,"Habiting the Hamlet: Hyrstmill III","Craft and submit materia-augmented equipment 500 times during the Battle for Hyrstmill.",5,0,0,62902,1,169,500,0,0,0,0,0,0,0,0,0
472,51,"Habiting the Hamlet: Hyrstmill IV","Craft and submit materia-augmented equipment 1,000 times during the Battle for Hyrstmill.",5,0,0,62902,1,169,1000,0,0,0,0,0,0,0,0,0
473,51,"To Be or Not to Be the Hand of Hyrstmill","Craft and submit materia-augmented equipment 10,000 times during the Battle for Hyrstmill.",10,80,0,62902,1,169,10000,0,0,0,0,0,0,0,0,0
474,51,"Habiting the Hamlet: Golden Bazaar I","Craft and submit materia-augmented equipment 10 times during the Battle for the Golden Bazaar.",5,0,0,62903,1,170,10,0,0,0,0,0,0,0,0,0
475,51,"Habiting the Hamlet: Golden Bazaar II","Craft and submit materia-augmented equipment 100 times during the Battle for the Golden Bazaar.",5,0,0,62903,1,170,100,0,0,0,0,0,0,0,0,0
476,51,"Habiting the Hamlet: Golden Bazaar III","Craft and submit materia-augmented equipment 500 times during the Battle for the Golden Bazaar.",5,0,0,62903,1,170,500,0,0,0,0,0,0,0,0,0
477,51,"Habiting the Hamlet: Golden Bazaar IV","Craft and submit materia-augmented equipment 1,000 times during the Battle for the Golden Bazaar.",5,0,0,62903,1,170,1000,0,0,0,0,0,0,0,0,0
478,51,"To Be or Not to Be the Hand of the Golden Bazaar","Craft and submit materia-augmented equipment 10,000 times during the Battle for the Golden Bazaar.",10,81,0,62903,1,170,10000,0,0,0,0,0,0,0,0,0
479,51,"Leave Your Hammer at Home: Aleport","Emerge victorious in the Battle for Aleport without the assistance of any Disciples of the Land or Hand.",5,0,0,62901,0,0,0,0,0,0,0,0,0,0,0,0
480,51,"Leave Your Hammer at Home: Hyrstmill","Emerge victorious in the Battle for Hyrstmill without the assistance of any Disciples of the Land or Hand.",5,0,0,62902,0,0,0,0,0,0,0,0,0,0,0,0
481,51,"Leave Your Hammer at Home: Golden Bazaar","Emerge victorious in the Battle for the Golden Bazaar without the assistance of any Disciples of the Land or Hand.",5,0,0,62903,0,0,0,0,0,0,0,0,0,0,0,0
482,51,"Make Stuff, Not War: Aleport","Emerge victorious in the Battle for Aleport without the assistance of any Disciples of War or Magic.",5,0,0,62901,0,0,0,0,0,0,0,0,0,0,0,0
483,51,"Make Stuff, Not War: Hyrstmill","Emerge victorious in the Battle for Hyrstmill without the assistance of any Disciples of War or Magic.",5,0,0,62902,0,0,0,0,0,0,0,0,0,0,0,0
484,51,"Make Stuff, Not War: Golden Bazaar","Emerge victorious in the Battle for the Golden Bazaar without the assistance of any Disciples of War or Magic.",5,0,0,62903,0,0,0,0,0,0,0,0,0,0,0,0
485,51,"Looking Out for the Little People","Emerge victorious in the Battle for Aleport, the Battle for Hyrstmill, and the Battle for the Golden Bazaar.",5,0,0,62939,0,0,0,0,0,0,0,0,0,0,0,0
486,52,"It's Reining Deer","Obtain a festive Starlight Celebration outfit consisting of a set of reindeer antlers and a reindeer suit.",20,82,0,62931,0,0,0,0,0,0,0,0,0,0,0,0
487,52,"Beast from the East","Obtain a dragon kabuto during the Heavensturn festivities.",5,0,0,62932,0,0,0,0,0,0,0,0,0,0,0,0
488,52,"Red Beast from the East","Obtain a crimson dragon kabuto during the Heavensturn festivities.",5,0,0,62934,0,0,0,0,0,0,0,0,0,0,0,0
489,52,"Gold Beast from the East","Obtain a golden dragon kabuto during the Heavensturn festivities.",5,0,0,62933,0,0,0,0,0,0,0,0,0,0,0,0
490,52,"Black Beast from the East","Obtain a black dragon kabuto during the Heavensturn festivities.",5,0,0,62935,0,0,0,0,0,0,0,0,0,0,0,0
491,52,"Get All the Things!","Obtain all four dragon kabuto as part of the Heavensturn festivities.",20,83,0,62908,0,0,0,0,0,0,0,0,0,0,0,0
492,52,"Love Me Tender","Obtain a paramour's pendant during the Valentione's Day festivities.",5,0,0,62921,0,0,0,0,0,0,0,0,0,0,0,0
493,52,"B.F.F.","Obtain a platinum paramour's pendant during the Valentione's Day festivities.",5,0,0,62922,0,0,0,0,0,0,0,0,0,0,0,0
494,52,"Did It Mostly for the Glory of Love","Obtain the Band of Eternal Passion during the Valentione's Day festivities.",5,0,0,62923,0,0,0,0,0,0,0,0,0,0,0,0
495,52,"Love Makes the World Go Round","Obtain a paramour's pendant, platinum paramour's pendant, and the Band of Eternal Passion during the Valentione's Day festivities.",20,84,0,62908,0,0,0,0,0,0,0,0,0,0,0,0
496,52,"Royal Audience","Obtain a peach blossom earring.",20,85,0,62924,0,0,0,0,0,0,0,0,0,0,0,0
497,52,"Eggsceptional Hunting","Obtain a pristine egg ring.",5,0,0,62925,0,0,0,0,0,0,0,0,0,0,0,0
498,52,"Eggstraordinary Hunting","Obtain a vibrant egg ring.",5,0,0,62928,0,0,0,0,0,0,0,0,0,0,0,0
499,52,"Eggsemplary Hunting","Obtain a brilliant egg ring.",5,0,0,62927,0,0,0,0,0,0,0,0,0,0,0,0
500,52,"Eggstreme Hunting","Obtain a midnight egg ring.",5,0,0,62926,0,0,0,0,0,0,0,0,0,0,0,0
501,52,"Eggstravagant Hunting","Obtain a chocobo egg ring.",5,0,0,62929,0,0,0,0,0,0,0,0,0,0,0,0
502,52,"Seven Short of a Dozen","Obtain all five egg rings.",20,86,0,62908,0,0,0,0,0,0,0,0,0,0,0,0
503,52,"Cascadier Survivor","Obtain a lord's yukata (blue) or a lady's yukata (red) during the Moonfire Faire festivities.",5,0,0,62917,0,0,0,0,0,0,0,0,0,0,0,0
504,52,"Stylish Cascadier","Obtain a lord's yukata (green) or a lady's yukata (blue) during the Moonfire Faire festivities.",5,0,0,62918,0,0,0,0,0,0,0,0,0,0,0,0
505,52,"Dapper Cascadier","Obtain a lord's yukata (grey) or a lady's yukata (black) during the Moonfire Faire festivities.",5,0,0,62919,0,0,0,0,0,0,0,0,0,0,0,0
506,52,"Classy Cascadier","Obtain a pair of lord's drawers (white) or a pair of lady's knickers (white) during the Moonfire Faire festivities.",5,0,0,62936,0,0,0,0,0,0,0,0,0,0,0,0
507,52,"Refined Cascadier","Obtain a pair of lord's drawers (gold) or a pair of lady's knickers (gold) during the Moonfire Faire festivities.",5,0,0,62937,0,0,0,0,0,0,0,0,0,0,0,0
508,52,"Clogging Along","Obtain a pair of lord's clogs or lady's clogs during the Moonfire Faire festivities.",5,0,0,62920,0,0,0,0,0,0,0,0,0,0,0,0
509,52,"Cascadier for Life","Obtain all six Moonfire Faire achievements.",20,87,0,62908,0,0,0,0,0,0,0,0,0,0,0,0
510,52,"Chock-full of Elemental Goodness","Obtain an over-aspected cluster.",20,88,0,62930,0,0,0,0,0,0,0,0,0,0,0,0
511,53,"One-upping the Antares","Defeat Antares in the Thousand Maws of TotoRak.",5,0,0,62907,0,0,0,0,0,0,0,0,0,0,0,0
512,53,"Kicking Sargas and Taking Names","Defeat Sargas in the Thousand Maws of TotoRak.",5,0,0,62907,0,0,0,0,0,0,0,0,0,0,0,0
513,53,"Shaula We Dance?","Defeat Shaula in the Thousand Maws of TotoRak.",5,0,0,62907,0,0,0,0,0,0,0,0,0,0,0,0
514,53,"Like a Batraal out of Hell","Defeat Batraal in Dzemael Darkhold.",5,0,0,62907,0,0,0,0,0,0,0,0,0,0,0,0
515,53,"Miser Neutralizer","Defeat the Miser's Mistress in the Aurum Vale.",5,0,0,62907,0,0,0,0,0,0,0,0,0,0,0,0
516,53,"Raiding the Vale","Defeat the Miser's Mistress and open all five treasure coffers in the Aurum Vale.",5,0,0,62907,0,0,0,0,0,0,0,0,0,0,0,0
517,53,"Breathless","Clear the Aurum Vale without consuming a single morbol fruit or vine.",5,0,0,62907,0,0,0,0,0,0,0,0,0,0,0,0
518,53,"Three Heads Are Better than One","Defeat the chimera in Cutter's Cry.",5,0,0,62907,0,0,0,0,0,0,0,0,0,0,0,0
519,53,"Making the Cut","Defeat the chimera and open all five treasure coffers in Cutter's Cry.",5,0,0,62907,0,0,0,0,0,0,0,0,0,0,0,0
520,53,"Big Ants Don't Cry","Clear Cutter's Cry while remaining with your party and defeating the Myrmidon Marshal.",5,0,0,62907,0,0,0,0,0,0,0,0,0,0,0,0
521,54,"Taking in the Sights: La Noscea","Attune with all 19 aetheryte crystals and aetherial gates in La Noscea.",5,0,0,62909,0,0,0,0,0,0,0,0,0,0,0,0
522,54,"Taking in the Sights: Black Shroud","Attune with all 23 aetheryte crystals and aetherial gates in the Black Shroud.",5,0,0,62909,0,0,0,0,0,0,0,0,0,0,0,0
523,54,"Taking in the Sights: Thanalan","Attune with all 22 aetheryte crystals and aetherial gates in Thanalan.",5,0,0,62909,0,0,0,0,0,0,0,0,0,0,0,0
524,54,"Taking in the Sights: Coerthas","Attune with all 19 aetheryte crystals and aetherial gates in Coerthas.",5,0,0,62909,0,0,0,0,0,0,0,0,0,0,0,0
525,54,"Taking in the Sights: Mor Dhona","Attune with the 4 aetheryte crystals and aetherial gates in Mor Dhona at Revenant's Toll, Brittlebark, the Fogfens, and the Singing Shards.",5,0,0,62909,0,0,0,0,0,0,0,0,0,0,0,0
526,54,"Been There, Done That","Complete the “Taking in the Sights” achievements for La Noscea, the Black Shroud, Thanalan, Coerthas, and Mor Dhona.",10,105,0,62910,0,0,0,0,0,0,0,0,0,0,0,0
527,45,"All Watched Over by a Maelstrom of Loving Grace","Officially enlist in the Maelstrom.",5,0,0,62951,1,241,0,0,0,0,0,0,0,0,4,0
528,46,"Snakebitten","Officially enlist in the Order of the Twin Adder.",5,0,0,62952,1,242,0,0,0,0,0,0,0,0,4,0
529,47,"Light My Fire","Officially enlist in the Immortal Flames.",5,0,0,62953,1,243,0,0,0,0,0,0,0,0,4,0
530,45,"A Storm of Seals I","Earn 10,000 Storm Seals.",5,0,0,62951,1,138,10000,0,0,0,0,0,0,0,3,0
531,45,"A Storm of Seals II","Earn 50,000 Storm Seals.",5,0,0,62951,1,138,50000,0,0,0,0,0,0,0,3,0
532,45,"A Storm of Seals III","Earn 100,000 Storm Seals.",10,89,0,62951,1,138,100000,0,0,0,0,0,0,0,3,0
533,45,"The Ruby Anchor","Earn 500,000 Storm Seals.",20,0,2222,62951,1,138,500000,0,0,0,0,0,0,0,3,0
534,46,"A Snake in the Brass I","Earn 10,000 Serpent Seals.",5,0,0,62952,1,139,10000,0,0,0,0,0,0,0,3,0
535,46,"A Snake in the Brass II","Earn 50,000 Serpent Seals.",5,0,0,62952,1,139,50000,0,0,0,0,0,0,0,3,0
536,46,"A Snake in the Brass III","Earn 100,000 Serpent Seals.",10,90,0,62952,1,139,100000,0,0,0,0,0,0,0,3,0
537,46,"The Mahogany Leaf","Earn 500,000 Serpent Seals.",20,0,2221,62952,1,139,500000,0,0,0,0,0,0,0,3,0
538,47,"Burning a Hole in My Pocket I","Earn 10,000 Flame Seals.",5,0,0,62953,1,140,10000,0,0,0,0,0,0,0,3,0
539,47,"Burning a Hole in My Pocket II","Earn 50,000 Flame Seals.",5,0,0,62953,1,140,50000,0,0,0,0,0,0,0,3,0
540,47,"Burning a Hole in My Pocket III","Earn 100,000 Flame Seals.",10,91,0,62953,1,140,100000,0,0,0,0,0,0,0,3,0
541,47,"The Mythril Scales","Earn 500,000 Flame Seals.",20,0,2223,62953,1,140,500000,0,0,0,0,0,0,0,3,0
542,45,"In Good Company: Maelstrom I","Complete 10 company levequests for the Maelstrom.",5,0,0,62951,1,141,10,0,0,0,0,0,0,0,3,0
543,45,"In Good Company: Maelstrom II","Complete 100 company levequests for the Maelstrom.",5,0,0,62951,1,141,100,0,0,0,0,0,0,0,3,0
544,45,"In Good Company: Maelstrom III","Complete 200 company levequests for the Maelstrom.",10,92,0,62951,1,141,200,0,0,0,0,0,0,0,3,0
545,45,"The Turquoise Cannon","Complete 500 company levequests for the Maelstrom.",20,0,6116,62951,1,141,500,0,0,0,0,0,0,0,3,0
546,46,"In Good Company: Twin Adder I","Complete 10 company levequests for the Order of the Twin Adder.",5,0,0,62952,1,142,10,0,0,0,0,0,0,0,3,0
547,46,"In Good Company: Twin Adder II","Complete 100 company levequests for the Order of the Twin Adder.",5,0,0,62952,1,142,100,0,0,0,0,0,0,0,3,0
548,46,"In Good Company: Twin Adder III","Complete 200 company levequests for the Order of the Twin Adder.",10,93,0,62952,1,142,200,0,0,0,0,0,0,0,3,0
549,46,"The Ironwood Leaf","Complete 500 company levequests for the Order of the Twin Adder.",20,0,6117,62952,1,142,500,0,0,0,0,0,0,0,3,0
550,47,"In Good Company: Immortal Flames I","Complete 10 company levequests for the Immortal Flames.",5,0,0,62953,1,143,10,0,0,0,0,0,0,0,3,0
551,47,"In Good Company: Immortal Flames II","Complete 100 company levequests for the Immortal Flames.",5,0,0,62953,1,143,100,0,0,0,0,0,0,0,3,0
552,47,"In Good Company: Immortal Flames III","Complete 200 company levequests for the Immortal Flames.",10,94,0,62953,1,143,200,0,0,0,0,0,0,0,3,0
553,47,"The Silver Scales","Complete 500 company levequests for the Immortal Flames.",20,0,6118,62953,1,143,500,0,0,0,0,0,0,0,3,0
554,45,"Fueling the Storm I","Complete 10 supply missions for the Maelstrom.",5,0,0,62951,1,144,10,0,0,0,0,0,0,0,3,0
555,45,"Fueling the Storm II","Complete 50 supply missions for the Maelstrom.",5,0,0,62951,1,144,50,0,0,0,0,0,0,0,3,0
556,45,"Fueling the Storm III","Complete 200 supply missions for the Maelstrom.",10,95,0,62951,1,144,200,0,0,0,0,0,0,0,3,0
557,45,"The Onyx Oars","Complete 500 supply missions for the Maelstrom.",20,0,4274,62951,1,144,500,0,0,0,0,0,0,0,3,0
558,46,"Feeding the Serpent I","Complete 10 supply missions for the Order of the Twin Adder.",5,0,0,62952,1,145,10,0,0,0,0,0,0,0,3,0
559,46,"Feeding the Serpent II","Complete 50 supply missions for the Order of the Twin Adder.",5,0,0,62952,1,145,50,0,0,0,0,0,0,0,3,0
560,46,"Feeding the Serpent III","Complete 200 supply missions for the Order of the Twin Adder.",10,96,0,62952,1,145,200,0,0,0,0,0,0,0,3,0
561,46,"The Sycamore Leaf","Complete 500 supply missions for the Order of the Twin Adder.",20,0,4276,62952,1,145,500,0,0,0,0,0,0,0,3,0
562,47,"Fanning the Flames I","Complete 10 supply missions for the Immortal Flames.",5,0,0,62953,1,146,10,0,0,0,0,0,0,0,3,0
563,47,"Fanning the Flames II","Complete 50 supply missions for the Immortal Flames.",5,0,0,62953,1,146,50,0,0,0,0,0,0,0,3,0
564,47,"Fanning the Flames III","Complete 200 supply missions for the Immortal Flames.",10,97,0,62953,1,146,200,0,0,0,0,0,0,0,3,0
565,47,"The Brass Scales","Complete 500 supply missions for the Immortal Flames.",20,0,4275,62953,1,146,500,0,0,0,0,0,0,0,3,0
566,45,"To Each According to His Need: Maelstrom I","Complete 10 provisioning missions for the Maelstrom.",5,0,0,62951,1,147,10,0,0,0,0,0,0,0,3,0
567,45,"To Each According to His Need: Maelstrom II","Complete 30 provisioning missions for the Maelstrom.",5,0,0,62951,1,147,30,0,0,0,0,0,0,0,3,0
568,45,"To Each According to His Need: Maelstrom III","Complete 100 provisioning missions for the Maelstrom.",10,98,0,62951,1,147,100,0,0,0,0,0,0,0,3,0
569,45,"The Jade Mast","Complete 200 provisioning missions for the Maelstrom.",20,0,4517,62951,1,147,200,0,0,0,0,0,0,0,3,0
570,46,"To Each According to His Need: Twin Adder I","Complete 10 provisioning missions for the Order of the Twin Adder.",5,0,0,62952,1,148,10,0,0,0,0,0,0,0,3,0
571,46,"To Each According to His Need: Twin Adder II","Complete 30 provisioning missions for the Order of the Twin Adder.",5,0,0,62952,1,148,30,0,0,0,0,0,0,0,3,0
572,46,"To Each According to His Need: Twin Adder III","Complete 100 provisioning missions for the Order of the Twin Adder.",10,99,0,62952,1,148,100,0,0,0,0,0,0,0,3,0
573,46,"The Willow Leaf","Complete 200 provisioning missions for the Order of the Twin Adder.",20,0,4519,62952,1,148,200,0,0,0,0,0,0,0,3,0
574,47,"To Each According to His Need: Immortal Flames I","Complete 10 provisioning missions for the Immortal Flames.",5,0,0,62953,1,149,10,0,0,0,0,0,0,0,3,0
575,47,"To Each According to His Need: Immortal Flames II","Complete 30 provisioning missions for the Immortal Flames.",5,0,0,62953,1,149,30,0,0,0,0,0,0,0,3,0
576,47,"To Each According to His Need: Immortal Flames III","Complete 100 provisioning missions for the Immortal Flames.",10,100,0,62953,1,149,100,0,0,0,0,0,0,0,3,0
577,47,"The Bronze Scales","Complete 200 provisioning missions for the Immortal Flames.",20,0,4518,62953,1,149,200,0,0,0,0,0,0,0,3,0
578,55,"Twelve Minutes or Less or Your Cargo's Free","Complete level 20 caravan security in less than 12 minutes (Earth time).",5,0,0,4004,0,0,0,0,0,0,0,0,0,0,0,0
579,55,"Ten Minutes or Less or Your Cargo's Free","Complete level 20 caravan security in less than 10 minutes (Earth time).",5,0,0,4004,0,0,0,0,0,0,0,0,0,0,0,0
580,55,"Eight Minutes or Less or Your Cargo's Free","Complete level 20 caravan security in less than 8 minutes (Earth time).",10,101,0,4004,0,0,0,0,0,0,0,0,0,0,0,0
581,55,"Gone in Twelve Minutes","Complete level 40 caravan security in less than 12 minutes (Earth time).",5,0,0,4004,0,0,0,0,0,0,0,0,0,0,0,0
582,55,"Gone in Ten Minutes","Complete level 40 caravan security in less than 10 minutes (Earth time).",5,0,0,4004,0,0,0,0,0,0,0,0,0,0,0,0
583,55,"Gone in Eight Minutes","Complete level 40 caravan security in less than 8 minutes (Earth time).",10,103,0,4004,0,0,0,0,0,0,0,0,0,0,0,0
584,55,"Handle with Care I","Protect a total of 100 packs of chocobo cargo.",5,0,0,9011,5,100,150,151,152,0,0,0,0,0,0,0
585,55,"Handle with Care II","Protect a total of 500 packs of chocobo cargo.",5,0,0,9011,5,500,150,151,152,0,0,0,0,0,0,0
586,55,"Handle with Care III","Protect a total of 1,000 packs of chocobo cargo.",5,0,0,9011,5,1000,150,151,152,0,0,0,0,0,0,0
587,55,"Handle with Care IV","Protect a total of 5,000 packs of chocobo cargo.",10,102,0,9011,5,5000,150,151,152,0,0,0,0,0,0,0
588,55,"Chocobo Shrugged","Protect a total of 10,000 packs of chocobo cargo.",20,0,0,9011,5,10000,150,151,152,0,0,0,0,0,0,0
589,44,"I Make This Look Good","Obtain a complete set of Grand Company soldier armor consisting of a soldier's cap, a soldier's overcoat, a pair of soldier's gloves, and a pair of soldier's boots.<br>* Speak to Jonathas with all four items equipped.",5,0,0,151,1,235,0,0,0,0,0,0,0,0,4,0
590,44,"My Little Chocobo","Obtain a chocobo whistle.",5,0,0,9001,9,66236,66237,66238,0,0,0,0,0,0,4,0
591,44,"Pimp Your Ride","Purchase all three sets of Grand Company chocobo barding.",5,104,0,9014,1,236,0,0,0,0,0,0,0,0,4,0
592,11,"Through the Gate I","Achieve arcanist level 10.",5,0,0,33401,3,26,10,0,0,0,0,0,0,0,1,13
593,11,"Through the Gate II","Achieve arcanist level 20.",5,0,0,33401,3,26,20,0,0,0,0,0,0,0,1,14
594,11,"Through the Gate III","Achieve arcanist level 30.",5,0,0,33401,3,26,30,0,0,0,0,0,0,0,1,15
595,11,"Through the Gate IV","Achieve arcanist level 40.",5,0,0,33401,3,26,40,0,0,0,0,0,0,0,1,16
596,11,"Through the Gate V","Achieve arcanist level 50.",5,0,0,33401,3,26,50,0,0,0,0,0,0,0,1,17
597,17,"Green Eyes","Obtain the Veil of Wiyu in the quest “A Relic Reborn.”",10,106,0,33457,6,66662,0,0,0,0,0,0,0,0,2,12
598,17,"The Reader","Obtain a copy of the <i>Omnilex</i> in the quest “A Relic Reborn.”",10,107,0,33458,6,66663,0,0,0,0,0,0,0,0,2,13
599,33,"Soul Summoner I","Complete the summoner job quest “Primal Burdens.”",5,0,0,26010,6,66632,0,0,0,0,0,0,0,0,2,180
600,33,"Flying Colors I","Complete the scholar job quest “The Beast Within.”",5,0,0,26011,6,66638,0,0,0,0,0,0,0,0,2,190
601,34,"In the Outfield I","Complete 10 fieldcraft levequests.",5,0,0,1514,1,179,10,0,0,0,0,0,0,0,1,17
602,34,"In the Outfield II","Complete 20 fieldcraft levequests.",5,0,0,1514,1,179,20,0,0,0,0,0,0,0,1,18
603,34,"In the Outfield III","Complete 50 fieldcraft levequests.",5,0,0,1514,1,179,50,0,0,0,0,0,0,0,1,19
604,34,"In the Outfield IV","Complete 100 fieldcraft levequests.",5,0,0,1514,1,179,100,0,0,0,0,0,0,0,1,20
605,34,"In the Outfield V","Complete 200 fieldcraft levequests.",5,0,0,1514,1,179,200,0,0,0,0,0,0,0,1,21
606,34,"In the Outfield VI","Complete 500 fieldcraft levequests.",10,108,0,1514,1,179,500,0,0,0,0,0,0,0,1,22
607,34,"Field of Dreams","Complete 1,000 fieldcraft levequests.",20,0,0,1519,1,179,1000,0,0,0,0,0,0,0,1,23
608,34,"Uphill Battle I","Complete 10 unique battlecraft levequests.",5,0,0,30408,1,180,10,0,0,0,0,0,0,0,1,25
609,34,"Uphill Battle II","Complete 50 unique battlecraft levequests.",5,0,0,30408,1,180,50,0,0,0,0,0,0,0,1,26
610,34,"Uphill Battle III","Complete 100 unique battlecraft levequests.",10,0,0,30408,1,180,100,0,0,0,0,0,0,0,1,27
611,34,"With Saw in Hand I","Complete 5 unique carpenter levequests.",5,0,0,35001,1,181,5,0,0,0,0,0,0,0,1,29
612,34,"With Saw in Hand II","Complete 20 unique carpenter levequests.",5,0,0,35001,1,181,20,0,0,0,0,0,0,0,1,30
613,34,"With Saw in Hand III","Complete 40 unique carpenter levequests.",10,0,0,35001,1,181,40,0,0,0,0,0,0,0,1,31
614,34,"With Hammer in Hand I","Complete 5 unique blacksmith levequests.",5,0,0,35106,1,182,5,0,0,0,0,0,0,0,1,33
615,34,"With Hammer in Hand II","Complete 20 unique blacksmith levequests.",5,0,0,35106,1,182,20,0,0,0,0,0,0,0,1,34
616,34,"With Hammer in Hand III","Complete 40 unique blacksmith levequests.",10,0,0,35106,1,182,40,0,0,0,0,0,0,0,1,35
617,34,"With Steel in Hand I","Complete 5 unique armorer levequests.",5,0,0,35203,1,183,5,0,0,0,0,0,0,0,1,37
618,34,"With Steel in Hand II","Complete 20 unique armorer levequests.",5,0,0,35203,1,183,20,0,0,0,0,0,0,0,1,38
619,34,"With Steel in Hand III","Complete 40 unique armorer levequests.",10,0,0,35203,1,183,40,0,0,0,0,0,0,0,1,39
620,34,"With Gem in Hand I","Complete 5 unique goldsmith levequests.",5,0,0,35301,1,184,5,0,0,0,0,0,0,0,1,41
621,34,"With Gem in Hand II","Complete 20 unique goldsmith levequests.",5,0,0,35301,1,184,20,0,0,0,0,0,0,0,1,42
622,34,"With Gem in Hand III","Complete 40 unique goldsmith levequests.",10,0,0,35301,1,184,40,0,0,0,0,0,0,0,1,43
623,34,"With Skin in Hand I","Complete 5 unique leatherworker levequests.",5,0,0,35404,1,185,5,0,0,0,0,0,0,0,1,45
624,34,"With Skin in Hand II","Complete 20 unique leatherworker levequests.",5,0,0,35404,1,185,20,0,0,0,0,0,0,0,1,46
625,34,"With Skin in Hand III","Complete 40 unique leatherworker levequests.",10,0,0,35404,1,185,40,0,0,0,0,0,0,0,1,47
626,34,"With Needle in Hand I","Complete 5 unique weaver levequests.",5,0,0,35501,1,186,5,0,0,0,0,0,0,0,1,49
627,34,"With Needle in Hand II","Complete 20 unique weaver levequests.",5,0,0,35501,1,186,20,0,0,0,0,0,0,0,1,50
628,34,"With Needle in Hand III","Complete 40 unique weaver levequests.",10,0,0,35501,1,186,40,0,0,0,0,0,0,0,1,51
629,34,"With Pestle in Hand I","Complete 5 unique alchemist levequests.",5,0,0,35604,1,187,5,0,0,0,0,0,0,0,1,53
630,34,"With Pestle in Hand II","Complete 20 unique alchemist levequests.",5,0,0,35604,1,187,20,0,0,0,0,0,0,0,1,54
631,34,"With Pestle in Hand III","Complete 40 unique alchemist levequests.",10,0,0,35604,1,187,40,0,0,0,0,0,0,0,1,55
632,34,"With Pan in Hand I","Complete 5 unique culinarian levequests.",5,0,0,35704,1,188,5,0,0,0,0,0,0,0,1,57
633,34,"With Pan in Hand II","Complete 20 unique culinarian levequests.",5,0,0,35704,1,188,20,0,0,0,0,0,0,0,1,58
634,34,"With Pan in Hand III","Complete 40 unique culinarian levequests.",10,0,0,35704,1,188,40,0,0,0,0,0,0,0,1,59
635,34,"With Pick in Hand I","Complete 5 unique miner levequests.",5,0,0,38003,1,189,5,0,0,0,0,0,0,0,1,61
636,34,"With Pick in Hand II","Complete 20 unique miner levequests.",5,0,0,38003,1,189,20,0,0,0,0,0,0,0,1,62
637,34,"With Pick in Hand III","Complete 40 unique miner levequests.",10,0,0,38003,1,189,40,0,0,0,0,0,0,0,1,63
638,34,"With Axe in Hand I","Complete 5 unique botanist levequests.",5,0,0,38103,1,190,5,0,0,0,0,0,0,0,1,65
639,34,"With Axe in Hand II","Complete 20 unique botanist levequests.",5,0,0,38103,1,190,20,0,0,0,0,0,0,0,1,66
640,34,"With Axe in Hand III","Complete 40 unique botanist levequests.",10,0,0,38103,1,190,40,0,0,0,0,0,0,0,1,67
641,34,"With Bait in Hand I","Complete 5 unique fisher levequests.",5,0,0,38203,1,191,5,0,0,0,0,0,0,0,1,69
642,34,"With Bait in Hand II","Complete 20 unique fisher levequests.",5,0,0,38203,1,191,20,0,0,0,0,0,0,0,1,70
643,34,"With Bait in Hand III","Complete 40 unique fisher levequests.",10,0,0,38203,1,191,40,0,0,0,0,0,0,0,1,71
644,33,"Father Knows Hest I","Complete 3 unique guildhests.",5,0,0,158,1,218,3,0,0,0,0,0,0,0,1,8
645,33,"Father Knows Hest II","Complete 7 unique guildhests.",5,0,0,158,1,218,7,0,0,0,0,0,0,0,1,9
646,33,"Father Knows Hest III","Complete 14 unique guildhests.",10,0,0,161,1,218,14,0,0,0,0,0,0,0,1,10
647,37,"Mapping the Realm: Middle La Noscea","Visit middle La Noscea and unlock the area map.",10,0,0,1001,8,15,0,0,0,0,0,0,0,0,1,1
648,37,"Mapping the Realm: Lower La Noscea","Visit lower La Noscea and unlock the area map.",10,0,0,1001,8,16,0,0,0,0,0,0,0,0,1,2
649,37,"Mapping the Realm: Eastern La Noscea","Visit eastern La Noscea and unlock the area map.",10,0,0,1001,8,17,0,0,0,0,0,0,0,0,1,3
650,37,"Mapping the Realm: Western La Noscea","Visit western La Noscea and unlock the area map.",10,0,0,1001,8,18,0,0,0,0,0,0,0,0,1,4
651,37,"Mapping the Realm: Upper La Noscea","Visit upper La Noscea and unlock the area map.",10,0,0,1001,8,19,0,0,0,0,0,0,0,0,1,5
652,39,"Mapping the Realm: Western Thanalan","Visit western Thanalan and unlock the area map.",10,0,0,1001,8,20,0,0,0,0,0,0,0,0,1,0
653,39,"Mapping the Realm: Central Thanalan","Visit central Thanalan and unlock the area map.",10,0,0,1001,8,21,0,0,0,0,0,0,0,0,1,0
654,39,"Mapping the Realm: Eastern Thanalan","Visit eastern Thanalan and unlock the area map.",10,0,0,1001,8,22,0,0,0,0,0,0,0,0,1,0
655,39,"Mapping the Realm: Southern Thanalan","Visit southern Thanalan and unlock the area map.",10,0,0,1001,8,23,0,0,0,0,0,0,0,0,1,0
656,39,"Mapping the Realm: Northern Thanalan","Visit northern Thanalan and unlock the area map.",10,0,0,1001,8,24,0,0,0,0,0,0,0,0,1,0
657,38,"Mapping the Realm: Central Shroud","Visit the Central Shroud and unlock the area map.",10,0,0,1001,8,4,0,0,0,0,0,0,0,0,1,1
658,38,"Mapping the Realm: East Shroud","Visit the East Shroud and unlock the area map.",10,0,0,1001,8,5,0,0,0,0,0,0,0,0,1,2
659,38,"Mapping the Realm: South Shroud","Visit the South Shroud and unlock the area map.",10,0,0,1001,8,6,0,0,0,0,0,0,0,0,1,3
660,38,"Mapping the Realm: North Shroud","Visit the North Shroud and unlock the area map.",10,0,0,1001,8,7,0,0,0,0,0,0,0,0,1,4
661,40,"Mapping the Realm: Coerthas Central Highlands","Visit the Coerthas central highlands and unlock the area map.",10,0,0,1001,8,53,0,0,0,0,0,0,0,0,1,0
662,41,"Mapping the Realm: Mor Dhona","Visit Mor Dhona and unlock the area map.",10,0,0,1001,8,25,0,0,0,0,0,0,0,0,1,0
663,37,"Mapping the Realm: Sastasha","Discover every location within Sastasha.",10,0,0,1001,8,31,0,0,0,0,0,0,0,0,1,7
664,37,"Mapping the Realm: Brayflox's Longstop","Discover every location within Brayflox's Longstop.",10,0,0,1001,8,45,0,0,0,0,0,0,0,0,1,8
665,37,"Mapping the Realm: The Wanderer's Palace","Discover every location within the Wanderer's Palace.",10,0,0,1001,8,32,0,0,0,0,0,0,0,0,1,9
666,39,"Mapping the Realm: Copperbell Mines","Discover every location within Copperbell Mines.",10,0,0,1001,8,34,0,0,0,0,0,0,0,0,1,0
667,39,"Mapping the Realm: Halatali","Discover every location within Halatali.",10,0,0,1001,8,46,0,0,0,0,0,0,0,0,1,0
668,39,"Mapping the Realm: Sunken Temple of Qarn","Discover every location within the Sunken Temple of Qarn.",10,0,0,1001,8,42,0,0,0,0,0,0,0,0,1,0
669,38,"Mapping the Realm: Tam-Tara Deepcroft","Discover every location within the Tam-Tara Deepcroft.",10,0,0,1001,8,8,0,0,0,0,0,0,0,0,1,5
670,38,"Mapping the Realm: Haukke Manor","Discover every location within Haukke Manor.",10,0,0,1001,8,48,0,0,0,0,0,0,0,0,1,7
671,38,"Mapping the Realm: Amdapor Keep","Discover every location within Amdapor Keep.",10,0,0,1001,8,49,0,0,0,0,0,0,0,0,1,8
672,40,"Mapping the Realm: Stone Vigil","Discover every location within the Stone Vigil.",10,0,0,1001,8,37,0,0,0,0,0,0,0,0,1,0
673,38,"Mapping the Realm: Thousand Maws of Toto-Rak","Discover every location within the Thousand Maws of Toto-Rak.",10,0,0,1001,8,9,0,0,0,0,0,0,0,0,1,6
674,39,"Mapping the Realm: Cutter's Cry","Discover every location within Cutter's Cry.",10,0,0,1001,8,52,0,0,0,0,0,0,0,0,1,0
675,40,"Mapping the Realm: Dzemael Darkhold","Discover every location within Dzemael Darkhold.",10,0,0,1001,8,50,0,0,0,0,0,0,0,0,1,0
676,40,"Mapping the Realm: Aurum Vale","Discover every location within the Aurum Vale.",10,0,0,1001,8,38,0,0,0,0,0,0,0,0,1,0
677,37,"Mapping the Realm: Outer La Noscea","Visit outer La Noscea and unlock the area map.",10,0,0,1001,8,30,0,0,0,0,0,0,0,0,1,6
678,39,"Mapping the Realm: Castrum Meridianum","Discover every location within Castrum Meridianum.",10,0,0,1001,8,47,0,0,0,0,0,0,0,0,1,0
679,39,"Mapping the Realm: Praetorium","Discover every location within the Praetorium.",10,0,0,1001,8,56,0,0,0,0,0,0,0,0,1,0
680,37,"Mapping the Realm: The Binding Coil of Bahamut I","Discover every location within the first turn of the Binding Coil of Bahamut.",10,0,0,1001,8,57,0,0,0,0,0,0,0,0,1,12
681,37,"Mapping the Realm: The Binding Coil of Bahamut II","Discover every location within the second turn of the Binding Coil of Bahamut.",10,0,0,1001,8,58,0,0,0,0,0,0,0,0,1,13
682,37,"Mapping the Realm: The Binding Coil of Bahamut III","Discover every location within the third turn of the Binding Coil of Bahamut.",10,0,0,1001,8,62,0,0,0,0,0,0,0,0,1,14
683,0,"Mapping the Realm: The Binding Coil of Bahamut IV","Discover every location within the fourth turn of the Binding Coil of Bahamut.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0
684,37,"Mapping the Realm: The Binding Coil of Bahamut V","Discover every location within the fifth turn of the Binding Coil of Bahamut.",10,0,0,1001,8,60,0,0,0,0,0,0,0,0,1,15
685,0,"Mapping the Realm: The Binding Coil of Bahamut VI","Discover every location within the final turn of the Binding Coil of Bahamut.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0
686,45,"In the Red I","Complete 5 unique Maelstrom levequests.",5,0,0,62951,1,238,5,0,0,0,0,0,0,0,1,0
687,45,"In the Red II","Complete 10 unique Maelstrom levequests.",5,0,0,62951,1,238,10,0,0,0,0,0,0,0,1,0
688,45,"In the Red III","Complete 15 unique Maelstrom levequests.",10,0,0,62951,1,238,15,0,0,0,0,0,0,0,1,0
689,46,"In the Yellow I","Complete 5 unique Order of the Twin Adder levequests.",5,0,0,62952,1,239,5,0,0,0,0,0,0,0,1,0
690,46,"In the Yellow II","Complete 10 unique Order of the Twin Adder levequests.",5,0,0,62952,1,239,10,0,0,0,0,0,0,0,1,0
691,46,"In the Yellow III","Complete 15 unique Order of the Twin Adder levequests.",10,0,0,62952,1,239,15,0,0,0,0,0,0,0,1,0
692,47,"In the Black I","Complete 5 unique Immortal Flames levequests.",5,0,0,62953,1,240,5,0,0,0,0,0,0,0,1,0
693,47,"In the Black II","Complete 10 unique Immortal Flames levequests.",5,0,0,62953,1,240,10,0,0,0,0,0,0,0,1,0
694,47,"In the Black III","Complete 15 unique Immortal Flames levequests.",10,0,0,62953,1,240,15,0,0,0,0,0,0,0,1,0
695,22,"I Made That: Carpenter I","Craft 30 unique carpenter recipes.",5,0,0,1524,1,192,30,0,0,0,0,0,0,0,1,8
696,22,"I Made That: Carpenter II","Craft 50 unique carpenter recipes.",5,0,0,1524,1,192,50,0,0,0,0,0,0,0,1,9
697,22,"I Made That: Carpenter III","Craft 100 unique carpenter recipes.",10,0,6127,1524,1,192,100,0,0,0,0,0,0,0,1,10
698,23,"I Made That: Blacksmith I","Craft 40 unique blacksmith recipes.",5,0,0,1574,1,193,40,0,0,0,0,0,0,0,1,8
699,23,"I Made That: Blacksmith II","Craft 90 unique blacksmith recipes.",5,0,0,1574,1,193,90,0,0,0,0,0,0,0,1,9
700,23,"I Made That: Blacksmith III","Craft 190 unique blacksmith recipes.",10,0,6128,1574,1,193,190,0,0,0,0,0,0,0,1,10
701,24,"I Made That: Armorer I","Craft 40 unique armorer recipes.",5,0,0,1625,1,194,40,0,0,0,0,0,0,0,1,8
702,24,"I Made That: Armorer II","Craft 80 unique armorer recipes.",5,0,0,1625,1,194,80,0,0,0,0,0,0,0,1,9
703,24,"I Made That: Armorer III","Craft 170 unique armorer recipes.",10,0,6129,1625,1,194,170,0,0,0,0,0,0,0,1,10
704,25,"I Made That: Goldsmith I","Craft 60 unique goldsmith recipes.",5,0,0,1676,1,195,60,0,0,0,0,0,0,0,1,8
705,25,"I Made That: Goldsmith II","Craft 130 unique goldsmith recipes.",5,0,0,1676,1,195,130,0,0,0,0,0,0,0,1,9
706,25,"I Made That: Goldsmith III","Craft 270 unique goldsmith recipes.",10,0,6130,1676,1,195,270,0,0,0,0,0,0,0,1,10
707,26,"I Made That: Leatherworker I","Craft 50 unique leatherworker recipes.",5,0,0,1724,1,196,50,0,0,0,0,0,0,0,1,8
708,26,"I Made That: Leatherworker II","Craft 110 unique leatherworker recipes.",5,0,0,1724,1,196,110,0,0,0,0,0,0,0,1,9
709,26,"I Made That: Leatherworker III","Craft 220 unique leatherworker recipes.",10,0,6131,1724,1,196,220,0,0,0,0,0,0,0,1,10
710,27,"I Made That: Weaver I","Craft 60 unique weaver recipes.",5,0,0,1774,1,197,60,0,0,0,0,0,0,0,1,8
711,27,"I Made That: Weaver II","Craft 120 unique weaver recipes.",5,0,0,1774,1,197,120,0,0,0,0,0,0,0,1,9
712,27,"I Made That: Weaver III","Craft 250 unique weaver recipes.",10,0,6132,1774,1,197,250,0,0,0,0,0,0,0,1,10
713,28,"I Made That: Alchemist I","Craft 30 unique alchemist recipes.",5,0,0,1825,1,198,30,0,0,0,0,0,0,0,1,8
714,28,"I Made That: Alchemist II","Craft 60 unique alchemist recipes.",5,0,0,1825,1,198,60,0,0,0,0,0,0,0,1,9
715,28,"I Made That: Alchemist III","Craft 110 unique alchemist recipes.",10,0,6133,1825,1,198,110,0,0,0,0,0,0,0,1,10
716,29,"I Made That: Culinarian I","Craft 30 unique culinarian recipes.",5,0,0,1875,1,199,30,0,0,0,0,0,0,0,1,8
717,29,"I Made That: Culinarian II","Craft 60 unique culinarian recipes.",5,0,0,1875,1,199,60,0,0,0,0,0,0,0,1,9
718,29,"I Made That: Culinarian III","Craft 120 unique culinarian recipes.",10,0,6134,1875,1,199,120,0,0,0,0,0,0,0,1,10
719,30,"I Found That: Miner I","Gather 15 unique items as a miner.",5,0,0,1015,1,200,15,0,0,0,0,0,0,0,1,21
720,30,"I Found That: Miner II","Gather 30 unique items as a miner.",5,0,0,1015,1,200,30,0,0,0,0,0,0,0,1,22
721,30,"I Found That: Miner III","Gather 50 unique items as a miner.",10,0,6135,1015,1,200,50,0,0,0,0,0,0,0,1,23
722,31,"I Found That: Botanist I","Gather 25 unique items as a botanist.",5,0,0,1065,1,201,25,0,0,0,0,0,0,0,1,21
723,31,"I Found That: Botanist II","Gather 50 unique items as a botanist.",5,0,0,1065,1,201,50,0,0,0,0,0,0,0,1,22
724,31,"I Found That: Botanist III","Gather 100 unique items as a botanist.",10,0,6136,1065,1,201,100,0,0,0,0,0,0,0,1,23
725,32,"I Caught That I","Catch 40 unique fish.",5,0,0,1104,1,202,40,0,0,0,0,0,0,0,1,21
726,32,"I Caught That II","Catch 80 unique fish.",5,0,0,1104,1,202,80,0,0,0,0,0,0,0,1,22
727,32,"I Caught That III","Catch 160 unique fish.",10,0,6137,1104,1,202,160,0,0,0,0,0,0,0,1,23
728,1,"Bump on a Log: Gladiator","Complete all gladiator entries in the hunting log.",20,0,6119,62801,7,0,0,0,0,0,0,0,0,0,1,9
729,1,"Bump on a Log: Pugilist","Complete all pugilist entries in the hunting log.",20,0,6120,62802,7,1,0,0,0,0,0,0,0,0,1,10
730,1,"Bump on a Log: Marauder","Complete all marauder entries in the hunting log.",20,0,6121,62803,7,2,0,0,0,0,0,0,0,0,1,11
731,1,"Bump on a Log: Lancer","Complete all lancer entries in the hunting log.",20,0,6122,62804,7,3,0,0,0,0,0,0,0,0,1,12
732,1,"Bump on a Log: Archer","Complete all archer entries in the hunting log.",20,0,6123,62805,7,4,0,0,0,0,0,0,0,0,1,13
733,1,"Bump on a Log: Conjurer","Complete all conjurer entries in the hunting log.",20,0,6124,62806,7,5,0,0,0,0,0,0,0,0,1,15
734,1,"Bump on a Log: Thaumaturge","Complete all thaumaturge entries in the hunting log.",20,0,6125,62807,7,6,0,0,0,0,0,0,0,0,1,16
735,1,"Bump on a Log: Arcanist","Complete all arcanist entries in the hunting log.",20,0,6126,62826,7,7,0,0,0,0,0,0,0,0,1,17
736,45,"Bump on a Log: Maelstrom","Complete all Maelstrom entries in the hunting log.",20,0,6167,62951,7,8,0,0,0,0,0,0,0,0,1,0
737,46,"Bump on a Log: Order of the Twin Adder","Complete all Order of the Twin Adder entries in the hunting log.",20,0,6168,62952,7,9,0,0,0,0,0,0,0,0,1,0
738,47,"Bump on a Log: Immortal Flames","Complete all Immortal Flames entries in the hunting log.",20,0,6169,62953,7,10,0,0,0,0,0,0,0,0,1,0
739,2,"To the Dungeons I","Successfully complete 5 unique instanced dungeon raids or trials.",5,0,0,152,1,216,5,0,0,0,0,0,0,0,1,1
740,2,"To the Dungeons II","Successfully complete 10 unique instanced dungeon raids or trials.",10,0,0,152,1,216,10,0,0,0,0,0,0,0,1,2
741,2,"To the Dungeons III","Successfully complete 20 unique instanced dungeon raids or trials.",20,0,0,152,1,216,20,0,0,0,0,0,0,0,1,3
742,2,"Dungeon Siege I","Complete 10 instanced dungeon raids or trials.",5,0,0,153,1,215,10,0,0,0,0,0,0,0,1,7
743,2,"Dungeon Siege II","Complete 30 instanced dungeon raids or trials.",5,0,0,153,1,215,30,0,0,0,0,0,0,0,1,8
744,2,"Dungeon Siege III","Complete 100 instanced dungeon raids or trials.",5,0,0,153,1,215,100,0,0,0,0,0,0,0,1,9
745,2,"Dungeon Siege IV","Complete 300 instanced dungeon raids or trials.",10,109,0,153,1,215,300,0,0,0,0,0,0,0,1,10
746,2,"Dungeon Master","Complete 1,000 instanced dungeon raids or trials.",20,0,0,153,1,215,1000,0,0,0,0,0,0,0,1,11
747,4,"The Binds that Tie I","Complete the Binding Coil of Bahamut.",5,0,0,357,1,217,1,0,0,0,0,0,0,0,1,0
748,4,"The Binds that Tie II","Complete the Binding Coil of Bahamut 5 times.",10,0,0,357,1,217,5,0,0,0,0,0,0,0,1,0
749,4,"The Binds that Tie III","Complete the Binding Coil of Bahamut 10 times.",20,0,0,357,1,217,10,0,0,0,0,0,0,0,1,0
750,22,"An Eye for Detail: Carpenter I","Craft 100 high-quality items as a carpenter.",5,0,0,35015,1,203,100,0,0,0,0,0,0,0,1,12
751,22,"An Eye for Detail: Carpenter II","Craft 500 high-quality items as a carpenter.",5,0,0,35015,1,203,500,0,0,0,0,0,0,0,1,13
752,22,"An Eye for Detail: Carpenter III","Craft 3,000 high-quality items as a carpenter.",10,0,0,35015,1,203,3000,0,0,0,0,0,0,0,1,14
753,23,"An Eye for Detail: Blacksmith I","Craft 100 high-quality items as a blacksmith.",5,0,0,35114,1,204,100,0,0,0,0,0,0,0,1,12
754,23,"An Eye for Detail: Blacksmith II","Craft 500 high-quality items as a blacksmith.",5,0,0,35114,1,204,500,0,0,0,0,0,0,0,1,13
755,23,"An Eye for Detail: Blacksmith III","Craft 3,000 high-quality items as a blacksmith.",10,0,0,35114,1,204,3000,0,0,0,0,0,0,0,1,14
756,24,"An Eye for Detail: Armorer I","Craft 100 high-quality items as an armorer.",5,0,0,35214,1,205,100,0,0,0,0,0,0,0,1,12
757,24,"An Eye for Detail: Armorer II","Craft 500 high-quality items as an armorer.",5,0,0,35214,1,205,500,0,0,0,0,0,0,0,1,13
758,24,"An Eye for Detail: Armorer III","Craft 3,000 high-quality items as an armorer.",10,0,0,35214,1,205,3000,0,0,0,0,0,0,0,1,14
759,25,"An Eye for Detail: Goldsmith I","Craft 100 high-quality items as a goldsmith.",5,0,0,35313,1,206,100,0,0,0,0,0,0,0,1,12
760,25,"An Eye for Detail: Goldsmith II","Craft 500 high-quality items as a goldsmith.",5,0,0,35313,1,206,500,0,0,0,0,0,0,0,1,13
761,25,"An Eye for Detail: Goldsmith III","Craft 3,000 high-quality items as a goldsmith.",10,0,0,35313,1,206,3000,0,0,0,0,0,0,0,1,14
762,26,"An Eye for Detail: Leatherworker I","Craft 100 high-quality items as a leatherworker.",5,0,0,35414,1,207,100,0,0,0,0,0,0,0,1,12
763,26,"An Eye for Detail: Leatherworker II","Craft 500 high-quality items as a leatherworker.",5,0,0,35414,1,207,500,0,0,0,0,0,0,0,1,13
764,26,"An Eye for Detail: Leatherworker III","Craft 3,000 high-quality items as a leatherworker.",10,0,0,35414,1,207,3000,0,0,0,0,0,0,0,1,14
765,27,"An Eye for Detail: Weaver I","Craft 100 high-quality items as a weaver.",5,0,0,35514,1,208,100,0,0,0,0,0,0,0,1,12
766,27,"An Eye for Detail: Weaver II","Craft 500 high-quality items as a weaver.",5,0,0,35514,1,208,500,0,0,0,0,0,0,0,1,13
767,27,"An Eye for Detail: Weaver III","Craft 3,000 high-quality items as a weaver.",10,0,0,35514,1,208,3000,0,0,0,0,0,0,0,1,14
768,28,"An Eye for Detail: Alchemist I","Craft 100 high-quality items as an alchemist.",5,0,0,35613,1,209,100,0,0,0,0,0,0,0,1,12
769,28,"An Eye for Detail: Alchemist II","Craft 500 high-quality items as an alchemist.",5,0,0,35613,1,209,500,0,0,0,0,0,0,0,1,13
770,28,"An Eye for Detail: Alchemist III","Craft 3,000 high-quality items as an alchemist.",10,0,0,35613,1,209,3000,0,0,0,0,0,0,0,1,14
771,29,"An Eye for Detail: Culinarian I","Craft 100 high-quality items as a culinarian.",5,0,0,35716,1,210,100,0,0,0,0,0,0,0,1,12
772,29,"An Eye for Detail: Culinarian II","Craft 500 high-quality items as a culinarian.",5,0,0,35716,1,210,500,0,0,0,0,0,0,0,1,13
773,29,"An Eye for Detail: Culinarian III","Craft 3,000 high-quality items as a culinarian.",10,0,0,35716,1,210,3000,0,0,0,0,0,0,0,1,14
774,30,"An Eye for Quality: Miner I","Gather 300 high-quality items as a miner.",5,0,0,38016,1,211,300,0,0,0,0,0,0,0,1,25
775,30,"An Eye for Quality: Miner II","Gather 1,500 high-quality items as a miner.",5,0,0,38016,1,211,1500,0,0,0,0,0,0,0,1,26
776,30,"An Eye for Quality: Miner III","Gather 10,000 high-quality items as a miner.",10,0,0,38016,1,211,10000,0,0,0,0,0,0,0,1,27
777,31,"An Eye for Quality: Botanist I","Gather 300 high-quality items as a botanist.",5,0,0,38114,1,212,300,0,0,0,0,0,0,0,1,25
778,31,"An Eye for Quality: Botanist II","Gather 1,500 high-quality items as a botanist.",5,0,0,38114,1,212,1500,0,0,0,0,0,0,0,1,26
779,31,"An Eye for Quality: Botanist III","Gather 10,000 high-quality items as a botanist.",10,0,0,38114,1,212,10000,0,0,0,0,0,0,0,1,27
780,32,"The One that Didn't Get Away I","Catch 100 high-quality fish.",5,0,0,38217,1,213,100,0,0,0,0,0,0,0,1,25
781,32,"The One that Didn't Get Away II","Catch 500 high-quality fish.",5,0,0,38217,1,213,500,0,0,0,0,0,0,0,1,26
782,32,"The One that Didn't Get Away III","Catch 3,000 high-quality fish.",10,0,0,38217,1,213,3000,0,0,0,0,0,0,0,1,27
783,33,"Back from the Wood","Complete the main scenario quest “Back from the Wood.”",5,0,0,26002,6,66282,0,0,0,0,0,0,0,0,1,14
784,33,"Skeletons","Complete the main scenario quest “Skeletons in Her Closet.”",5,0,0,26002,6,66337,0,0,0,0,0,0,0,0,1,15
785,33,"Those Who Wait","Complete the main scenario quest “All Good Things.”",5,0,0,26002,6,66053,0,0,0,0,0,0,0,0,1,16
786,33,"History Repeating","Complete the main scenario quest “In Pursuit of the Past.”",5,0,0,26002,6,66488,0,0,0,0,0,0,0,0,1,17
787,33,"Free Wing Night","Complete the main scenario quest “Lady of the Vortex.”",10,0,0,26002,6,66055,0,0,0,0,0,0,0,0,1,18
788,33,"Warrior of Light","Complete all the main scenario quests.",20,0,0,26002,6,66060,0,0,0,0,0,0,0,0,1,19
789,33,"Storyteller I","Complete 10 unique quests.",5,0,0,26002,1,214,10,0,0,0,0,0,0,0,1,75
790,33,"Storyteller II","Complete 30 unique quests.",10,0,0,26002,1,214,30,0,0,0,0,0,0,0,1,76
791,33,"Storyteller III","Complete 100 unique quests.",20,0,0,26002,1,214,100,0,0,0,0,0,0,0,1,77
792,1,"Locking Horns","Successfully complete the FATE “He Taketh It with His Eyes” with the highest rating possible.",10,0,0,2629,1,220,1,0,0,0,0,0,0,0,1,18
793,1,"Uncut","Successfully complete the FATE “Steel Reign” with the highest rating possible.",10,0,0,2629,1,221,1,0,0,0,0,0,0,0,1,19
794,1,"When the Going Gets Tough","Successfully complete the FATE “Go, Go, Gorgimera” with the highest rating possible.",10,0,0,2629,1,222,1,0,0,0,0,0,0,0,1,20
795,1,"On the Ropes","Successfully complete the FATE “The Eyes Have It” with the highest rating possible.",10,0,0,2629,1,223,1,0,0,0,0,0,0,0,1,21
796,1,"Full Remission","Successfully complete the FATE “It's Not Lupus” with the highest rating possible.",10,0,0,2629,1,224,1,0,0,0,0,0,0,0,1,22
797,1,"Lazy Town","Successfully complete the FATE “Lazy for You” with the highest rating possible.",10,0,0,2629,1,225,1,0,0,0,0,0,0,0,1,23
798,1,"Blood, Sweat, and Blood","Successfully complete the FATE “Dark Devices - The End” with the highest rating possible.",10,0,0,2629,1,226,1,0,0,0,0,0,0,0,1,24
799,1,"Ring of Fire","Successfully complete either the FATE “Svara's Fall” or “Svara's Fury” with the highest rating possible.",10,0,0,2629,1,227,1,0,0,0,0,0,0,0,1,25
800,1,"Boughbury Burning","Successfully complete the FATE “Clearing the Hive,” “Defending the Hive,” or “Keeping the Hive” with the highest rating possible.",10,0,0,2629,1,228,1,0,0,0,0,0,0,0,1,26
801,1,"Curtain Call","Successfully complete the FATE “Attack on Highbridge: Act III” with the highest rating possible.",10,0,0,2629,1,229,1,0,0,0,0,0,0,0,1,27
802,1,"Old Maid","Successfully complete the FATE “Poor Maid's Misfortune” with the highest rating possible.",10,0,0,2629,1,230,1,0,0,0,0,0,0,0,1,28
803,1,"Date With Destiny I","Successfully complete 10 FATEs.",5,0,0,2713,1,219,10,0,0,0,0,0,0,0,1,37
804,1,"Date With Destiny II","Successfully complete 100 FATEs.",5,0,0,2713,1,219,100,0,0,0,0,0,0,0,1,38
805,1,"Date With Destiny III","Successfully complete 300 FATEs.",10,0,0,2713,1,219,300,0,0,0,0,0,0,0,1,39
806,1,"Date With Destiny IV","Successfully complete 1,000 FATEs.",10,110,0,2713,1,219,1000,0,0,0,0,0,0,0,1,40
807,1,"Destiny's Child","Successfully complete 3,000 FATEs.",20,0,6111,2713,1,219,3000,0,0,0,0,0,0,0,1,41
808,1,"Bosom Buddies I","See your companion chocobo to rank 1.",5,0,0,26012,10,1,0,0,0,0,0,0,0,0,1,44
809,1,"Bosom Buddies II","See your companion chocobo to rank 5.",10,0,0,26012,10,5,0,0,0,0,0,0,0,0,1,45
810,1,"Bosom Buddies III","See your companion chocobo to rank 10.",20,0,2994,26012,10,10,0,0,0,0,0,0,0,0,1,46
811,36,"Cascadier Reborn","Obtain a summer morning, summer evening, or striped cascadier uniform during the Moonfire Faire festivities.",10,111,0,47530,1,231,1,0,0,0,0,0,0,0,1,0
812,36,"Oh My Gourd","Complete the seasonal event quest “Monstrous Mummery.”",10,0,0,43704,9,66702,66706,66710,0,0,0,0,0,0,1,0
813,14,"Cutting Your Wolf Loose: Maelstrom I","Achieve PvP rank 1 with the Maelstrom.",5,112,0,62951,11,1,1,0,0,0,0,0,0,0,1,1
814,14,"Cutting Your Wolf Loose: Maelstrom II","Achieve PvP rank 10 with the Maelstrom.",5,113,0,62951,11,1,10,0,0,0,0,0,0,0,1,2
815,14,"Cutting Your Wolf Loose: Maelstrom III","Achieve PvP rank 20 with the Maelstrom.",5,114,0,62951,11,1,20,0,0,0,0,0,0,0,1,3
816,14,"Cutting Your Wolf Loose: Maelstrom IV","Achieve PvP rank 30 with the Maelstrom.",5,115,0,62951,11,1,30,0,0,0,0,0,0,0,1,4
817,14,"Cutting Your Wolf Loose: Maelstrom V","Achieve PvP rank 40 with the Maelstrom.",5,116,0,62951,11,1,40,0,0,0,0,0,0,0,1,5
818,14,"Cutting Your Wolf Loose: Maelstrom VI","Achieve PvP rank 50 with the Maelstrom.",5,117,0,62951,11,1,50,0,0,0,0,0,0,0,1,6
819,0,"","",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
820,0,"","",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
821,0,"","",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
822,0,"","",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
823,14,"Cutting Your Wolf Loose: Immortal Flames I","Achieve PvP rank 1 with the Immortal Flames.",5,132,0,62953,11,3,1,0,0,0,0,0,0,0,1,21
824,14,"Cutting Your Wolf Loose: Immortal Flames II","Achieve PvP rank 10 with the Immortal Flames.",5,133,0,62953,11,3,10,0,0,0,0,0,0,0,1,22
825,14,"Cutting Your Wolf Loose: Immortal Flames III","Achieve PvP rank 20 with the Immortal Flames.",5,134,0,62953,11,3,20,0,0,0,0,0,0,0,1,23
826,14,"Cutting Your Wolf Loose: Immortal Flames IV","Achieve PvP rank 30 with the Immortal Flames.",5,135,0,62953,11,3,30,0,0,0,0,0,0,0,1,24
827,14,"Cutting Your Wolf Loose: Immortal Flames V","Achieve PvP rank 40 with the Immortal Flames.",5,136,0,62953,11,3,40,0,0,0,0,0,0,0,1,25
828,14,"Cutting Your Wolf Loose: Immortal Flames VI","Achieve PvP rank 50 with the Immortal Flames.",5,137,0,62953,11,3,50,0,0,0,0,0,0,0,1,26
829,0,"","",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
830,0,"","",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
831,0,"","",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
832,0,"","",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
833,14,"Cutting Your Wolf Loose: Twin Adder I","Achieve PvP rank 1 with the Twin Adder.",5,122,0,62952,11,2,1,0,0,0,0,0,0,0,1,11
834,14,"Cutting Your Wolf Loose: Twin Adder II","Achieve PvP rank 10 with the Twin Adder.",5,123,0,62952,11,2,10,0,0,0,0,0,0,0,1,12
835,14,"Cutting Your Wolf Loose: Twin Adder III","Achieve PvP rank 20 with the Twin Adder.",5,124,0,62952,11,2,20,0,0,0,0,0,0,0,1,13
836,14,"Cutting Your Wolf Loose: Twin Adder IV","Achieve PvP rank 30 with the Twin Adder.",5,125,0,62952,11,2,30,0,0,0,0,0,0,0,1,14
837,14,"Cutting Your Wolf Loose: Twin Adder V","Achieve PvP rank 40 with the Twin Adder.",5,126,0,62952,11,2,40,0,0,0,0,0,0,0,1,15
838,14,"Cutting Your Wolf Loose: Twin Adder VI","Achieve PvP rank 50 with the Twin Adder.",5,127,0,62952,11,2,50,0,0,0,0,0,0,0,1,16
839,0,"","",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
840,0,"","",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
841,0,"","",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
842,0,"","",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
843,5,"Hungry Like a Wolf I","Participate in your first match in the Fold.",5,0,0,156,12,1,0,0,0,0,0,0,0,0,1,0
844,5,"Hungry Like a Wolf II","Participate in 50 matches in the Fold.",5,0,0,156,12,50,0,0,0,0,0,0,0,0,1,0
845,5,"Hungry Like a Wolf III","Participate in 100 matches in the Fold.",5,0,0,156,12,100,0,0,0,0,0,0,0,0,1,0
846,5,"Hungry Like a Wolf IV","Participate in 500 matches in the Fold.",5,0,0,156,12,500,0,0,0,0,0,0,0,0,1,0
847,5,"Hungry Like a Wolf V","Participate in 1,000 matches in the Fold.",10,0,0,156,12,1000,0,0,0,0,0,0,0,0,1,0
848,5,"Wolfing It Down","Participate in 5,000 matches in the Fold.",20,142,0,156,12,5000,0,0,0,0,0,0,0,0,1,0
849,5,"Pack Mentality I","Triumph for the first time in the Fold.",5,0,0,2555,13,1,0,0,0,0,0,0,0,0,1,0
850,5,"Pack Mentality II","Triumph in 50 matches in the Fold.",5,0,0,2555,13,50,0,0,0,0,0,0,0,0,1,0
851,5,"Pack Mentality III","Triumph in 100 matches in the Fold.",5,0,0,2555,13,100,0,0,0,0,0,0,0,0,1,0
852,5,"Pack Mentality IV","Triumph in 500 matches in the Fold.",5,0,0,2555,13,500,0,0,0,0,0,0,0,0,1,0
853,5,"Pack Mentality V","Triumph in 1,000 matches in the Fold.",10,0,0,2555,13,1000,0,0,0,0,0,0,0,0,1,0
854,5,"Leader of the Pack","Triumph in 5,000 matches in the Fold.",20,143,0,2555,13,5000,0,0,0,0,0,0,0,0,1,0
855,3,"Going Up in Flames","Defeat Ifrit in the Bowl of Embers (Extreme).",10,0,0,317,14,20008,0,0,0,0,0,0,0,0,1,1
856,3,"Gone with the Wind","Defeat Garuda in the Howling Eye (Extreme).",10,0,0,317,14,20010,0,0,0,0,0,0,0,0,1,2
857,3,"Earth to Earth","Defeat Titan in the Navel (Extreme).",10,0,0,317,14,20009,0,0,0,0,0,0,0,0,1,3
858,15,"Leaving a Good Impression I","Receive 10 player commendations.",0,144,0,2802,1,244,10,0,0,0,0,0,0,0,1,0
859,15,"Leaving a Good Impression II","Receive 50 player commendations.",0,0,6989,2802,1,244,50,0,0,0,0,0,0,0,1,0
860,15,"Leaving a Good Impression III","Receive 100 player commendations.",0,0,6110,2802,1,244,100,0,0,0,0,0,0,0,1,0
861,15,"Leaving a Good Impression IV","Receive 300 player commendations.",0,0,6995,2802,1,244,300,0,0,0,0,0,0,0,1,0
862,15,"Everybody's Darling","Receive 500 player commendations.",0,0,6993,2802,1,244,500,0,0,0,0,0,0,0,1,0
863,35,"You Bet Your Ash I","Attain rank 1 reputation (neutral) with the Brotherhood of Ash.",5,0,0,62955,15,1,1,0,0,0,0,0,0,0,1,0
864,35,"You Bet Your Ash II","Attain rank 2 reputation (recognized) with the Brotherhood of Ash.",5,0,0,62955,15,1,2,0,0,0,0,0,0,0,1,0
865,35,"You Bet Your Ash III","Attain rank 3 reputation (friendly) with the Brotherhood of Ash.",10,0,0,62955,15,1,3,0,0,0,0,0,0,0,1,0
866,35,"A Real Bad Ash","Attain rank 4 reputation (trusted) with the Brotherhood of Ash.",20,145,0,62955,15,1,4,0,0,0,0,0,0,0,1,0
867,35,"Sylph-conscious I","Attain rank 1 reputation (neutral) with the sylphs of Little Solace.",5,0,0,62956,15,2,1,0,0,0,0,0,0,0,1,0
868,35,"Sylph-conscious II","Attain rank 2 reputation (recognized) with the sylphs of Little Solace.",5,0,0,62956,15,2,2,0,0,0,0,0,0,0,1,0
869,35,"Sylph-conscious III","Attain rank 3 reputation (friendly) with the sylphs of Little Solace.",10,0,0,62956,15,2,3,0,0,0,0,0,0,0,1,0
870,35,"Sylph-assured","Attain rank 4 reputation (trusted) with the sylphs of Little Solace.",20,146,0,62956,15,2,4,0,0,0,0,0,0,0,1,0
871,39,"Remapping the Realm: Copperbell Mines","Discover every location within Copperbell Mines (Hard).",10,0,0,1001,8,140,0,0,0,0,0,0,0,0,1,0
872,38,"Remapping the Realm: Haukke Manor","Discover every location within Haukke Manor (Hard).",10,0,0,1001,8,137,0,0,0,0,0,0,0,0,1,9
873,37,"Mapping the Realm: Pharos Sirius","Discover every location within Pharos Sirius.",10,0,0,1001,8,108,0,0,0,0,0,0,0,0,1,10
874,36,"Cold as Ice","Obtain either a snowman head, a snowman suit, or a pair of snowman mitts during the Starlight Celebration.",10,0,0,40684,1,250,1,0,0,0,0,0,0,0,1,0
875,36,"Horsing About","Complete the seasonal event quest “Thank Heavensturn for You.”",10,0,0,24113,6,66832,0,0,0,0,0,0,0,0,1,0
876,36,"Spreading the Love","Complete the seasonal event quest “Never Say Farewell.”",10,0,0,42351,6,66837,0,0,0,0,0,0,0,0,1,0
877,36,"Pretty in Pink","Complete the seasonal event quest “A Real Peach.”",10,0,0,28557,6,66843,0,0,0,0,0,0,0,0,1,0
878,8,"I Can Dig It I","Decipher 3 timeworn leather maps and open the treasure coffers to which they lead.",5,0,0,115,1,245,3,0,0,0,0,0,0,0,1,1
879,8,"I Can Dig It II","Decipher 5 timeworn goatskin maps and open the treasure coffers to which they lead.",5,0,0,115,1,246,5,0,0,0,0,0,0,0,1,2
880,8,"I Can Dig It III","Decipher 10 timeworn toadskin maps and open the treasure coffers to which they lead.",5,0,0,115,1,247,10,0,0,0,0,0,0,0,1,3
881,8,"I Can Dig It IV","Decipher 20 timeworn boarskin maps and open the treasure coffers to which they lead.",10,0,0,115,1,248,20,0,0,0,0,0,0,0,1,4
882,8,"No Stone Unturned","Decipher 20 timeworn peisteskin maps and open the treasure coffers to which they lead.",20,147,0,115,1,249,20,0,0,0,0,0,0,0,1,5
883,4,"You Call That a Labyrinth","Complete the Labyrinth of the Ancients.",10,0,0,2724,14,30001,0,0,0,0,0,0,0,0,1,0
884,41,"Mapping the Realm: Labyrinth of the Ancients","Discover every location in the Labyrinth of the Ancients.",10,0,0,1001,8,71,0,0,0,0,0,0,0,0,1,0
885,1,"The Kindness of Strangers","Resurrect a player who is not in your party or alliance.",5,0,0,411,1,251,1,0,0,0,0,0,0,0,1,47
886,1,"The Kindness of Strangers II","Resurrect a player who is not in your party or alliance 20 times.",10,0,0,411,1,251,20,0,0,0,0,0,0,0,1,48
887,4,"In Another Bind I","Complete the Second Coil of Bahamut.",5,0,0,2579,1,266,1,0,0,0,0,0,0,0,1,0
888,4,"In Another Bind II","Complete the Second Coil of Bahamut 5 times.",10,0,0,2579,1,266,5,0,0,0,0,0,0,0,1,0
889,4,"In Another Bind III","Complete the Second Coil of Bahamut 10 times.",20,0,0,2579,1,266,10,0,0,0,0,0,0,0,1,0
890,38,"Mapping the Realm: The Second Coil of Bahamut I","Discover every location within the first turn of the Second Coil of Bahamut.",10,0,0,1001,8,148,0,0,0,0,0,0,0,0,1,11
891,38,"Mapping the Realm: The Second Coil of Bahamut II","Discover every location within the second turn of the Second Coil of Bahamut.",10,0,0,1001,8,149,0,0,0,0,0,0,0,0,1,12
892,38,"Mapping the Realm: The Second Coil of Bahamut III","Discover every location within the third turn of the Second Coil of Bahamut.",10,0,0,1001,8,65,0,0,0,0,0,0,0,0,1,13
893,3,"I Eat Whorls for Breakfast","Defeat Leviathan on the <i>Whorleater</i> (Extreme).",10,0,0,317,14,20018,0,0,0,0,0,0,0,0,1,4
894,3,"Good Kingslayer","Defeat Good King Moggle Mog XII in Thornmarch (Extreme).",10,0,0,317,14,20012,0,0,0,0,0,0,0,0,1,5
895,39,"Remapping the Realm: Halatali","Discover every location within Halatali (Hard).",10,0,0,1001,8,145,0,0,0,0,0,0,0,0,1,0
896,37,"Remapping the Realm: Brayflox's Longstop","Discover every location within Brayflox's Longstop (Hard).",10,0,0,1001,8,146,0,0,0,0,0,0,0,0,1,11
897,38,"Mapping the Realm: The Lost City of Amdapor","Discover every location within the Lost City of Amdapor.",10,0,0,1001,8,151,0,0,0,0,0,0,0,0,1,10
898,33,"A Realm Awoken","Complete the main scenario quest “Build on the Stone.”",20,0,0,26002,9,66729,66881,0,0,0,0,0,0,0,1,20
899,33,"Through the Maelstrom","Complete the main scenario quest “Through the Maelstrom.”",20,0,0,26002,6,66899,0,0,0,0,0,0,0,0,1,21
900,33,"The Truth Is Down There","Complete the quest “Alisaie's Pledge.”",10,0,0,26002,9,66696,66849,0,0,0,0,0,0,0,1,50
901,33,"You Can Handle the Truth","Complete the quest “Alisaie's Resolve.”",20,0,0,26002,6,66850,0,0,0,0,0,0,0,0,1,51
902,33,"I Like Big Fish and I Cannot Lie","Complete the quest “The Beast of Brewer's Beacon.”",10,150,0,26002,6,66966,0,0,0,0,0,0,0,0,1,37
903,36,"Eggstreme Hunting","Complete the seasonal event quest “Hard-boiled.”",10,0,0,49073,6,66956,0,0,0,0,0,0,0,0,1,0
904,35,"Fortune Favors the Kobold I","Attain rank 1 reputation (neutral) with the 789th Order kobolds.",5,0,0,62958,15,3,1,0,0,0,0,0,0,0,1,0
905,35,"Fortune Favors the Kobold II","Attain rank 2 reputation (recognized) with the 789th Order kobolds.",5,0,0,62958,15,3,2,0,0,0,0,0,0,0,1,0
906,35,"Fortune Favors the Kobold III","Attain rank 3 reputation (friendly) with the 789th Order kobolds.",10,0,0,62958,15,3,3,0,0,0,0,0,0,0,1,0
907,35,"Kobold as Brass","Attain rank 4 reputation (trusted) with the 789th Order kobolds.",20,148,0,62958,15,3,4,0,0,0,0,0,0,0,1,0
908,35,"Gilling Me Softly I","Attain rank 1 reputation (neutral) with Novv's Clutch.",5,0,0,62959,15,4,1,0,0,0,0,0,0,0,1,0
909,35,"Gilling Me Softly II","Attain rank 2 reputation (recognized) with Novv's Clutch.",5,0,0,62959,15,4,2,0,0,0,0,0,0,0,1,0
910,35,"Gilling Me Softly III","Attain rank 3 reputation (friendly) with Novv's Clutch.",10,0,0,62959,15,4,3,0,0,0,0,0,0,0,1,0
911,35,"Licensed to Gill","Attain rank 4 reputation (trusted) with Novv's Clutch.",20,149,0,62959,15,4,4,0,0,0,0,0,0,0,1,0
912,9,"Can't Someone Else Do It I","Complete 5 retainer ventures.",5,0,0,1069,1,268,5,0,0,0,0,0,0,0,1,11
913,9,"Can't Someone Else Do It II","Complete 50 retainer ventures.",5,0,0,1069,1,268,50,0,0,0,0,0,0,0,1,12
914,9,"Can't Someone Else Do It III","Complete 100 retainer ventures.",10,0,0,1069,1,268,100,0,0,0,0,0,0,0,1,13
915,9,"Nothing Ventured, Nothing Gained","Complete 500 retainer ventures.",20,0,0,1069,1,268,500,0,0,0,0,0,0,0,1,14
916,32,"Go Big or Go Home I","Catch your first big fish.",5,0,0,1102,1,267,1,0,0,0,0,0,0,0,1,29
917,32,"Go Big or Go Home II","Catch 16 different varieties of big fish.",10,0,0,1102,1,267,16,0,0,0,0,0,0,0,1,30
918,32,"Go Big or Go Home III","Catch 37 different varieties of big fish.",20,0,0,1102,1,267,37,0,0,0,0,0,0,0,1,31
919,1,"A Tankless Job I (Paladin)","Complete 50 high-level full party duties as a paladin.",5,151,0,2505,1,277,50,0,0,0,0,0,0,0,1,52
920,1,"A Tankless Job II (Paladin)","Complete 100 high-level full party duties as a paladin.",10,153,0,2505,1,277,100,0,0,0,0,0,0,0,1,53
921,1,"But Somebody's Gotta Do It (Paladin)","Complete 200 high-level full party duties as a paladin.",20,0,7848,2505,1,277,200,0,0,0,0,0,0,0,1,54
922,1,"A Tankless Job I (Warrior)","Complete 50 high-level full party duties as a warrior.",5,152,0,2551,1,278,50,0,0,0,0,0,0,0,1,55
923,1,"A Tankless Job II (Warrior)","Complete 100 high-level full party duties as a warrior.",10,154,0,2551,1,278,100,0,0,0,0,0,0,0,1,56
924,1,"But Somebody's Gotta Do It (Warrior)","Complete 200 high-level full party duties as a warrior.",20,0,7849,2551,1,278,200,0,0,0,0,0,0,0,1,57
925,17,"Taking It to the Stars","Obtain a relic weapon animus.",10,0,0,2723,1,279,1,0,0,0,0,0,0,0,1,15
926,17,"A Star Is Born","Obtain a relic weapon novus.",10,0,0,2723,1,280,1,0,0,0,0,0,0,0,1,16
927,21,"I Got a Good Materia","Obtain materia of a higher grade through transmutation.",10,0,0,25911,1,281,1,0,0,0,0,0,0,0,1,18
928,9,"Out of Sight","Complete entries 1-20 in your sightseeing log.",5,0,0,1019,1,284,20,0,0,0,0,0,0,0,1,15
929,9,"Out of Sight Out of Mind","Complete entries 1-80 in your sightseeing log.",10,0,6201,1019,1,284,80,0,0,0,0,0,0,0,1,16
930,6,"Walk the Line I","Participate in a Frontline campaign.",5,0,0,259,17,1,0,0,0,0,0,0,0,0,1,1
931,6,"Walk the Line II","Participate in 30 Frontline campaigns.",5,0,0,259,17,30,0,0,0,0,0,0,0,0,1,2
932,6,"Walk the Line III","Participate in 50 Frontline campaigns.",5,0,0,259,17,50,0,0,0,0,0,0,0,0,1,3
933,6,"Walk the Line IV","Participate in 100 Frontline campaigns.",5,0,0,259,17,100,0,0,0,0,0,0,0,0,1,4
934,6,"Walk the Line V","Participate in 300 Frontline campaigns.",10,155,0,259,17,300,0,0,0,0,0,0,0,0,1,5
935,6,"Life on the Line","Participate in 1,000 Frontline campaigns.",20,0,0,259,17,1000,0,0,0,0,0,0,0,0,1,6
936,6,"A Line in the Storm I","Guide the Maelstrom to a Frontline victory.",5,0,0,62951,18,1,1,0,0,0,0,0,0,0,1,7
937,6,"A Line in the Storm II","Guide the Maelstrom to 30 Frontline victories.",5,0,0,62951,18,1,30,0,0,0,0,0,0,0,1,8
938,6,"A Line in the Storm III","Guide the Maelstrom to 50 Frontline victories.",5,0,0,62951,18,1,50,0,0,0,0,0,0,0,1,9
939,6,"A Line in the Storm IV","Guide the Maelstrom to 100 Frontline victories.",5,0,8209,62951,18,1,100,0,0,0,0,0,0,0,1,10
940,6,"A Line in the Storm V","Guide the Maelstrom to 300 Frontline victories.",10,156,0,62951,18,1,300,0,0,0,0,0,0,0,1,11
941,6,"The Amethyst Keel","Guide the Maelstrom to 1,000 Frontline victories.",20,0,0,62951,18,1,1000,0,0,0,0,0,0,0,1,12
942,6,"A Line in the Glade I","Guide the Order of the Twin Adder to a Frontline victory.",5,0,0,62952,18,2,1,0,0,0,0,0,0,0,1,13
943,6,"A Line in the Glade II","Guide the Order of the Twin Adder to 30 Frontline victories.",5,0,0,62952,18,2,30,0,0,0,0,0,0,0,1,14
944,6,"A Line in the Glade III","Guide the Order of the Twin Adder to 50 Frontline victories.",5,0,0,62952,18,2,50,0,0,0,0,0,0,0,1,15
945,6,"A Line in the Glade IV","Guide the Order of the Twin Adder to 100 Frontline victories.",5,0,8210,62952,18,2,100,0,0,0,0,0,0,0,1,16
946,6,"A Line in the Glade V","Guide the Order of the Twin Adder to 300 Frontline victories.",10,158,0,62952,18,2,300,0,0,0,0,0,0,0,1,17
947,6,"The Ebony Leaf","Guide the Order of the Twin Adder to 1,000 Frontline victories.",20,0,0,62952,18,2,1000,0,0,0,0,0,0,0,1,18
948,6,"A Line in the Sand I","Guide the Immortal Flames to a Frontline victory.",5,0,0,62953,18,3,1,0,0,0,0,0,0,0,1,19
949,6,"A Line in the Sand II","Guide the Immortal Flames to 30 Frontline victories.",5,0,0,62953,18,3,30,0,0,0,0,0,0,0,1,20
950,6,"A Line in the Sand III","Guide the Immortal Flames to 50 Frontline victories.",5,0,0,62953,18,3,50,0,0,0,0,0,0,0,1,21
951,6,"A Line in the Sand IV","Guide the Immortal Flames to 100 Frontline victories.",5,0,8211,62953,18,3,100,0,0,0,0,0,0,0,1,22
952,6,"A Line in the Sand V","Guide the Immortal Flames to 300 Frontline victories.",10,157,0,62953,18,3,300,0,0,0,0,0,0,0,1,23
953,6,"The Rose Gold Scales","Guide the Immortal Flames to 1,000 Frontline victories.",20,0,0,62953,18,3,1000,0,0,0,0,0,0,0,1,24
954,6,"Prime Air I","Destroy an interceptor drone.",5,0,0,458,1,285,1,0,0,0,0,0,0,0,1,25
955,6,"Prime Air II","Destroy 30 interceptor drones.",5,0,0,458,1,285,30,0,0,0,0,0,0,0,1,26
956,6,"Prime Air III","Destroy 50 interceptor drones.",5,0,0,458,1,285,50,0,0,0,0,0,0,0,1,27
957,6,"Prime Air IV","Destroy 100 interceptor drones.",5,159,0,458,1,285,100,0,0,0,0,0,0,0,1,28
958,6,"A Drone in the Dark","Destroy 300 interceptor drones.",10,0,0,458,1,285,300,0,0,0,0,0,0,0,1,29
959,6,"Just Say Node I","Destroy an interceptor node.",5,0,0,459,1,286,1,0,0,0,0,0,0,0,1,30
960,6,"Just Say Node II","Destroy 5 interceptor nodes.",5,0,0,459,1,286,5,0,0,0,0,0,0,0,1,31
961,6,"Just Say Node III","Destroy 10 interceptor nodes.",5,0,0,459,1,286,10,0,0,0,0,0,0,0,1,32
962,6,"Just Say Node IV","Destroy 20 interceptor nodes.",5,160,0,459,1,286,20,0,0,0,0,0,0,0,1,33
963,6,"A Node off My Back","Destroy 50 interceptor nodes.",10,0,0,459,1,286,50,0,0,0,0,0,0,0,1,34
964,7,"Mark of the Holt: B","Slay 4 unique rank B elite marks in the Black Shroud.",5,0,0,2725,5,4,296,297,298,299,0,0,0,0,1,1
965,7,"Mark of the Desert: B","Slay 5 unique rank B elite marks in Thanalan.",5,0,0,2725,5,5,300,301,302,303,304,0,0,0,1,2
966,7,"Mark of the Sea: B","Slay 6 unique rank B elite marks in La Noscea.",5,0,0,2725,5,6,305,306,307,308,309,310,0,0,1,3
967,7,"Mark of the Lake: B","Slay 2 unique rank B elite marks in Mor Dhona or the Coerthas central highlands.",5,0,0,2725,5,2,311,312,0,0,0,0,0,0,1,4
968,7,"On Your Mark: B","Earn the following four achievements: Mark of the Holt: B, Mark of the Desert: B, Mark of the Sea: B, and Mark of the Lake: B.",10,161,0,2725,2,964,965,966,967,0,0,0,0,0,2,5
969,7,"Mark of the Holt: A","Slay 4 unique rank A elite marks in the Black Shroud.",5,0,0,2725,5,4,313,314,315,316,0,0,0,0,1,6
970,7,"Mark of the Desert: A","Slay 5 unique rank A elite marks in Thanalan.",5,0,0,2725,5,5,317,318,319,320,321,0,0,0,1,7
971,7,"Mark of the Sea: A","Slay 6 unique rank A elite marks in La Noscea.",5,0,0,2725,5,6,322,323,324,325,326,327,0,0,1,8
972,7,"Mark of the Lake: A","Slay 2 unique rank A elite marks in Mor Dhona or the Coerthas central highlands.",5,0,0,2725,5,2,328,329,0,0,0,0,0,0,1,9
973,7,"On Your Mark: A","Earn the following four achievements: Mark of the Holt: A, Mark of the Desert: A, Mark of the Sea: A, and Mark of the Lake: A.",10,162,0,2725,2,969,970,971,972,0,0,0,0,0,2,10
974,7,"Mark of the Holt: S","Slay 4 unique rank S elite marks in the Black Shroud.",5,0,0,2725,5,4,330,331,332,333,0,0,0,0,1,11
975,7,"Mark of the Desert: S","Slay 5 unique rank S elite marks in Thanalan.",5,0,0,2725,5,5,334,335,336,337,338,0,0,0,1,12
976,7,"Mark of the Sea: S","Slay 6 unique rank S elite marks in La Noscea.",5,0,0,2725,5,6,339,340,341,342,343,344,0,0,1,13
977,7,"Mark of the Lake: S","Slay 2 unique rank S elite marks in Mor Dhona or the Coerthas central highlands.",5,0,0,2725,5,2,345,346,0,0,0,0,0,0,1,14
978,7,"On Your Mark: S","Earn the following four achievements: Mark of the Holt: S, Mark of the Desert: S, Mark of the Sea: S, and Mark of the Lake: S.",10,163,0,2725,2,974,975,976,977,0,0,0,0,0,2,15
979,7,"Bring Your B Game I","Slay 10 rank B elite marks.",5,0,0,356,1,290,10,0,0,0,0,0,0,0,1,22
980,7,"Bring Your B Game II","Slay 50 rank B elite marks.",5,0,0,356,1,290,50,0,0,0,0,0,0,0,1,23
981,7,"Bring Your B Game III","Slay 300 rank B elite marks.",5,164,0,356,1,290,300,0,0,0,0,0,0,0,1,24
982,7,"Straight Bs","Slay 1,000 rank B elite marks.",10,0,0,356,1,290,1000,0,0,0,0,0,0,0,1,25
983,7,"Bring Your A Game I","Slay 5 rank A elite marks.",5,0,0,364,1,291,5,0,0,0,0,0,0,0,1,26
984,7,"Bring Your A Game II","Slay 30 rank A elite marks.",5,0,0,364,1,291,30,0,0,0,0,0,0,0,1,27
985,7,"Bring Your A Game III","Slay 200 rank A elite marks.",5,165,0,364,1,291,200,0,0,0,0,0,0,0,1,28
986,7,"Straight As","Slay 500 rank A elite marks.",10,0,0,364,1,291,500,0,0,0,0,0,0,0,1,29
987,7,"Bring Your S Game I","Slay 3 rank S elite marks.",5,0,0,562,1,292,3,0,0,0,0,0,0,0,1,30
988,7,"Bring Your S Game II","Slay 20 rank S elite marks.",5,0,0,562,1,292,20,0,0,0,0,0,0,0,1,31
989,7,"Bring Your S Game III","Slay 200 rank S elite marks.",5,166,0,562,1,292,200,0,0,0,0,0,0,0,1,32
990,7,"Straight Ss","Slay 500 rank S elite marks.",10,0,0,562,1,292,500,0,0,0,0,0,0,0,1,33
991,38,"Remapping the Realm: Tam-Tara Deepcroft","Discover every location in the Tam-Tara Deepcroft (Hard).",10,0,0,1001,8,165,0,0,0,0,0,0,0,0,1,14
992,40,"Remapping the Realm: Stone Vigil","Discover every location in the Stone Vigil (Hard).",10,0,0,1001,8,157,0,0,0,0,0,0,0,0,1,0
993,37,"Mapping the Realm: Hullbreaker Isle","Discover every location on Hullbreaker Isle.",10,0,0,1001,8,168,0,0,0,0,0,0,0,0,1,16
994,3,"Contempt of Court","Defeat Ramuh at the Striking Tree (Extreme).",10,0,0,317,14,20023,0,0,0,0,0,0,0,0,1,6
995,4,"Life is a Syrcus","Complete Syrcus Tower.",10,0,0,2724,14,30011,0,0,0,0,0,0,0,0,1,0
996,41,"Mapping the Realm: Syrcus Tower","Discover every location in Syrcus Tower.",10,0,0,1001,8,158,0,0,0,0,0,0,0,0,1,0
997,4,"A Flower by Any Other Name","Defeat the rafflesia within the first turn of the Second Coil of Bahamut (Savage).",10,167,0,2579,14,30012,0,0,0,0,0,0,0,0,1,0
998,4,"Seconds","Defeat Melusine within the second turn of the Second Coil of Bahamut (Savage).",10,168,0,2579,14,30013,0,0,0,0,0,0,0,0,1,0