-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathachievedescription.xml
2490 lines (2490 loc) · 493 KB
/
achievedescription.xml
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
<?xml version="1.0" encoding="utf-8"?>
<ms2>
<achieve id="21100001" desc="" complete="" manualDesc="Become a Knight" manualComplete="Became a Knight" feature="Season1" />
<achieve id="21100002" desc="" complete="" manualDesc="Become a Berserker" manualComplete="Became a Berserker" feature="Season1" />
<achieve id="21100003" desc="" complete="" manualDesc="Become a Wizard" manualComplete="Became a Wizard" feature="Season1" />
<achieve id="21100004" desc="" complete="" manualDesc="Become a Priest" manualComplete="Became a Priest" feature="Season1" />
<achieve id="21100005" desc="" complete="" manualDesc="Become an Archer" manualComplete="Became an Archer" feature="Season1" />
<achieve id="21100006" desc="" complete="" manualDesc="Become a Heavy Gunner" manualComplete="Became a Heavy Gunner" feature="Season1" />
<achieve id="21100007" desc="" complete="" manualDesc="Become a Thief" manualComplete="Became a Thief" feature="Season1" />
<achieve id="21100009" desc="" complete="" manualDesc="Become an Assassin" manualComplete="Became an Assassin" feature="Season1" />
<achieve id="21100010" desc="" complete="" manualDesc="Reach level 50 as a Knight" manualComplete="Reached level 50 as a Knight" feature="Season3" />
<achieve id="21100011" desc="" complete="" manualDesc="Reach level 50 as a Berserker" manualComplete="Reached level 50 as a Berserker" feature="Season3" />
<achieve id="21100012" desc="" complete="" manualDesc="Reach level 50 as a Wizard" manualComplete="Reached level 50 as a Wizard" feature="Season3" />
<achieve id="21100013" desc="" complete="" manualDesc="Reach level 50 as a Priest" manualComplete="Reached level 50 as a Priest" feature="Season3" />
<achieve id="21100014" desc="" complete="" manualDesc="Reach level 50 as an Archer" manualComplete="Reached level 50 as an Archer" feature="Season3" />
<achieve id="21100015" desc="" complete="" manualDesc="Reach level 50 as a Heavy Gunner" manualComplete="Reached level 50 as a Heavy Gunner" feature="Season3" />
<achieve id="21100016" desc="" complete="" manualDesc="Reach level 50 as a Thief" manualComplete="Reached level 50 as a Thief" feature="Season3" />
<achieve id="21100017" desc="" complete="" manualDesc="Reach level 50 as an Assassin" manualComplete="Reached level 50 as an Assassin" feature="Season3" />
<achieve id="21100018" desc="" complete="" manualDesc="초보자로 50레벨까지 성장하기" manualComplete="초보자로 50레벨까지 성장" feature="Season3" locale="KR" />
<achieve id="21100019" desc="Obtain {0} job master trophies" complete="Obtained {0} master trophies!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21100020" desc="" complete="" manualDesc="Reach level 30 as a Knight" manualComplete="Reached level 30 as a Knight" feature="Season1" />
<achieve id="21100021" desc="" complete="" manualDesc="Reach level 30 as a Berserker" manualComplete="Reached level 30 as a Berserker" feature="Season1" />
<achieve id="21100022" desc="" complete="" manualDesc="Reach level 30 as a Wizard" manualComplete="Reached level 30 as a Wizard" feature="Season1" />
<achieve id="21100023" desc="" complete="" manualDesc="Reach level 30 as a Priest" manualComplete="Reached level 30 as a Priest" feature="Season1" />
<achieve id="21100024" desc="" complete="" manualDesc="Reach level 30 as an Archer" manualComplete="Reached level 30 as an Archer" feature="Season1" />
<achieve id="21100025" desc="" complete="" manualDesc="Reach level 30 as a Heavy Gunner" manualComplete="Reached level 30 as a Heavy Gunner" feature="Season1" />
<achieve id="21100026" desc="" complete="" manualDesc="Reach level 30 as a Thief" manualComplete="Reached level 30 as a Thief" feature="Season1" />
<achieve id="21100027" desc="" complete="" manualDesc="Reach level 30 as an Assassin" manualComplete="Reached level 30 as an Assassin" feature="Season1" />
<achieve id="21100028" desc="" complete="" manualDesc="초보자로 30레벨까지 성장하기" manualComplete="초보자로 30레벨까지 성장" feature="Season1" locale="KR" />
<achieve id="21100029" desc="" complete="" manualDesc="Reach level 40 as a Knight" manualComplete="Reached level 40 as a Knight" feature="Season2" />
<achieve id="21100030" desc="" complete="" manualDesc="Reach level 40 as a Berserker" manualComplete="Reached level 40 as a Berserker" feature="Season2" />
<achieve id="21100031" desc="" complete="" manualDesc="Reach level 40 as a Wizard" manualComplete="Reached level 40 as a Wizard" feature="Season2" />
<achieve id="21100032" desc="" complete="" manualDesc="Reach level 40 as a Priest" manualComplete="Reached level 40 as a Priest" feature="Season2" />
<achieve id="21100033" desc="" complete="" manualDesc="Reach level 40 as an Archer" manualComplete="Reached level 40 as an Archer" feature="Season2" />
<achieve id="21100034" desc="" complete="" manualDesc="Reach level 40 as a Heavy Gunner" manualComplete="Reached level 40 as a Heavy Gunner" feature="Season2" />
<achieve id="21100035" desc="" complete="" manualDesc="Reach level 40 as a Thief" manualComplete="Reached level 40 as a Thief" feature="Season2" />
<achieve id="21100036" desc="" complete="" manualDesc="Reach level 40 as an Assassin" manualComplete="Reached level 40 as an Assassin" feature="Season2" />
<achieve id="21100037" desc="" complete="" manualDesc="초보자로 40레벨까지 성장하기" manualComplete="초보자로 40레벨까지 성장" feature="Season2" locale="KR" />
<achieve id="21100038" desc="" complete="" manualDesc="Reach level 30 as a Runeblade" manualComplete="Reached level 30 as a Runeblade" feature="RuneBlader" />
<achieve id="21100039" desc="" complete="" manualDesc="Reach level 40 as a Runeblade" manualComplete="Reached level 40 as a Runeblade" feature="RuneBlader" />
<achieve id="21100040" desc="" complete="" manualDesc="Reach level 50 as a Runeblade" manualComplete="Reached level 50 as a Runeblade" feature="RuneBlader" />
<achieve id="21100041" desc="" complete="" manualDesc="Reach level 60" manualComplete="Reached level 60" feature="ExtendLevel65" />
<achieve id="21100042" desc="" complete="" manualDesc="Reach level 70" manualComplete="Reached level 70" feature="ExtendLevel70" />
<achieve id="21100043" desc="" complete="" manualDesc="Reach level 80" manualComplete="Reached level 80" feature="ExtendLevel80" />
<achieve id="21100044" desc="" complete="" manualDesc="Reach level 30 as a Striker" manualComplete="Reached level 30 as a Striker" feature="Striker" />
<achieve id="21100045" desc="" complete="" manualDesc="Reach level 40 as a Striker" manualComplete="Reached level 40 as a Striker" feature="Striker" />
<achieve id="21100046" desc="" complete="" manualDesc="Reach level 50 as a Striker" manualComplete="Reached level 50 as a Striker" feature="Striker" />
<achieve id="21100047" desc="" complete="" manualDesc="Reach level 30 as a Soul Binder" manualComplete="Reached level 30 as a Soul Binder" feature="SoulBinder" />
<achieve id="21100048" desc="" complete="" manualDesc="Reach level 40 as a Soul Binder" manualComplete="Reached level 40 as a Soul Binder" feature="SoulBinder" />
<achieve id="21100049" desc="" complete="" manualDesc="Reach level 50 as a Soul Binder" manualComplete="Reached level 50 as a Soul Binder" feature="SoulBinder" />
<achieve id="21100050" desc="" complete="" manualDesc="Reach level 90" manualComplete="Reached level 90" feature="ExtendLevel99" />
<achieve id="21100051" desc="Reach level {0}" complete="Reached level {0}!" manualDesc="" manualComplete="" />
<achieve id="21100052" desc="Reach Prestige Rank {0}" complete="Reach Prestige Rank {0}" manualDesc="" manualComplete="" feature="AdventureLevel" />
<achieve id="21100053" desc="Reach Prestige Rank {0}" complete="Reach Prestige Rank {0}" manualDesc="" manualComplete="" feature="AdventureLevel" />
<achieve id="21100054" desc="Reach level {0}" complete="Reached level {0}!" manualDesc="" manualComplete="" locale="NA" />
<achieve id="21100054" desc="{0}레벨 달성하기!" complete="{0}레벨까지 성장!" manualDesc="" manualComplete="" locale="JP" />
<achieve id="21100054" desc="{0}레벨 달성하기!" complete="{0}레벨까지 성장!" manualDesc="" manualComplete="" locale="TH" />
<achieve id="21100054" desc="{0}레벨 달성하기!" complete="{0}레벨까지 성장!" manualDesc="" manualComplete="" locale="TW" />
<achieve id="21100055" desc="Reach level {0}" complete="Reached level {0}!" manualDesc="" manualComplete="" locale="NA" />
<achieve id="21100055" desc="{0}레벨 달성하기!" complete="{0}레벨까지 성장!" manualDesc="" manualComplete="" locale="JP" />
<achieve id="21100055" desc="{0}레벨 달성하기!" complete="{0}레벨까지 성장!" manualDesc="" manualComplete="" locale="TH" />
<achieve id="21100055" desc="{0}레벨 달성하기!" complete="{0}레벨까지 성장!" manualDesc="" manualComplete="" locale="TW" />
<achieve id="21100056" desc="Reach Lv. 50!" complete="Leveled up to 50!" manualDesc="" manualComplete="" feature="KarkarIsland" locale="NA" />
<achieve id="21100056" desc="50레벨 달성하기!" complete="50레벨까지 성장!" manualDesc="" manualComplete="" feature="KarkarIsland" locale="JP" />
<achieve id="21100056" desc="50레벨 달성하기!" complete="50레벨까지 성장!" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TH" />
<achieve id="21100056" desc="50레벨 달성하기!" complete="50레벨까지 성장!" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TW" />
<achieve id="21100057" desc="Try lapenshard fusion {0} time(s)" complete="Tried lapenshard fusion {0} time(s)" manualDesc="" manualComplete="" feature="Lapenshard01" />
<achieve id="21100058" desc="Fail lapenshard fusion {0} time(s)" complete="Failed lapenshard fusion {0} time(s)" manualDesc="" manualComplete="" feature="Lapenshard01" />
<achieve id="21100059" desc="Successfully fuse lapenshards {0} time(s)" complete="Successfully fused lapenshards {0} time(s)!" manualDesc="" manualComplete="" feature="Lapenshard01" />
<achieve id="21100060" desc="" complete="" manualDesc="Fuse lapenshards to tier 6" manualComplete="Fused lapenshards to tier 6" feature="Lapenshard01" />
<achieve id="21100061" desc="" complete="" manualDesc="Fuse lapenshards to tier 7" manualComplete="Fused lapenshards to tier 7" feature="Lapenshard01" />
<achieve id="21100062" desc="" complete="" manualDesc="Fuse lapenshards to tier 8" manualComplete="Fused lapenshards to tier 8" feature="Lapenshard01" />
<achieve id="21100063" desc="" complete="" manualDesc="Fuse lapenshards to tier 9" manualComplete="Fused lapenshards to tier 9" feature="Lapenshard01" />
<achieve id="21100064" desc="" complete="" manualDesc="Fuse lapenshards to tier 10" manualComplete="Fused lapenshards to tier 10" feature="Lapenshard01" />
<achieve id="21100065" desc="Use Knight II master skills {0} time(s)" complete="Used Knight II master skills {0} time(s)" manualDesc="" manualComplete="" feature="JobChange_02" />
<achieve id="21100066" desc="Use Berserker II master skills {0} time(s)" complete="Used Berserker II master skills {0} time(s)" manualDesc="" manualComplete="" feature="JobChange_02" />
<achieve id="21100067" desc="Use Wizard II master skills {0} time(s)" complete="Used Wizard II master skills {0} time(s)" manualDesc="" manualComplete="" feature="JobChange_02" />
<achieve id="21100068" desc="Use Priest II master skills {0} time(s)" complete="Used Priest II master skills {0} time(s)" manualDesc="" manualComplete="" feature="JobChange_02" />
<achieve id="21100069" desc="Use Archer II master skills {0} time(s)" complete="Used Archer II master skills {0} time(s)" manualDesc="" manualComplete="" feature="JobChange_02" />
<achieve id="21100070" desc="Use Heavy Gunner II master skills {0} time(s)" complete="Used Heavy Gunner II master skills {0} time(s)" manualDesc="" manualComplete="" feature="JobChange_02" />
<achieve id="21100071" desc="Use Thief II master skills {0} time(s)" complete="Used Thief II master skills {0} time(s)" manualDesc="" manualComplete="" feature="JobChange_02" />
<achieve id="21100072" desc="Use Assassin II master skills {0} time(s)" complete="Used Assassin II master skills {0} time(s)" manualDesc="" manualComplete="" feature="JobChange_02" />
<achieve id="21100073" desc="Use Runeblade II master skills {0} time(s)" complete="Used Runeblade II master skills {0} time(s)" manualDesc="" manualComplete="" feature="JobChange_02" />
<achieve id="21100074" desc="Use Striker II master skills {0} time(s)" complete="Used Striker II master skills {0} time(s)" manualDesc="" manualComplete="" feature="JobChange_02" />
<achieve id="21100075" desc="Use Soul Binder II master skills {0} time(s)" complete="Used Soul Binder II master skills {0} time(s)" manualDesc="" manualComplete="" feature="JobChange_02" />
<achieve id="21100076" desc="" complete="" manualDesc="Complete quest "$quest:40002795$"" manualComplete="Complete quest "$quest:40002795$"" feature="JobChange_02" />
<achieve id="21100077" desc="" complete="" manualDesc="Increase your job rank" manualComplete="Increased your job rank" feature="JobChange_01" locale="NA" />
<achieve id="21100077" desc="" complete="" manualDesc="전직하기" manualComplete="전직 완료" feature="JobChange_01" locale="JP" />
<achieve id="21100077" desc="" complete="" manualDesc="전직하기" manualComplete="전직 완료" feature="JobChange_01" locale="TH" />
<achieve id="21100077" desc="" complete="" manualDesc="전직하기" manualComplete="전직 완료" feature="JobChange_01" locale="TW" />
<achieve id="21210001" desc="Defeat {0} enemies" complete="Defeated {0} enemies!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21210002" desc="Defeat {0} plant enemies" complete="Defeated {0} plant enemies!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21210003" desc="Defeat {0} beast enemies" complete="Defeated {0} beast enemies!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21210004" desc="Defeat {0} insect enemies" complete="Defeated {0} insect enemies!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21210005" desc="Defeat {0} holy enemies" complete="Defeated {0} holy enemies!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21210006" desc="Defeat {0} spirit enemies" complete="Defeated {0} spirit enemies!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21210007" desc="Defeat {0} fairy enemies" complete="Defeated {0} fairy enemies!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21210008" desc="Defeat {0} undead enemies" complete="Defeated {0} undead enemies!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21210009" desc="Defeat {0} demon enemies" complete="Defeated {0} devil enemies!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21210010" desc="Defeat {0} mechanical enemies" complete="Defeated {0} mechanical enemies!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21210011" desc="Defeat {0} inanimate enemies" complete="Defeated {0} inanimate enemies!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21210012" desc="Defeat {0} humanoid enemies" complete="Defeated {0} humanoid enemies!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21210014" desc="Defeat {0} enemies in a row" complete="Defeated {0} enemies in a row!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21210015" desc="Defeat $npc:21000425$ {0} time(s)" complete="Defeated $npc:21000425$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21210016" desc="Defeat $npc:24000613$ {0} time(s) in the normal adventure dungeon $dungeonTitle:21008001$" complete="Defeated $npc:24000613$ {0} time(s) in the normal adventure dungeon $dungeonTitle:21008001$!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21210017" desc="Defeat $npc:24000522$ {0} time(s) in the normal adventure dungeon $dungeonTitle:21009001$" complete="Defeated $npc:24000522$ {0} time(s) in the normal adventure dungeon $dungeonTitle:21009001$!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21210018" desc="" complete="" manualDesc="Get tombstoned by $npc:24002710$'s attacks in the normal adventure dungeon $dungeonTitle:21016001$" manualComplete="Got tombstoned by $npc:24002710$'s attacks in the normal adventure dungeon $dungeonTitle:21016001$" feature="ShrineOfGuidance" />
<achieve id="21210019" desc="Defeat $npc:21000168$ {0} time(s) in $map:02000259$" complete="Defeated $npc:21000168$ {0} time(s) in $map:02000259$" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21210020" desc="Defeat $npcName:21000249$ or $npcName:21000252$ in $map:02000004$ {0} time(s)" complete="Defeated $npcName:21000249$ or $npcName:21000252$ in $map:02000004$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" locale="NA" />
<achieve id="21210020" desc="$map:02000004$에서 $npcName:21000249$ 또는 $npcName:21000252$ {0}회 처치하기" complete="$map:02000004$에서 $npcName:21000249$ 또는 $npcName:21000252$ {0}회 처치" manualDesc="" manualComplete="" feature="Season1" locale="JP" />
<achieve id="21210020" desc="$map:02000004$에서 $npcName:21000249$ 또는 $npcName:21000252$ {0}회 처치하기" complete="$map:02000004$에서 $npcName:21000249$ 또는 $npcName:21000252$ {0}회 처치" manualDesc="" manualComplete="" feature="Season1" locale="TH" />
<achieve id="21210020" desc="$map:02000004$에서 $npcName:21000249$ 또는 $npcName:21000252$ {0}회 처치하기" complete="$map:02000004$에서 $npcName:21000249$ 또는 $npcName:21000252$ {0}회 처치" manualDesc="" manualComplete="" feature="Season1" locale="TW" />
<achieve id="21210021" desc="Defeat $npcName:21000251$ or $npcName:21000254$ in $map:02000053$ {0} time(s)" complete="Defeated $npcName:21000251$ or $npcName:21000254$ in $map:02000053$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" locale="NA" />
<achieve id="21210021" desc="$map:02000053$에서 $npcName:21000251$ 혹은 $npcName:21000254$ {0}회 처치하기" complete="$map:02000053$에서 $npcName:21000251$ 혹은 $npcName:21000254$ {0}회 처치" manualDesc="" manualComplete="" feature="Season1" locale="JP" />
<achieve id="21210021" desc="$map:02000053$에서 $npcName:21000251$ 혹은 $npcName:21000254$ {0}회 처치하기" complete="$map:02000053$에서 $npcName:21000251$ 혹은 $npcName:21000254$ {0}회 처치" manualDesc="" manualComplete="" feature="Season1" locale="TH" />
<achieve id="21210021" desc="$map:02000053$에서 $npcName:21000251$ 혹은 $npcName:21000254$ {0}회 처치하기" complete="$map:02000053$에서 $npcName:21000251$ 혹은 $npcName:21000254$ {0}회 처치" manualDesc="" manualComplete="" feature="Season1" locale="TW" />
<achieve id="21210022" desc="Defeat {0} enemies in $map:02000054$" complete="Defeated {0} enemies in $map:02000054$" manualDesc="" manualComplete="" feature="Season1" locale="NA" />
<achieve id="21210022" desc="$map:02000054$에서 몬스터 {0}번 처치하기" complete="$map:02000054$에서 몬스터 {0}번 처치" manualDesc="" manualComplete="" feature="Season1" locale="JP" />
<achieve id="21210022" desc="$map:02000054$에서 몬스터 {0}번 처치하기" complete="$map:02000054$에서 몬스터 {0}번 처치" manualDesc="" manualComplete="" feature="Season1" locale="TH" />
<achieve id="21210022" desc="$map:02000054$에서 몬스터 {0}번 처치하기" complete="$map:02000054$에서 몬스터 {0}번 처치" manualDesc="" manualComplete="" feature="Season1" locale="TW" />
<achieve id="21210023" desc="Defeat {0} $npcNamePlural:21000023$ in $map:02000041$" complete="Defeated {0} $npcNamePlural:21000023$ in $map:02000041$" manualDesc="" manualComplete="" feature="Season1" locale="NA" />
<achieve id="21210023" desc="$map:02000041$에서 $npcName:21000023$ {0}번 처치하기" complete="$map:02000041$에서 $npcName:21000023$ {0}번 처치" manualDesc="" manualComplete="" feature="Season1" locale="JP" />
<achieve id="21210023" desc="$map:02000041$에서 $npcName:21000023$ {0}번 처치하기" complete="$map:02000041$에서 $npcName:21000023$ {0}번 처치" manualDesc="" manualComplete="" feature="Season1" locale="TH" />
<achieve id="21210023" desc="$map:02000041$에서 $npcName:21000023$ {0}번 처치하기" complete="$map:02000041$에서 $npcName:21000023$ {0}번 처치" manualDesc="" manualComplete="" feature="Season1" locale="TW" />
<achieve id="21210024" desc="Defeat {0} snakes in Karkar Island" complete="Defeated {0} snakes in Karkar Island" manualDesc="" manualComplete="" feature="KarkarIsland" locale="NA" />
<achieve id="21210024" desc="카르카르 아일랜드에 서식하는 뱀 몬스터 {0}마리 처치하기" complete="카르카르 아일랜드에 서식하는 뱀 몬스터 {0}마리 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="JP" />
<achieve id="21210024" desc="카르카르 아일랜드에 서식하는 뱀 몬스터 {0}마리 처치하기" complete="카르카르 아일랜드에 서식하는 뱀 몬스터 {0}마리 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TH" />
<achieve id="21210024" desc="카르카르 아일랜드에 서식하는 뱀 몬스터 {0}마리 처치하기" complete="카르카르 아일랜드에 서식하는 뱀 몬스터 {0}마리 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TW" />
<achieve id="21210025" desc="Defeat {0} enemies in $map:02010030$" complete="Defeated {0} enemies in $map:02010030$" manualDesc="" manualComplete="" feature="KarkarIsland" locale="NA" />
<achieve id="21210025" desc="$map:02010030$의 몬스터 {0}마리 처치하기" complete="$map:02010030$의 몬스터 {0}마리 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="JP" />
<achieve id="21210025" desc="$map:02010030$의 몬스터 {0}마리 처치하기" complete="$map:02010030$의 몬스터 {0}마리 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TH" />
<achieve id="21210025" desc="$map:02010030$의 몬스터 {0}마리 처치하기" complete="$map:02010030$의 몬스터 {0}마리 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TW" />
<achieve id="21210026" desc="Defeat {0} enemies in $map:02010010$" complete="Defeated {0} enemies in $map:02010010$" manualDesc="" manualComplete="" feature="KarkarIsland" locale="NA" />
<achieve id="21210026" desc="$map:02010010$의 몬스터 {0}마리 처치하기" complete="$map:02010010$의 몬스터 {0}마리 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="JP" />
<achieve id="21210026" desc="$map:02010010$의 몬스터 {0}마리 처치하기" complete="$map:02010010$의 몬스터 {0}마리 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TH" />
<achieve id="21210026" desc="$map:02010010$의 몬스터 {0}마리 처치하기" complete="$map:02010010$의 몬스터 {0}마리 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TW" />
<achieve id="21210027" desc="Defeat {0} Tairen enemies in Kritias" complete="Defeated {0} Tairen enemies in Kritias" manualDesc="" manualComplete="" feature="Kritias_2018_12" />
<achieve id="21210028" desc="Defeat {0} Daemon Army enemies in Kritias" complete="Defeated {0} Daemon Army enemies in Kritias" manualDesc="" manualComplete="" feature="Kritias_2018_12" />
<achieve id="21210029" desc="Defeat {0} insect enemies in Kritias" complete="Defeated {0} insect enemies in Kritias" manualDesc="" manualComplete="" feature="Kritias_2018_12" />
<achieve id="21220001" desc="Defeat $npc:22300149$ {0} time(s)" complete="Defeated $npc:22300149$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21220002" desc="Defeat $npc:22000022$ {0} time(s)" complete="Defeated $npc:22000022$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21220003" desc="Defeat $npc:22300105$ {0} time(s)" complete="Defeated $npc:22300105$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21220004" desc="Defeat either $npc:22000003$ or $npc:22000004$ {0} time(s)" complete="Defeated either $npc:22000003$ or $npc:22000004$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21220005" desc="Defeat $npc:22090165$ {0} time(s)" complete="Defeated $npc:22090165$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21220006" desc="Defeat $npc:22000001$ {0} time(s)" complete="Defeated $npc:22000001$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21220007" desc="Defeat $npc:22090107$ {0} time(s)" complete="Defeated $npc:22090107$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21220008" desc="Defeat $npc:22000321$ {0} time(s)" complete="Defeated $npc:22000321$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21220009" desc="Defeat $npc:22000011$ {0} time(s)" complete="Defeated $npc:22000011$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21220010" desc="Defeat $npc:22000002$ {0} time(s)" complete="Defeated $npc:22000002$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21220011" desc="Defeat $npc:22000005$ {0} time(s)" complete="Defeated $npc:22000005$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21220012" desc="Defeat $npc:22000322$ {0} time(s)" complete="Defeated $npc:22000322$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21220013" desc="Defeat $npc:22000023$ {0} time(s)" complete="Defeated $npc:22000023$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21220014" desc="Defeat $npc:22090166$ {0} time(s)" complete="Defeated $npc:22090166$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21220015" desc="Defeat $npc:22000038$ {0} time(s)" complete="Defeated $npc:22000038$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21220017" desc="Defeat $npc:22000007$ {0} time(s)" complete="Defeated $npc:22000007$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21220018" desc="Defeat $npc:22090007$ {0} time(s)" complete="Defeated $npc:22090007$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21220019" desc="Defeat $npc:22000059$ {0} time(s)" complete="Defeated $npc:22000059$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21220020" desc="Defeat $npc:22000024$ {0} time(s)" complete="Defeated $npc:22000024$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21220021" desc="Defeat $npc:22000053$ {0} time(s)" complete="Defeated $npc:22000053$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21220022" desc="Defeat $npc:22000042$ {0} time(s)" complete="Defeated $npc:22000042$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21220023" desc="Defeat $npc:22000034$ {0} time(s)" complete="Defeated $npc:22000034$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21220024" desc="Defeat $npc:22000052$ {0} time(s)" complete="Defeated $npc:22000052$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21220025" desc="Defeat $npc:22000045$ {0} time(s)" complete="Defeated $npc:22000045$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21220026" desc="Defeat $npc:22409035$ {0} time(s)" complete="Defeated $npc:22409035$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21220027" desc="Defeat $npc:22409034$ {0} time(s)" complete="Defeated $npc:22409034$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21220028" desc="Defeat $npc:22400062$ {0} time(s) in $map:02000194$" complete="Defeated $npc:22400062$ {0} time(s) in $map:02000194$" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21220030" desc="Defeat $npc:22090123$ {0} time(s)" complete="Defeated $npc:22090123$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21220031" desc="Defeat $npc:24001705$ {0} time(s) in $dungeonTitle:21013001$" complete="Defeated $npc:24001705$ {0} time(s) in $dungeonTitle:21013001$" manualDesc="" manualComplete="" feature="KatvanDungeon" />
<achieve id="21220032" desc="Defeat $npc:24001807$ {0} time(s) in the normal adventure dungeon $dungeonTitle:25010001$" complete="Defeated $npc:24001807$ {0} time(s) in the normal adventure dungeon $dungeonTitle:25010001$" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21220033" desc="Defeat $npc:24001507$ {0} time(s) in $dungeonTitle:21015001$" complete="Defeated $npc:24001507$ {0} time(s) in $dungeonTitle:21015001$" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21220034" desc="Defeat $npc:24002701$ {0} time(s) in the normal adventure dungeon $dungeonTitle:21016001$" complete="Defeated $npc:24002701$ {0} time(s) in the normal adventure dungeon $dungeonTitle:21016001$!" manualDesc="" manualComplete="" feature="ShrineOfGuidance" />
<achieve id="21220035" desc="Defeated $npc:24003007$ {0} time(s) in $dungeonTitle:21022001$" complete="Defeated $npc:24003007$ {0} time(s) in $dungeonTitle:21022001$" manualDesc="" manualComplete="" feature="PirateOcean" />
<achieve id="21220036" desc="Defeat {0} $npcPlural:21500820$ in the "$dungeonTitle:24090004$" chaos raid" complete="Defeated {0} $npcPlural:21500820$ in the "$dungeonTitle:24090004$" chaos raid" manualDesc="" manualComplete="" feature="CrimsonBalrog01" />
<achieve id="21220036" desc="Defeat {0} $npcPlural:21500820$ in the chaos raid $dungeonTitle:24090005$" complete="Defeated {0} $npcPlural:21500820$ in the chaos raid $dungeonTitle:24090005$!" manualDesc="" manualComplete="" feature="CrimsonBalrog01" locale="NA" />
<achieve id="21220036" desc="(카오스)"$dungeonTitle:24090005$"에서 $npc:21500820$ {0}마리 처치하기" complete="지금까지 (카오스)"$dungeonTitle:24090005$"에서 $npc:21500820$ {0}마리 처치!" manualDesc="" manualComplete="" feature="CrimsonBalrog01" locale="JP" />
<achieve id="21220036" desc="(카오스)"$dungeonTitle:24090005$"에서 $npc:21500820$ {0}마리 처치하기" complete="지금까지 (카오스)"$dungeonTitle:24090005$"에서 $npc:21500820$ {0}마리 처치!" manualDesc="" manualComplete="" feature="CrimsonBalrog01" locale="TH" />
<achieve id="21220036" desc="(카오스)"$dungeonTitle:24090005$"에서 $npc:21500820$ {0}마리 처치하기" complete="지금까지 (카오스)"$dungeonTitle:24090005$"에서 $npc:21500820$ {0}마리 처치!" manualDesc="" manualComplete="" feature="CrimsonBalrog01" locale="TW" />
<achieve id="21220037" desc="Defeat $npc:24001601$ {0} time(s) in the normal adventure dungeon $dungeonTitle:21019001$" complete="Defeated $npc:24001601$ {0} time(s) in the normal adventure dungeon $dungeonTitle:21019001$" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21220038" desc="Defeat $npc:22300105$ {0} time(s)" complete="Defeated $npc:22300105$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21220039" desc="Defeat $npc:21420107$ {0} time(s) in $dungeonTitle:23031002$" complete="Defeated $npc:21420107$ {0} time(s) in $dungeonTitle:23031002$" manualDesc="" manualComplete="" feature="ChronicleDungeon60_01" />
<achieve id="21230001" desc="Help defeat $npc:23000024$ {0} time(s)" complete="Helped defeat $npc:23000024$ {0} times!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21230002" desc="Help defeat $npc:23000018$ {0} time(s)" complete="Helped defeat $npc:23000018$ {0} times!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21230003" desc="Help defeat $npc:23000019$ {0} time(s)" complete="Helped defeat $npc:23000019$ {0} times!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21230004" desc="Help defeat $npc:23000017$ {0} time(s)" complete="Helped defeat $npc:23000017$ {0} times!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21230005" desc="$npc:23000025$ {0}번 처치하기" complete="지금까지 $npc:23000025$ {0}번 처치!" manualDesc="" manualComplete="" feature="Season2" locale="KR" />
<achieve id="21230006" desc="Help defeat $npc:23000099$ {0} time(s)" complete="Helped defeat $npc:23000099$ {0} times!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21230007" desc="Help defeat $npc:23000020$ {0} time(s)" complete="Helped defeat $npc:23000020$ {0} times!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21230008" desc="$npc:23000100$ {0}번 처치하기" complete="지금까지 $npc:23000100$ {0}번 처치!" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="21230009" desc="Help defeat $npc:23000026$ {0} time(s)" complete="Helped defeat $npc:23000026$ {0} times!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21230010" desc="$npc:23000006$ {0}번 처치하기" complete="지금까지 $npc:23000006$ {0}번 처치!" manualDesc="" manualComplete="" feature="Season3" locale="KR" />
<achieve id="21230011" desc="$npc:23100021$ {0}번 처치하기" complete="지금까지 $npc:23100021$ {0}번 처치!" manualDesc="" manualComplete="" feature="Season2" locale="KR" />
<achieve id="21230012" desc="Defeat $npc:23090005$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20004002$" complete="Defeated $npc:23090005$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20004002$!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21230013" desc="Help defeat $npc:23000001$ {0} time(s)" complete="Helped defeat $npc:23000001$ {0} times!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21230014" desc="Help defeat $npc:23000008$ {0} time(s)" complete="Helped defeat $npc:23000008$ {0} times!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21230015" desc="$npc:23000007$ {0}번 처치하기" complete="지금까지 $npc:23000007$ {0}번 처치!" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="21230016" desc="Help defeat $npc:23000054$ {0} time(s)" complete="Helped defeat $npc:23000054$ {0} times!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21230017" desc="$npc:23000056$ {0}번 처치하기" complete="지금까지 $npc:23000056$ {0}번 처치!" manualDesc="" manualComplete="" feature="Season3" locale="KR" />
<achieve id="21230018" desc="Help defeat $npc:23000035$ {0} time(s)" complete="Helped defeat $npc:23000035$ {0} times!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21230019" desc="Help defeat $npc:23000034$ {0} time(s)" complete="Helped defeat $npc:23000034$ {0} times!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21230020" desc="Defeat $npc:23000071$ {0} time(s)" complete="Defeated $npc:23000071$ {0} time(s)!" manualDesc="" manualComplete="" feature="Zakum01" />
<achieve id="21230021" desc="$npc:23000055$ {0}번 처치하기" complete="지금까지 $npc:23000055$ {0}번 처치!" manualDesc="" manualComplete="" feature="Season2" locale="KR" />
<achieve id="21230022" desc="" complete="" manualDesc="밤 11시 59분에 나의 마지막 일격으로 $npc:23000017$ 처치하기" manualComplete="밤 11시 59분에 나의 마지막 일격으로 $npc:23000017$ 처치!" feature="Season2" locale="KR" />
<achieve id="21230023" desc="Help defeat $npc:23000013$ {0} time(s)" complete="Helped defeat $npc:23000013$ {0} times!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21230024" desc="$npc:23000039$ {0}번 처치하기" complete="지금까지 $npc:23000039$ {0}번 처치!" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="21230025" desc="Help defeat $npc:23000047$ {0} time(s)" complete="Helped defeat $npc:23000047$ {0} times!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21230026" desc="$npc:23000015$ {0}번 처치하기" complete="지금까지 $npc:23000015$ {0}번 처치!" manualDesc="" manualComplete="" feature="Season2" locale="KR" />
<achieve id="21230027" desc="$npc:23100077$ {0}번 처치하기" complete="지금까지 $npc:23100077$ {0}번 처치!" manualDesc="" manualComplete="" feature="Season2" locale="KR" />
<achieve id="21230028" desc="Help defeat $npc:23000045$ {0} time(s)" complete="Helped defeat $npc:23000045$ {0} times!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21230029" desc="Defeat $npc:23000011$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20014002$" complete="So far, you've defeated $npc:23000011$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20014002$!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21230030" desc="Help defeat $npc:23000012$ {0} time(s)" complete="Helped defeat $npc:23000012$ {0} times!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21230031" desc="$npc:23000033$ {0}번 처치하기" complete="지금까지 $npc:23000033$ {0}번 처치!" manualDesc="" manualComplete="" feature="Season3" locale="KR" />
<achieve id="21230032" desc="$npc:23000041$ {0}번 처치하기" complete="지금까지 $npc:23000041$ {0}번 처치!" manualDesc="" manualComplete="" feature="Season2" locale="KR" />
<achieve id="21230033" desc="Battle $npc:23000011$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20014002$" complete="So far, you've battled $npc:23000011$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20014002$!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21230034" desc="Defeat $npc:23100015$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20010001$" complete="Defeated $npc:23100015$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20010001$!" manualDesc="" manualComplete="" feature="DungeonBoss_4P" />
<achieve id="21230035" desc="Defeat $npc:23100021$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20003001$" complete="Defeated $npc:23100021$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20003001$!" manualDesc="" manualComplete="" feature="DungeonBoss_4P" />
<achieve id="21230036" desc="Defeat $npc:23100025$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20005001$" complete="Defeated $npc:23100025$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20005001$!" manualDesc="" manualComplete="" feature="DungeonBoss_4P" />
<achieve id="21230037" desc="Defeat $npc:23100033$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20015001$" complete="Defeated $npc:23100033$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20015001$!" manualDesc="" manualComplete="" feature="DungeonBoss_4P" />
<achieve id="21230038" desc="Defeat $npc:23100039$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20012001$" complete="Defeated $npc:23100039$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20012001$!" manualDesc="" manualComplete="" feature="DungeonBoss_4P" />
<achieve id="21230039" desc="Defeat $npc:23100041$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20013001$" complete="Defeated $npc:23100041$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20013001$!" manualDesc="" manualComplete="" feature="DungeonBoss_4P" />
<achieve id="21230040" desc="Defeat $npc:23100055$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20009001$" complete="Defeated $npc:23100055$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20009001$!" manualDesc="" manualComplete="" feature="DungeonBoss_4P" />
<achieve id="21230041" desc="Defeat $npc:23100056$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20008001$" complete="Defeated $npc:23100056$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20008001$!" manualDesc="" manualComplete="" feature="DungeonBoss_4P" />
<achieve id="21230042" desc="Defeat $npc:23100100$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20002001$" complete="Defeated $npc:23100100$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20002001$!" manualDesc="" manualComplete="" feature="DungeonBoss_4P" />
<achieve id="21230043" desc="Defeat $npc:23100006$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20001001$" complete="Defeated $npc:23100006$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20001001$!" manualDesc="" manualComplete="" feature="DungeonBoss_4P" />
<achieve id="21230044" desc="Defeat $npc:23200007$ {0} time(s) in the chaos raid $dungeonTitle:23006003$" complete="Defeated $npc:23200007$ {0} time(s) in the chaos raid $dungeonTitle:23006003$!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21230045" desc="Defeat $npc:23200015$ {0} time(s) in the chaos raid $dungeonTitle:23010003$" complete="Defeated $npc:23200015$ {0} time(s) in the chaos raid $dungeonTitle:23010003$!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21230046" desc="Defeat $npc:23100007$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20006001$" complete="Defeated $npc:23100007$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20006001$!" manualDesc="" manualComplete="" feature="DungeonBoss_4P" />
<achieve id="21230047" desc="Defeat $npc:23100077$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20011001$" complete="Defeated $npc:23100077$ {0} time(s) in the normal adventure dungeon $dungeonTitle:20011001$!" manualDesc="" manualComplete="" feature="DungeonBoss_4P" />
<achieve id="21230048" desc="Help defeat $npc:23000009$ {0} time(s)" complete="Helped defeat $npc:23000009$ {0} times!" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21230049" desc="Help defeat $npc:23000057$ {0} time(s)" complete="Helped defeat $npc:23000057$ {0} times!" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21230050" desc="Help defeat $npc:23000029$ {0} time(s)" complete="Helped defeat $npc:23000029$ {0} times!" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21230051" desc="Defeat $npc:23000052$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20016002$" complete="Defeated $npc:23000052$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20016002$!" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21230052" desc="Defeat $npc:23000068$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20018002$" complete="Defeated $npc:23000068$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20018002$!" manualDesc="" manualComplete="" feature="Barkhant" />
<achieve id="21230053" desc="Defeat $npc:24002201$ {0} time(s) in $dungeonTitle:21018001$" complete="Defeated $npc:24002201$ {0} time(s) in $dungeonTitle:21018001$" manualDesc="" manualComplete="" feature="KatvanDungeon" />
<achieve id="21230054" desc="Defeat $npc:24002109$ {0} time(s) in $dungeonTitle:21020001$" complete="Defeated $npc:24002109$ {0} time(s) in $dungeonTitle:21020001$" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21230055" desc="Defeat $npc:23000080$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20019002$" complete="Defeated $npc:23000080$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20019002$!" manualDesc="" manualComplete="" feature="NutaNuta" />
<achieve id="21230056" desc="Defeat $npc:43000001$ {0} time(s)" complete="Defeated $npc:43000001$ {0} time(s)!" manualDesc="" manualComplete="" feature="ShadowCataclysm" />
<achieve id="21230057" desc="Defeat $npc:43000101$ {0} time(s)" complete="Defeated $npc:43000101$ {0} time(s)!" manualDesc="" manualComplete="" feature="ShadowCataclysm" />
<achieve id="21230058" desc="Defeat $npc:23000082$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20020002$" complete="Defeated $npc:23000082$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20020002$!" manualDesc="" manualComplete="" feature="Kandura" />
<achieve id="21230059" desc="Defeat $npc:23200077$ {0} time(s) in the chaos raid $dungeonTitle:23011003$" complete="Defeated $npc:23200077$ {0} time(s) in the chaos raid $dungeonTitle:23011003$!" manualDesc="" manualComplete="" feature="ChaosPapulatus" />
<achieve id="21230060" desc="Defeat $npc:23290005$ {0} time(s) in the chaos raid $dungeonTitle:23004003$" complete="Defeated $npc:23290005$ {0} time(s) in the chaos raid $dungeonTitle:23004003$!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21230061" desc="Defeat $npc:23200080$ {0} time(s) in the chaos raid $dungeonTitle:23019003$" complete="Defeated $npc:23200080$ {0} time(s) in the chaos raid $dungeonTitle:23019003$!" manualDesc="" manualComplete="" feature="NutaNuta" />
<achieve id="21230062" desc="Defeat $npc:23200068$ {0} time(s) in the chaos raid $dungeonTitle:23018003$" complete="Defeated $npc:23200068$ {0} time(s) in the chaos raid $dungeonTitle:23018003$!" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21230063" desc="Defeat $npc:23000082$ {0} time(s) in the chaos raid $dungeonTitle:23020003$" complete="Defeated $npc:23000082$ {0} time(s) in the chaos raid $dungeonTitle:23020003$!" manualDesc="" manualComplete="" feature="Kandura" />
<achieve id="21230064" desc="Defeat either $npc:24003001$ or $npc:24003002$ in $dungeonTitle:21022001$ {0} time(s)" complete="Defeated either $npc:24003001$ or $npc:24003002$ in $dungeonTitle:21022001$ {0} time(s)!" manualDesc="" manualComplete="" feature="PirateOcean" />
<achieve id="21230065" desc="Defeat $npc:23100084$ {0} time(s) in $dungeonTitle:21021001$" complete="Defeated $npc:23100084$ {0} time(s) in $dungeonTitle:21021001$" manualDesc="" manualComplete="" feature="SnowKingdom" />
<achieve id="21230066" desc="Defeat $npc:23000083$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20021002$" complete="Defeated $npc:23000083$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20021002$" manualDesc="" manualComplete="" feature="SnowKingdom" />
<achieve id="21230067" desc="" complete="" manualDesc="Defeat $npc:24003001$ before $npc:24003002$ in $dungeonTitle:21022001$" manualComplete="Defeated $npc:24003001$ before $npc:24003002$ in $dungeonTitle:21022001$" feature="PirateOcean" />
<achieve id="21230068" desc="" complete="" manualDesc="Defeat both oracle sisters at once in $dungeonTitle:21022001$" manualComplete="Defeated both oracle sisters at once in $dungeonTitle:21022001$" feature="PirateOcean" />
<achieve id="21230069" desc="Defeat $npc:24002931$ {0} time(s) in $dungeonTitle:21023001$" complete="Defeated $npc:24002931$ {0} time(s) in $dungeonTitle:21023001$!" manualDesc="" manualComplete="" feature="PirateOcean" />
<achieve id="21230070" desc="Complete $dungeonTitle:21024001$ {0} time(s)" complete="Completed $dungeonTitle:21024001$ {0} time(s)" manualDesc="" manualComplete="" feature="DarkCastle" />
<achieve id="21230071" desc="Mount a ballista {0} time(s) in $dungeonTitle:21024001$" complete="Mounted a ballista {0} time(s) in $dungeonTitle:21024001$" manualDesc="" manualComplete="" feature="DarkCastle" />
<achieve id="21230072" desc="Mount a royal war horse {0} times in $dungeonTitle:21024001$" complete="Mounted a royal war horse {0} times in $dungeonTitle:21024001$" manualDesc="" manualComplete="" feature="DarkCastle" />
<achieve id="21230073" desc="Mount the Heavy T55 {0} time(s) in $dungeonTitle:21024001$" complete="Mounted the Heavy T55 {0} time(s) in $dungeonTitle:21024001$" manualDesc="" manualComplete="" feature="DarkCastle" />
<achieve id="21230074" desc="Mount the MK 52 Omega {0} time(s) in $dungeonTitle:21024001$" complete="Mounted the MK 52 Omega {0} time(s) in $dungeonTitle:21024001$" manualDesc="" manualComplete="" feature="DarkCastle" />
<achieve id="21230075" desc="" complete="" manualDesc="Complete $dungeonTitle:21024001$" manualComplete="Completed $dungeonTitle:21024001$" feature="DarkCastle" />
<achieve id="21230076" desc="" complete="" manualDesc="Complete $dungeonTitle:21025001$" manualComplete="Completed $dungeonTitle:21025001$" feature="DarkCastle" />
<achieve id="21230077" desc="" complete="" manualDesc="Complete $dungeonTitle:20022002$" manualComplete="Completed $dungeonTitle:20022002$" feature="DarkCastle" />
<achieve id="21230078" desc="Defeat either $npc:23190105$ or $npc:23190106$ {0} time(s) in $dungeonTitle:21025001$" complete="Defeated either $npc:23190105$ or $npc:23190106$ {0} time(s) in $dungeonTitle:21025001$" manualDesc="" manualComplete="" feature="DarkCastle" />
<achieve id="21230079" desc="" complete="" manualDesc="Simultaneously defeat both twin brothers $dungeonTitle:21025001$" manualComplete="Simultaneously defeated both twin brothers in $dungeonTitle:21025001$" feature="DarkCastle" />
<achieve id="21230080" desc="Defeat $npc:24003214$ {0} time(s) in $dungeonTitle:21026001$" complete="Defeated $npc:24003214$ {0} time(s) in $dungeonTitle:21026001$" manualDesc="" manualComplete="" feature="DarkCastle" />
<achieve id="21230081" desc="Observe an anomaly {0} time(s) in $dungeonTitle:21026001$" complete="Observed an anomaly {0} time(s) in $dungeonTitle:21026001$" manualDesc="" manualComplete="" feature="DarkCastle" />
<achieve id="21230082" desc="Defeat $npc:23000064$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20022002$" complete="Defeated $npc:23000064$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20022002$" manualDesc="" manualComplete="" feature="DarkCastle" />
<achieve id="21230083" desc="(Chaotic) Defeat $npc:23000064$ {0} time(s) in $dungeonTitle:20022002$" complete="(Chaotic) Defeated $npc:23000064$ {0} time(s) in $dungeonTitle:20022002$" manualDesc="" manualComplete="" feature="DarkCastle" />
<achieve id="21230084" desc="" complete="" manualDesc="3차 테스트에서 $npc:23401071$ 제거하기" manualComplete="3차 테스트에서 $npc:23401071$ 제거!" feature="Zakum01" locale="CN" />
<achieve id="21230085" desc="" complete="" manualDesc="3차 테스트에서 $npc:23402071$ 제거하기" manualComplete="3차 테스트에서 $npc:23402071$ 제거!" feature="Zakum01" locale="CN" />
<achieve id="21230086" desc="" complete="" manualDesc="3차 테스트에서 $npc:23403071$ 제거하기" manualComplete="3차 테스트에서 $npc:23403071$ 제거!" feature="Zakum01" locale="CN" />
<achieve id="21230087" desc="" complete="" manualDesc="3차 테스트에서 $npc:23404071$ 제거하기" manualComplete="3차 테스트에서 $npc:23404071$ 제거!" feature="Zakum01" locale="CN" />
<achieve id="21230088" desc="" complete="" manualDesc="3차 테스트에서 $npc:23405071$ 제거하기" manualComplete="3차 테스트에서 $npc:23405071$ 제거!" feature="Zakum01" locale="CN" />
<achieve id="21230089" desc="" complete="" manualDesc="3차 테스트에서 $npc:23406071$ 제거하기" manualComplete="3차 테스트에서 $npc:23406071$ 제거!" feature="Zakum01" locale="CN" />
<achieve id="21230090" desc="" complete="" manualDesc="3차 테스트에서 $npc:23000071$의 모든 팔 제거하기" manualComplete="3차 테스트에서 $npc:23000071$의 모든 팔 제거!" feature="Zakum01" locale="CN" />
<achieve id="21230091" desc="" complete="" manualDesc="3차 테스트에서 $npc:23000071$ 처치하기" manualComplete="3차 테스트에서 $npc:23000071$ 처치!" feature="Zakum01" locale="CN" />
<achieve id="21230092" desc="Defeat $npc:23000088$ {0} time(s) in $dungeonTitle:20023001$" complete="Defeated $npc:23000088$ {0} time(s) in $dungeonTitle:20023001$" manualDesc="" manualComplete="" feature="PinkBean01" />
<achieve id="21230093" desc="Get dancing effect {0} time(s) in $dungeonTitle:20023001$" complete="Got dancing effect {0} time(s) in $dungeonTitle:20023001$" manualDesc="" manualComplete="" feature="PinkBean01" />
<achieve id="21230094" desc="Defeat $npc:21500670$ {0} time(s) in $dungeonTitle:23023003$" complete="Defeated $npc:21500670$ {0} time(s) in $dungeonTitle:23023003$" manualDesc="" manualComplete="" feature="PinkBean01" />
<achieve id="21230095" desc="Complete $dungeonTitle:24090004$ {0} time(s)" complete="Completed $dungeonTitle:24090004$ {0} time(s)" manualDesc="" manualComplete="" feature="CrimsonBalrog01" />
<achieve id="21230095" desc="Complete $dungeonTitle:24090005$ {0} time(s)" complete="Completed $dungeonTitle:24090005$ {0} time(s)" manualDesc="" manualComplete="" feature="CrimsonBalrog01" locale="NA" />
<achieve id="21230095" desc=""$dungeonTitle:24090005$" {0}번 완료하기" complete=""$dungeonTitle:24090005$" {0}번 완료" manualDesc="" manualComplete="" feature="CrimsonBalrog01" locale="JP" />
<achieve id="21230095" desc=""$dungeonTitle:24090005$" {0}번 완료하기" complete=""$dungeonTitle:24090005$" {0}번 완료" manualDesc="" manualComplete="" feature="CrimsonBalrog01" locale="TH" />
<achieve id="21230095" desc=""$dungeonTitle:24090005$" {0}번 완료하기" complete=""$dungeonTitle:24090005$" {0}번 완료" manualDesc="" manualComplete="" feature="CrimsonBalrog01" locale="TW" />
<achieve id="21230096" desc="Help defeat $npc:23000094$ {0} time(s)" complete="Helped defeat $npc:23000094$ {0} time(s)" manualDesc="" manualComplete="" feature="FameContents_EP1_01" />
<achieve id="21230097" desc="Defeat $npc:24000409$ {0} time(s) in the normal adventure dungeon $dungeonTitle:21001001$" complete="Defeated $npc:24000409$ {0} time(s) in the normal adventure dungeon $dungeonTitle:21001001$!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21230098" desc="Defeat either $npc:23000019$ or $npc:23000020$ {0} time(s)" complete="Defeated either $npc:23000019$ or $npc:23000020$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21230099" desc="Defeat either $npcName:23000001$ or $npcName:23000008$ {0} time(s)" complete="Defeated either $npcName:23000001$ or $npcName:23000008$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21230100" desc="Defeat $npc:23100006$, $npc:23100100$, or $npc:23000099$ {0} time(s)" complete="Defeated $npc:23100006$, $npc:23100100$, or $npc:23000099$ {0} time(s)" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21230101" desc="Defeat either $npcName:22409035$ or $npcName:22409034$ {0} time(s)" complete="Defeated either $npcName:22409035$ or $npcName:22409034$ {0} time(s)" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21230102" desc="Defeat $npc:23100025$, $npc:23000024$, or $npc:23000026$ {0} time(s)" complete="Defeated $npc:23100025$, $npc:23000024$, or $npc:23000026$ {0} time(s)" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21230103" desc="Defeat $npc:22000015$ {0} time(s) in $dungeonTitle:21004001$" complete="Defeated $npc:22000015$ {0} time(s) in $dungeonTitle:21004001$" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21230104" desc="Defeat $npc:23000035$ {0} time(s)" complete="Defeated $npc:23000035$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21230105" desc="Defeat $npc:23200067$ {0} time(s) in the chaos raid $dungeonTitle:23022003$" complete="Defeated $npc:23200067$ {0} time(s) in the chaos raid $dungeonTitle:23022003$" manualDesc="" manualComplete="" feature="ChronicleDungeon60_01" />
<achieve id="21230106" desc="Defeat $npc:23000114$ {0} time(s) in the chaos raid $dungeonTitle:23021003$" complete="Defeated $npc:23000114$ {0} time(s) in the chaos raid $dungeonTitle:23021003$!" manualDesc="" manualComplete="" feature="ChronicleDungeon60_01" />
<achieve id="21230107" desc="Defeat $npc:23000115$ {0} time(s) in $dungeonTitle:23023003$" complete="Defeated $npc:23000115$ {0} time(s) in $dungeonTitle:23023003$" manualDesc="" manualComplete="" feature="ChronicleDungeon60_01" />
<achieve id="21230108" desc="Become afflicted with Dance debuff {0} time(s) in $dungeonTitle:23023003$" complete="Afflicted with Dance debuff {0} time(s) in $dungeonTitle:23023003$" manualDesc="" manualComplete="" feature="ChronicleDungeon60_01" />
<achieve id="21230108" desc='"$dungeonTitle:23023003$" 또는 "$dungeonTitle:23080003$", "$dungeonTitle:23081003$"에서 춤추기 효과에 {0}번 걸림' complete='"$dungeonTitle:23023003$" 또는 "$dungeonTitle:23080003$", "$dungeonTitle:23081003$"에서 춤추기 효과에 {0}번 걸림' manualDesc="" manualComplete="" feature="DungeonOS02" />
<achieve id="21230109" desc="Defeat either $npc:21420101$ or $npc:21420102$ in $dungeonTitle:23031002$ {0} time(s)" complete="Defeated either $npc:21420101$ or $npc:21420102$ in $dungeonTitle:23031002$ {0} time(s)!" manualDesc="" manualComplete="" feature="ChronicleDungeon60_01" />
<achieve id="21230110" desc="" complete="" manualDesc="Defeat $npc:21420101$ before $npc:21420102$ in $dungeonTitle:23031002$" manualComplete="Defeated $npc:21420101$ before $npc:21420102$ in $dungeonTitle:23031002$" feature="ChronicleDungeon60_01" />
<achieve id="21230111" desc="" complete="" manualDesc="Defeat both oracle sisters at once in $dungeonTitle:23031002$" manualComplete="Defeated both oracle sisters at once in $dungeonTitle:23031002$" feature="ChronicleDungeon60_01" />
<achieve id="21230112" desc="Defeat $npc:21420207$ {0} time(s) in $dungeonTitle:23032002$" complete="Defeated $npc:21420207$ {0} time(s) in $dungeonTitle:23032002$!" manualDesc="" manualComplete="" feature="ChronicleDungeon60_01" />
<achieve id="21230113" desc="Defeat $npc:21420329$ {0} time(s) in $dungeonTitle:23033002$" complete="Defeated $npc:21420329$ {0} time(s) in $dungeonTitle:23033002$" manualDesc="" manualComplete="" feature="ChronicleDungeon60_01" />
<achieve id="21230114" desc="Complete $dungeonTitle:23035002$ {0} time(s)" complete="Completed $dungeonTitle:23035002$ {0} time(s)" manualDesc="" manualComplete="" feature="ChronicleDungeon60_01" />
<achieve id="21230115" desc="" complete="" manualDesc="Complete $dungeonTitle:23035002$" manualComplete="Completed $dungeonTitle:23035002$" feature="ChronicleDungeon60_01" />
<achieve id="21230116" desc="Defeat $npc:21420514$ {0} time(s) in $dungeonTitle:23034002$" complete="Defeated $npc:21420514$ {0} time(s) in $dungeonTitle:23034002$!" manualDesc="" manualComplete="" feature="ChronicleDungeon60_01" />
<achieve id="21230117" desc="Observe an anomaly {0} time(s) in $dungeonTitle:23034002$" complete="Observed an anomaly {0} time(s) in $dungeonTitle:23034002$" manualDesc="" manualComplete="" feature="ChronicleDungeon60_01" />
<achieve id="21230118" desc="" complete="" manualDesc="Clear $dungeonTitle:23036002$" manualComplete="Cleared $dungeonTitle:23036002$" feature="ChronicleDungeon60_01" />
<achieve id="21230119" desc="Defeat either $npc:21420626$ or $npc:21420627$ {0} time(s) in $dungeonTitle:23036002$" complete="Defeated either $npc:21420626$ or $npc:21420627$ {0} time(s) in $dungeonTitle:23036002$!" manualDesc="" manualComplete="" feature="ChronicleDungeon60_01" />
<achieve id="21230120" desc="" complete="" manualDesc="Simultaneously defeat the twins $npc:21420626$ and $npc:21420627$ in the dungeon $dungeonTitle:23036002$" manualComplete="Simultaneously defeated the twins $npc:21420626$ and $npc:21420627$ in the dungeon $dungeonTitle:23036002$" feature="ChronicleDungeon60_01" />
<achieve id="21230121" desc="" complete="" manualDesc="Overcome the monsters of chaos" manualComplete="Overcame the monsters of chaos" feature="JobChange_01" />
<achieve id="21230122" desc="Receive rewards {0} time(s) for $dungeonTitle:27000001$" complete="Received rewards {0} time(s) for $dungeonTitle:27000001$" manualDesc="" manualComplete="" feature="LapentaDungeon" />
<achieve id="21230123" desc="Defeat $npc:23501001$ {0} time(s) in $dungeonTitle:27000001$" complete="Defeated $npc:23501001$ {0} time(s) in $dungeonTitle:27000001$" manualDesc="" manualComplete="" feature="LapentaDungeon" />
<achieve id="21230124" desc="Defeat $npc:23501011$ {0} time(s) in $dungeonTitle:27001001$" complete="Defeated $npc:23501011$ {0} time(s) in $dungeonTitle:27001001$" manualDesc="" manualComplete="" feature="LapentaDungeon" />
<achieve id="21230125" desc="Receive rewards {0} time(s) for $dungeonTitle:27001001$" complete="Received rewards {0} time(s) for $dungeonTitle:27001001$" manualDesc="" manualComplete="" feature="LapentaDungeon" />
<achieve id="21230126" desc="Defeat $npc:23000113$ {0} time(s) in $dungeonTitle:27002001$" complete="Defeated $npc:23000113$ {0} time(s) in $dungeonTitle:27002001$" manualDesc="" manualComplete="" feature="LapentaDungeon" />
<achieve id="21230127" desc="Receive rewards {0} time(s) for $dungeonTitle:27002001$" complete="Received rewards {0} time(s) for $dungeonTitle:27002001$" manualDesc="" manualComplete="" feature="LapentaDungeon" />
<achieve id="21230128" desc="Rescue everyone {0} time(s) in $dungeonTitle:27003001$" complete="Rescued everyone {0} time(s) in $dungeonTitle:27003001$" manualDesc="" manualComplete="" feature="LapentaDungeon" />
<achieve id="21230129" desc="Receive rewards {0} time(s) for $dungeonTitle:27003001$" complete="Received rewards {0} time(s) for $dungeonTitle:27003001$" manualDesc="" manualComplete="" feature="LapentaDungeon" />
<achieve id="21230130" desc="" complete="" manualDesc="Clear $dungeonTitle:27003001$" manualComplete="Cleared $dungeonTitle:27003001$" feature="LapentaDungeon" />
<achieve id="21230131" desc="" complete="" manualDesc="Survive the area controlled by a corrupted ally" manualComplete="Survived the area controlled by a corrupted ally" feature="LapentaDungeon" />
<achieve id="21230132" desc='Defeat $npc:23000084$ {0} time(s) in normal chaos raid $dungeonTitle:23110001$' complete='Defeated $npc:23000084$ {0} time(s) in normal chaos raid $dungeonTitle:23110001$' feature="DungeonOpen70CH7" />
<achieve id="21230133" desc="Defeat $npcName:24001308$ {0} time(s) in normal adventure dungeon $dungeonTitle:21010001$" complete="Defeated $npcName:24001308$ {0} time(s) in normal adventure dungeon $dungeonTitle:21010001$" manualDesc="" manualComplete="" feature="KarkarIsland" locale="NA" />
<achieve id="21230133" desc="모험[일반] : "$dungeonTitle:21010001$"에서 $npcName:24001308$ {0}번 처치하기" complete="모험[일반] : "$dungeonTitle:21010001$"에서 $npcName:24001308$ {0}번 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="JP" />
<achieve id="21230133" desc="모험[일반] : "$dungeonTitle:21010001$"에서 $npcName:24001308$ {0}번 처치하기" complete="모험[일반] : "$dungeonTitle:21010001$"에서 $npcName:24001308$ {0}번 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TH" />
<achieve id="21230133" desc="모험[일반] : "$dungeonTitle:21010001$"에서 $npcName:24001308$ {0}번 처치하기" complete="모험[일반] : "$dungeonTitle:21010001$"에서 $npcName:24001308$ {0}번 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TW" />
<achieve id="21230134" desc="Defeat $npcName:24001802$ {0} time(s) in normal adventure dungeon $dungeonTitle:25010001$" complete="Defeated $npcName:24001802$ {0} time(s) in normal adventure dungeon $dungeonTitle:25010001$" manualDesc="" manualComplete="" feature="KarkarIsland" locale="NA" />
<achieve id="21230134" desc="모험[일반] : "$dungeonTitle:25010001$"에서 $npcName:24001802$ {0}번 처치하기" complete="모험[일반] : "$dungeonTitle:25010001$"에서 $npcName:24001802$ {0}번 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="JP" />
<achieve id="21230134" desc="모험[일반] : "$dungeonTitle:25010001$"에서 $npcName:24001802$ {0}번 처치하기" complete="모험[일반] : "$dungeonTitle:25010001$"에서 $npcName:24001802$ {0}번 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TH" />
<achieve id="21230134" desc="모험[일반] : "$dungeonTitle:25010001$"에서 $npcName:24001802$ {0}번 처치하기" complete="모험[일반] : "$dungeonTitle:25010001$"에서 $npcName:24001802$ {0}번 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TW" />
<achieve id="21230135" desc="Defeat $npcName:24001907$ {0} time(s) in normal adventure dungeon $dungeonTitle:25009001$" complete="Defeated $npcName:24001907$ {0} time(s) in normal adventure dungeon $dungeonTitle:25009001$" manualDesc="" manualComplete="" feature="KarkarIsland" locale="NA" />
<achieve id="21230135" desc="모험[일반] : "$dungeonTitle:25009001$"에서 $npcName:24001907$ {0}번 처치하기" complete="모험[일반] : "$dungeonTitle:25009001$"에서 $npcName:24001907$ {0}번 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="JP" />
<achieve id="21230135" desc="모험[일반] : "$dungeonTitle:25009001$"에서 $npcName:24001907$ {0}번 처치하기" complete="모험[일반] : "$dungeonTitle:25009001$"에서 $npcName:24001907$ {0}번 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TH" />
<achieve id="21230135" desc="모험[일반] : "$dungeonTitle:25009001$"에서 $npcName:24001907$ {0}번 처치하기" complete="모험[일반] : "$dungeonTitle:25009001$"에서 $npcName:24001907$ {0}번 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TW" />
<achieve id="21230136" desc="Defeat $npcName:22500020$ {0} time(s) in normal adventure dungeon $dungeonTitle:20017001$" complete="Defeated $npcName:22500020$ {0} time(s) in normal adventure dungeon $dungeonTitle:20017001$" manualDesc="" manualComplete="" feature="KarkarIsland" locale="NA" />
<achieve id="21230136" desc="모험[일반] : "$dungeonTitle:20017001$"에서 $npcName:22500020$ {0}번 처치하기" complete="모험[일반] : "$dungeonTitle:20017001$"에서 $npcName:22500020$ {0}번 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="JP" />
<achieve id="21230136" desc="모험[일반] : "$dungeonTitle:20017001$"에서 $npcName:22500020$ {0}번 처치하기" complete="모험[일반] : "$dungeonTitle:20017001$"에서 $npcName:22500020$ {0}번 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TH" />
<achieve id="21230136" desc="모험[일반] : "$dungeonTitle:20017001$"에서 $npcName:22500020$ {0}번 처치하기" complete="모험[일반] : "$dungeonTitle:20017001$"에서 $npcName:22500020$ {0}번 처치" manualDesc="" manualComplete="" feature="KarkarIsland" locale="TW" />
<achieve id="21230137" desc="Defeat $npc:21500850$ {0} time(s) in $dungeonTitle:23023003$" complete="Defeated $npc:21500850$ {0} time(s) in $dungeonTitle:23023003$" manualDesc="" manualComplete="" feature="PinkBean01" />
<achieve id="21230138" desc="(카오스)"$dungeonTitle:23006003$"에서 보상 {0}번 받기" complete="지금까지 (카오스)"$dungeonTitle:23006003$"에서 보상 {0}번 획득" manualDesc="" manualComplete="" feature="DungeonOpen50CH1" locale="JP" />
<achieve id="21230138" desc="(카오스)"$dungeonTitle:23006003$"에서 보상 {0}번 받기" complete="지금까지 (카오스)"$dungeonTitle:23006003$"에서 보상 {0}번 획득" manualDesc="" manualComplete="" feature="DungeonOpen50CH1" locale="TH" />
<achieve id="21230138" desc="(카오스)"$dungeonTitle:23006003$"에서 보상 {0}번 받기" complete="지금까지 (카오스)"$dungeonTitle:23006003$"에서 보상 {0}번 획득" manualDesc="" manualComplete="" feature="DungeonOpen50CH1" locale="TW" />
<achieve id="21230139" desc="(카오스)"$dungeonTitle:23010003$"에서 보상 {0}번 받기" complete="지금까지 (카오스)"$dungeonTitle:23010003$"에서 보상 {0}번 획득" manualDesc="" manualComplete="" feature="DungeonOpen50CH2" locale="JP" />
<achieve id="21230139" desc="(카오스)"$dungeonTitle:23010003$"에서 보상 {0}번 받기" complete="지금까지 (카오스)"$dungeonTitle:23010003$"에서 보상 {0}번 획득" manualDesc="" manualComplete="" feature="DungeonOpen50CH2" locale="TH" />
<achieve id="21230139" desc="(카오스)"$dungeonTitle:23010003$"에서 보상 {0}번 받기" complete="지금까지 (카오스)"$dungeonTitle:23010003$"에서 보상 {0}번 획득" manualDesc="" manualComplete="" feature="DungeonOpen50CH2" locale="TW" />
<achieve id="21230140" desc="(카오스)"$dungeonTitle:23011003$"에서 보상 {0}번 받기" complete="지금까지 (카오스)"$dungeonTitle:23011003$"에서 보상 {0}번 획득" manualDesc="" manualComplete="" feature="DungeonOpen50CH3" locale="JP" />
<achieve id="21230140" desc="(카오스)"$dungeonTitle:23011003$"에서 보상 {0}번 받기" complete="지금까지 (카오스)"$dungeonTitle:23011003$"에서 보상 {0}번 획득" manualDesc="" manualComplete="" feature="DungeonOpen50CH3" locale="TH" />
<achieve id="21230140" desc="(카오스)"$dungeonTitle:23011003$"에서 보상 {0}번 받기" complete="지금까지 (카오스)"$dungeonTitle:23011003$"에서 보상 {0}번 획득" manualDesc="" manualComplete="" feature="DungeonOpen50CH3" locale="TW" />
<achieve id="21230141" desc="" complete="" manualDesc="Earned trophies in 2 categories from the Eye of Lapenta dungeons" manualComplete="Earn trophies in 2 categories from the Eye of Lapenta dungeons" feature="LapentaDungeon" />
<achieve id="21230142" desc="Defeat $npc:23090006$ {0} time(s) in $dungeonTitle:23038002$" complete="Defeated $npc:23090006$ {0} time(s) in $dungeonTitle:23038002$" manualDesc="" manualComplete="" feature="Kritias_Balrog01" />
<achieve id="21230143" desc="Defeat $npc:23000301$ {0} time(s) in $dungeonTitle:23037002$" complete="Defeated $npc:23000301$ {0} time(s) in $dungeonTitle:23037002$" manualDesc="" manualComplete="" feature="Kritias_Paika01" />
<achieve id="21230144" desc="Defeat $npc:25100105$ {0} time(s) in $map:02020062$" complete="Defeated $npc:25100105$ {0} time(s) in $map:02020062$" manualDesc="" manualComplete="" feature="Fieldwar01" />
<achieve id="21230145" desc="Defeat $npc:25100005$ {0} time(s) in $map:02020061$" complete="Defeated $npc:25100005$ {0} time(s) in $map:02020061$" manualDesc="" manualComplete="" feature="Fieldwar01" />
<achieve id="21230146" desc="Defeat $npc:23001006$ {0} time(s) in $map:02020051$" complete="Defeated $npc:23001006$ {0} time(s) in $map:02020051$" manualDesc="" manualComplete="" feature="Gigantica01" />
<achieve id="21230147" desc="Summon $npc:23001006$ {0} time(s) in $map:02020051$" complete="Summoned $npc:23001006$ {0} time(s) in $map:02020051$" manualDesc="" manualComplete="" feature="Gigantica01" />
<achieve id="21230148" desc="Mount a Phantom Destroyer {0} time(s) in $map:02020051$" complete="Mounted a Phantom Destroyer {0} time(s) in $map:02020051$" manualDesc="" manualComplete="" feature="Gigantica01" />
<achieve id="21230149" desc="Fire $npc:21803500$ {0} time(s) in $map:02020097$" complete="Fired $npc:21803500$ {0} time(s) in $map:02020097$" manualDesc="" manualComplete="" feature="Kritias_Balrog01" />
<achieve id="21230150" desc="Defeat $npc:23000072$ {0} time(s) in $map:02000426$" complete="Defeated $npc:23000072$ {0} time(s) in $map:02000426$" manualDesc="" manualComplete="" feature="Kritias_Zakum01" />
<achieve id="21230151" desc="Defeat $npc:23000150$ {0} time(s) in $map:02020098$" complete="Defeated $npc:23000150$ {0} time(s) in $map:02020098$" manualDesc="" manualComplete="" feature="Kritias_Inferno01" />
<achieve id="21230152" desc="Defeat $npc:25100306$ {0} time(s) in $map:02020065$" complete="Defeated $npc:25100306$ {0} time(s) in $map:02020065$" manualDesc="" manualComplete="" feature="Fieldwar02" />
<achieve id="21230153" desc="Defeat $npc:25100209$ {0} time(s) in $map:02020063$" complete="Defeated $npc:25100209$ {0} time(s) in $map:02020063$" manualDesc="" manualComplete="" feature="Fieldwar02" />
<achieve id="21230154" desc="Achieve victory {0} time(s) in "$map:83000002$"" complete="Achieve victory {0} time(s) in "$map:83000002$"" manualDesc="" manualComplete="" feature="Colosseum01" />
<achieve id="21230155" desc="" complete="" manualDesc="Win round 8 in $map:83000002$" manualComplete="Won round 8 in $map:83000002$" feature="Colosseum01" />
<achieve id="21230156" desc="Win against $npc:60000101$ {0} time(s) in $map:83000002$" complete="Won against $npc:60000101$ {0} time(s) in $map:83000002$" manualDesc="" manualComplete="" feature="Colosseum01" />
<achieve id="21230157" desc="Win against $npc:60000102$ {0} time(s) in $map:83000002$" complete="Won against $npc:60000102$ {0} time(s) in $map:83000002$" manualDesc="" manualComplete="" feature="Colosseum01" />
<achieve id="21230158" desc="Win against $npc:60000103$ {0} time(s) in $map:83000002$" complete="Won against $npc:60000103$ {0} time(s) in $map:83000002$" manualDesc="" manualComplete="" feature="Colosseum01" />
<achieve id="21230159" desc="Win against $npc:60000201$ {0} time(s) in $map:83000002$" complete="Won against $npc:60000201$ {0} time(s) in $map:83000002$" manualDesc="" manualComplete="" feature="Colosseum01" />
<achieve id="21230160" desc="Win against $npc:60000202$ {0} time(s) in $map:83000002$" complete="Won against $npc:60000202$ {0} time(s) in $map:83000002$" manualDesc="" manualComplete="" feature="Colosseum01" />
<achieve id="21230161" desc="Win against $npc:60000203$ {0} time(s) in $map:83000002$" complete="Won against $npc:60000203$ {0} time(s) in $map:83000002$" manualDesc="" manualComplete="" feature="Colosseum01" />
<achieve id="21230162" desc="Win against $npc:60000204$ {0} time(s) in $map:83000002$" complete="Won against $npc:60000204$ {0} time(s) in $map:83000002$" manualDesc="" manualComplete="" feature="Colosseum01" />
<achieve id="21230163" desc="Win against $npc:60000301$ {0} time(s) in $map:83000002$" complete="Won against $npc:60000301$ {0} time(s) in $map:83000002$" manualDesc="" manualComplete="" feature="Colosseum01" />
<achieve id="21230164" desc="Win against $npc:60000302$ {0} time(s) in $map:83000002$" complete="Won against $npc:60000302$ {0} time(s) in $map:83000002$" manualDesc="" manualComplete="" feature="Colosseum01" />
<achieve id="21230165" desc="Win against $npc:60000303$ {0} time(s) in $map:83000002$" complete="Won against $npc:60000303$ {0} time(s) in $map:83000002$" manualDesc="" manualComplete="" feature="Colosseum01" />
<achieve id="21230166" desc="Win round 10 in $map:83000002$ {0} time(s)" complete="Won round 10 in $map:83000002$ {0} time(s)" manualDesc="" manualComplete="" feature="Colosseum01" />
<achieve id="21230167" desc="Defeat $npc:23503003$ {0} time(s) in $dungeonTitle:27004001$" complete="Defeated $npc:23503003$ {0} time(s) in $dungeonTitle:27004001$" manualDesc="" manualComplete="" feature="Kritias_Turka01" />
<achieve id="21230168" desc="Defeat $npc:23504101$ {0} time(s) in $dungeonTitle:27005001$" complete="Defeated $npc:23504101$ {0} time(s) in $dungeonTitle:27005001$" manualDesc="" manualComplete="" feature="Kritias_Turka02" />
<achieve id="21230169" desc="Defeat $npc:23000122$ {0} time(s) in $dungeonTitle:27006001$" complete="Defeated $npc:23000122$ {0} time(s) in $dungeonTitle:27006001$" manualDesc="" manualComplete="" feature="Kritias_Turka03" />
<achieve id="21230170" desc="Win against $npc:60000304$ {0} time(s) in $map:83000002$" complete="Won against $npc:60000304$ {0} time(s) in $map:83000002$" manualDesc="" manualComplete="" feature="Colosseum02" />
<achieve id="21230171" desc="Win against $npc:60000305$ {0} time(s) in $map:83000002$" complete="Won against $npc:60000305$ {0} time(s) in $map:83000002$" manualDesc="" manualComplete="" feature="Colosseum02" />
<achieve id="21230172" desc="Win against $npc:60000310$ {0} time(s) in $map:83000002$" complete="Won against $npc:60000310$ {0} time(s) in $map:83000002$" manualDesc="" manualComplete="" feature="Colosseum02" />
<achieve id="21230173" desc=""$dungeonTitle:23050003$"에서 $npcName:11004831$$pp:와,과$ {0}번 놀아주기" complete=""$dungeonTitle:23050003$"에서 $npcName:11004831$$pp:와,과$ {0}번 놀아줌!" manualDesc="" manualComplete="" feature="BlackBean01" />
<achieve id="21231001" desc="Land the final blow on $npc:23000024$ {0} time(s)" complete="Landed the final blow on $npc:23000024$ {0} time(s)" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21231002" desc="Land the final blow on $npc:23000018$ {0} time(s)" complete="Landed the final blow on $npc:23000018$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21231003" desc="Land the final blow on $npc:23000019$ {0} time(s)" complete="Landed the final blow on $npc:23000019$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21231004" desc="Land the final blow on $npc:23000017$ {0} time(s)" complete="Landed the final blow on $npc:23000017$ {0} time(s)" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21231005" desc="나의 마지막 일격으로 $npc:23000025$ {0}회 처치하기" complete="나의 마지막 일격으로 $npc:23000025$ {0}회 처치" manualDesc="" manualComplete="" feature="Season2" locale="KR" />
<achieve id="21231006" desc="Land the final blow on $npc:23000099$ {0} time(s)" complete="Landed the final blow on $npc:23000099$ {0} time(s)" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21231007" desc="Land the final blow on $npc:23000020$ {0} time(s)" complete="Landed the final blow on $npc:23000020$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21231008" desc="나의 마지막 일격으로 $npc:23000100$ {0}회 처치하기" complete="나의 마지막 일격으로 $npc:23000100$ {0}회 처치" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="21231009" desc="Land the final blow on $npc:23000026$ {0} time(s)" complete="Landed the final blow on $npc:23000026$ {0} time(s)" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21231010" desc="나의 마지막 일격으로 $npc:23000006$ {0}회 처치하기" complete="나의 마지막 일격으로 $npc:23000006$ {0}회 처치" manualDesc="" manualComplete="" feature="Season3" locale="KR" />
<achieve id="21231011" desc="나의 마지막 일격으로 $npc:23100021$ {0}회 처치하기" complete="나의 마지막 일격으로 $npc:23100021$ {0}회 처치" manualDesc="" manualComplete="" feature="Season2" locale="KR" />
<achieve id="21231012" desc="Land the final blow on $npc:23090005$ {0} time(s)" complete="Landed the final blow on $npc:23090005$ {0} time(s)" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21231013" desc="Land the final blow on $npc:23000001$ {0} time(s)" complete="Landed the final blow on $npc:23000001$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21231014" desc="Land the final blow on $npc:23000008$ {0} time(s)" complete="Landed the final blow on $npc:23000008$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21231015" desc="나의 마지막 일격으로 $npc:23000007$ {0}회 처치하기" complete="나의 마지막 일격으로 $npc:23000007$ {0}회 처치" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="21231016" desc="Land the final blow on $npc:23000054$ {0} time(s)" complete="Landed the final blow on $npc:23000054$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21231017" desc="나의 마지막 일격으로 $npc:23000056$ {0}회 처치하기" complete="나의 마지막 일격으로 $npc:23000056$ {0}회 처치" manualDesc="" manualComplete="" feature="Season3" locale="KR" />
<achieve id="21231018" desc="Land the final blow on $npc:23000035$ {0} time(s)" complete="Landed the final blow on $npc:23000035$ {0} time(s)" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21231019" desc="Land the final blow on $npc:23000034$ {0} time(s)" complete="Landed the final blow on $npc:23000034$ {0} time(s)" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21231020" desc="Land the final blow on $npc:23000071$ {0} time(s)" complete="Landed the final blow on $npc:23000071$ {0} time(s)" manualDesc="" manualComplete="" feature="Zakum01" />
<achieve id="21231021" desc="Land the final blow on $npc:23000013$ {0} time(s)" complete="Landed the final blow on $npc:23000013$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21231022" desc="나의 마지막 일격으로 $npc:23000039$ {0}회 처치하기" complete="나의 마지막 일격으로 $npc:23000039$ {0}회 처치" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="21231023" desc="Land the final blow on $npc:23000047$ {0} time(s)" complete="Landed the final blow on $npc:23000047$ {0} time(s)" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21231024" desc="나의 마지막 일격으로 $npc:23000015$ {0}회 처치하기" complete="나의 마지막 일격으로 $npc:23000015$ {0}회 처치" manualDesc="" manualComplete="" feature="Season2" locale="KR" />
<achieve id="21231025" desc="나의 마지막 일격으로 $npc:23000077$ {0}회 처치하기" complete="나의 마지막 일격으로 $npc:23000077$ {0}회 처치" manualDesc="" manualComplete="" feature="Season2" locale="KR" />
<achieve id="21231026" desc="나의 마지막 일격으로 $npc:23000045$ {0}회 처치하기" complete="나의 마지막 일격으로 $npc:23000045$ {0}회 처치" manualDesc="" manualComplete="" feature="Season3" locale="KR" />
<achieve id="21231027" desc="Land the final blow on $npc:23000011$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20014002$" complete="Landed the final blow on $npc:23000011$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20014002$!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21231028" desc="Land the final blow on $npc:23000012$ {0} time(s)" complete="Landed the final blow on $npc:23000012$ {0} time(s)" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21231029" desc="나의 마지막 일격으로 $npc:23000033$ {0}회 처치하기" complete="나의 마지막 일격으로 $npc:23000033$ {0}회 처치" manualDesc="" manualComplete="" feature="Season3" locale="KR" />
<achieve id="21231030" desc="나의 마지막 일격으로 $npc:23000055$ {0}회 처치하기" complete="나의 마지막 일격으로 $npc:23000055$ {0}회 처치" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="21231031" desc="나의 마지막 일격으로 $npc:23000041$ {0}회 처치하기" complete="나의 마지막 일격으로 $npc:23000041$ {0}회 처치" manualDesc="" manualComplete="" feature="Season2" locale="KR" />
<achieve id="21231032" desc="Land the final blow on $npc:23000009$ {0} time(s)" complete="Landed the final blow on $npc:23000009$ {0} time(s)" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21231033" desc="Land the final blow on $npc:23000057$ {0} time(s)" complete="Landed the final blow on $npc:23000057$ {0} time(s)" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21231034" desc="Land the final blow on $npc:23000029$ {0} time(s)" complete="Landed the final blow on $npc:23000029$ {0} time(s)" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21231035" desc="Land the final blow on $npc:23000052$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20016002$" complete="Landed the final blow on $npc:23000052$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20016002$!" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21231036" desc="Land the final blow on $npc:43000001$ {0} time(s)" complete="Landed the final blow on $npc:43000001$ {0} time(s)" manualDesc="" manualComplete="" feature="ShadowCataclysm" />
<achieve id="21231037" desc="Land the final blow on $npc:43000101$ {0} time(s)" complete="Landed the final blow on $npc:43000101$ {0} time(s)" manualDesc="" manualComplete="" feature="ShadowCataclysm" />
<achieve id="21231038" desc="Land the final blow on $npc:23100084$ {0} time(s)" complete="Landed the final blow on $npc:23100084$ {0} time(s)" manualDesc="" manualComplete="" feature="SnowKingdom" />
<achieve id="21231039" desc="Land the final blow on $npc:23000083$ {0} time(s)" complete="Landed the final blow on $npc:23000083$ {0} time(s)" manualDesc="" manualComplete="" feature="SnowKingdom" />
<achieve id="21231040" desc="Land the final blow on $npc:23000064$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20022002$" complete="Landed the final blow on $npc:23000064$ {0} time(s) in the hard adventure dungeon $dungeonTitle:20022002$" manualDesc="" manualComplete="" feature="DarkCastle" />
<achieve id="21231041" desc="Land the final blow on $npc:23000064$ {0} time(s) in (Chaos) $dungeonTitle:20022002$" complete="Landed the final blow on $npc:23000064$ {0} time(s) in (Chaos) $dungeonTitle:20022002$" manualDesc="" manualComplete="" feature="DarkCastle" />
<achieve id="21231042" desc="Land the final blow on $npc:23000094$ {0} time(s)" complete="Landed the final blow on $npc:23000094$ {0} time(s)" manualDesc="" manualComplete="" feature="FameContents_EP1_01" />
<achieve id="21231043" desc="Land the final blow on $npc:23200067$ {0} time(s) in the chaos raid $dungeonTitle:23022003$" complete="Landed the final blow on $npc:23200067$ {0} time(s) in the chaos raid $dungeonTitle:23022003$" manualDesc="" manualComplete="" feature="ChronicleDungeon60_01" />
<achieve id="21231044" desc="Land the final blow on $npc:23000114$ {0} time(s) in the chaos raid $dungeonTitle:23021003$" complete="Landed the final blow on $npc:23000114$ {0} time(s) in the chaos raid $dungeonTitle:23021003$" manualDesc="" manualComplete="" feature="ChronicleDungeon60_01" />
<achieve id="21231045" desc="Land the final blow on $npc:21420329$ {0} time(s) in the hard adventure dungeon $dungeonTitle:23033002$" complete="Landed the final blow on $npc:21420329$ {0} time(s) in the hard adventure dungeon $dungeonTitle:23033002$" manualDesc="" manualComplete="" feature="ChronicleDungeon60_01" />
<achieve id="21231046" desc="Land the final blow on $npc:23501001$ {0} time(s) in $dungeonTitle:27000001$" complete="Landed the final blow on $npc:23501001$ {0} time(s) in $dungeonTitle:27000001$" manualDesc="" manualComplete="" feature="LapentaDungeon" />
<achieve id="21231047" desc="Land the final blow on $npc:23501011$ {0} time(s) in $dungeonTitle:27001001$" complete="Landed the final blow on $npc:23501011$ {0} time(s) in $dungeonTitle:27001001$" manualDesc="" manualComplete="" feature="LapentaDungeon" />
<achieve id="21231048" desc="Land the final blow on $npc:23000113$ {0} time(s) in $dungeonTitle:27002001$" complete="Landed the final blow on $npc:23000113$ {0} time(s) in $dungeonTitle:27002001$" manualDesc="" manualComplete="" feature="LapentaDungeon" />
<achieve id="21231049" desc="Land the final blow on $npc:23000116$ {0} time(s) in $dungeonTitle:27003001$" complete="Landed the final blow on $npc:23000116$ {0} time(s) in $dungeonTitle:27003001$" manualDesc="" manualComplete="" feature="LapentaDungeon" />
<achieve id="21231050" desc="Land the final blow on $npc:23000117$ {0} time(s) in $dungeonTitle:27003001$" complete="Landed the final blow on $npc:23000117$ {0} time(s) in $dungeonTitle:27003001$" manualDesc="" manualComplete="" feature="LapentaDungeon" />
<achieve id="21231051" desc="Land the final blow on $npc:23000118$ {0} time(s) in $dungeonTitle:27003001$" complete="Landed the final blow on $npc:23000118$ {0} time(s) in $dungeonTitle:27003001$" manualDesc="" manualComplete="" feature="LapentaDungeon" />
<achieve id="21231052" desc="Land the final blow on $npc:23090006$ {0} time(s) in $dungeonTitle:23038002$" complete="Landed the final blow on $npc:23090006$ {0} time(s) in $dungeonTitle:23038002$" manualDesc="" manualComplete="" feature="Kritias_Balrog01" />
<achieve id="21231053" desc="Land the final blow on $npc:23000301$ {0} time(s) in $dungeonTitle:23037002$" complete="Landed the final blow on $npc:23000301$ {0} time(s) in $dungeonTitle:23037002$" manualDesc="" manualComplete="" feature="Kritias_Paika01" />
<achieve id="21231054" desc="Land the final blow on $npc:25100105$ {0} time(s) in $map:02020062$" complete="Landed the final blow on $npc:25100105$ {0} time(s) in $map:02020062$" manualDesc="" manualComplete="" feature="Fieldwar01" />
<achieve id="21231055" desc="Land the final blow on $npc:25100005$ {0} time(s) in $map:02020061$" complete="Landed the final blow on $npc:25100005$ {0} time(s) in $map:02020061$" manualDesc="" manualComplete="" feature="Fieldwar01" />
<achieve id="21231056" desc="Land the final blow on $npc:23001006$ {0} time(s) in $map:02020051$" complete="Landed the final blow on $npc:23001006$ {0} time(s) in $map:02020051$" manualDesc="" manualComplete="" feature="Gigantica01" />
<achieve id="21231057" desc="Land the final blow on $npc:23000072$ {0} time(s) in $map:02000426$" complete="Landed the final blow on $npc:23000072$ {0} time(s) in $map:02000426$" manualDesc="" manualComplete="" feature="Kritias_Zakum01" />
<achieve id="21231058" desc="Land the final blow on $npc:23000150$ {0} time(s) in $map:02020098$" complete="Landed the final blow on $npc:23000150$ {0} time(s) in $map:02020098$" manualDesc="" manualComplete="" feature="Kritias_Inferno01" />
<achieve id="21231059" desc="Land the final blow on $npc:25100306$ {0} time(s) in $map:02020065$" complete="Landed the final blow on $npc:25100306$ {0} time(s) in $map:02020065$" manualDesc="" manualComplete="" feature="Fieldwar02" />
<achieve id="21231060" desc="Land the final blow on $npc:25100209$ {0} time(s) in $map:02020063$" complete="Landed the final blow on $npc:25100209$ {0} time(s) in $map:02020063$" manualDesc="" manualComplete="" feature="Fieldwar02" />
<achieve id="21231061" desc="Land the final blow on $npc:23503003$ {0} time(s) in $dungeonTitle:27004001$" complete="Landed the final blow on $npc:23503003$ {0} time(s) in $dungeonTitle:27004001$" manualDesc="" manualComplete="" feature="Kritias_Turka01" />
<achieve id="21231062" desc="Land the final blow on $npc:23504101$ {0} time(s) in $dungeonTitle:27005001$" complete="Landed the final blow on $npc:23504101$ {0} time(s) in $dungeonTitle:27005001$" manualDesc="" manualComplete="" feature="Kritias_Turka02" />
<achieve id="21231063" desc="Land the final blow on $npc:23000122$ {0} time(s) in $dungeonTitle:27006001$" complete="Landed the final blow on $npc:23000122$ {0} time(s) in $dungeonTitle:27006001$" manualDesc="" manualComplete="" feature="Kritias_Turka03" />
<achieve id="21232001" desc="Get spat on by $npc:22000059$ {0} time(s)" complete="Got spat on by $npc:22000059$ {0} time(s)" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21232002" desc="Get tombstoned by $npc:22000015$'s whirlwind attack {0} time(s)" complete="Got tombstoned by $npc:22000015$'s whirlwind attack {0} time(s)" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21232003" desc="" complete="" manualDesc="Get shrunk by $npc:22090107$'s attack" manualComplete="Got shrunk by $npc:22090107$'s attack" feature="Season2" />
<achieve id="21232004" desc="" complete="" manualDesc="Get trapped in $npc:22090107$'s water prison" manualComplete="Get trapped in $npc:22090107$'s water prison" feature="Season2" />
<achieve id="21233001" desc="" complete="" manualDesc="Vomit from the $npc:23000018$'s special attack" manualComplete="Vomited from the $npc:23000018$'s special attack" feature="Season1" />
<achieve id="21233002" desc="" complete="" manualDesc="Get trapped in the $npc:23000018$'s water prison" manualComplete="Got trapped in the $npc:23000018$'s water prison" feature="Season1" />
<achieve id="21233003" desc="Get tombstoned by $npc:23000017$'s spinning horn strike {0} time(s)" complete="Got tombstoned by $npc:23000017$'s spinning horn strike {0} time(s)" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21233004" desc="" complete="" manualDesc="Fly by grabbing onto $npc:23000019$" manualComplete="Fly by grabbing onto $npc:23000019$" feature="Season1" />
<achieve id="21233005" desc="" complete="" manualDesc="Fly by grabbing onto $npc:23000020$" manualComplete="Fly by grabbing onto $npc:23000020$" feature="Season1" />
<achieve id="21233006" desc="" complete="" manualDesc="$npc:23100021$에 매달려 날기" manualComplete="$npc:23100021$에 매달려 날기" feature="Season2" locale="KR" />
<achieve id="21233007" desc="모험[일반] : "$dungeonTitle:20002001$"에서 $npc:23100100$$pp:가,이$ 일으킨 성난 회오리에 휩쓸려 비석에 {0}번 깔리기" complete="지금까지 모험[일반] : "$dungeonTitle:20002001$"에서 $npc:23100100$$pp:가,이$ 일으킨 성난 회오리에 휩쓸려 비석에 {0}번 깔림" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="21233008" desc="모험[일반] : "$dungeonTitle:20001001$"에서 $npc:23100006$$pp:가,이$ 일으킨 냉기 회오리에 휩쓸려 비석에 {0}번 깔리기" complete="지금까지 모험[일반] : "$dungeonTitle:20001001$"에서 $npc:23100006$$pp:가,이$ 일으킨 냉기 회오리에 휩쓸려 비석에 {0}번 깔림" manualDesc="" manualComplete="" feature="Season3" locale="KR" />
<achieve id="21233009" desc="모험[일반] : "$dungeonTitle:20001001$"에서 $npc:23100006$의 고드름에 맞아 비석에 {0}번 깔리기" complete="지금까지 모험[일반] : "$dungeonTitle:20001001$"에서 $npc:23100006$의 고드름에 맞아 비석에 {0}번 깔림" manualDesc="" manualComplete="" feature="Season3" locale="KR" />
<achieve id="21233010" desc="" complete="" manualDesc="모험[일반] : "$dungeonTitle:20009001$"에서 $npc:23100055$의 전기 공격에 감전 당하기" manualComplete="모험[일반] : "$dungeonTitle:20009001$"에서 $npc:23100055$의 전기 공격에 감전 당하기" feature="Season1" locale="KR" />
<achieve id="21233011" desc="모험[일반] : "$dungeonTitle:20006001$"에서 $npc:23200007$의 회전 레이저 공격을 맞고 비석에 {0}번 깔리기" complete="지금까지 모험[일반] : "$dungeonTitle:20006001$"에서 $npc:23200007$의 회전 레이저 공격을 맞고 비석에 {0}번 깔림" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="21233012" desc="Suffer $npc:23000035$'s maskless attack {0} time(s)" complete="Suffered $npc:23000035$'s maskless attack {0} time(s)" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21233013" desc="Suffer $npc:23000034$'s maskless attack {0} time(s)" complete="Suffered $npc:23000034$'s maskless attack {0} time(s)" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21233014" desc="" complete="" manualDesc="모험[일반] : "$dungeonTitle:20015001$"에서 $npc:23100033$의 얼굴 마법진을 밟아 소인으로 변하기" manualComplete="모험[일반] : "$dungeonTitle:20015001$"에서 $npc:23100033$의 얼굴 마법진을 밟아 소인으로 변하기" feature="Season3" locale="KR" />
<achieve id="21233015" desc="$npc:23100056$의 지뢰 폭발에 당해 {0}번 기절하기" complete="지금까지 $npc:23100056$의 지뢰 폭발에 당해 {0}번 기절" manualDesc="" manualComplete="" feature="Season3" locale="KR" />
<achieve id="21233016" desc="$npc:23100041$의 고속 회전 망치에 한 대도 맞지 않고 {0}번 버티기" complete="지금까지 $npc:23100041$의 고속 회전 망치에 한 대도 맞지 않고 {0}번 버티기" manualDesc="" manualComplete="" feature="Season2" locale="KR" />
<achieve id="21233017" desc="Get tombstoned by $npc:23090005$'s swinging hook {0} time(s) in the hard adventure dungeon $dungeonTitle:20004002$" complete="Got tombstoned by $npc:23090005$'s swinging hook {0} time(s) in the hard adventure dungeon $dungeonTitle:20004002$" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21233018" desc="Get flattened by $npc:23000071$'s palm {0} time(s)" complete="Got flattened by $npc:23000071$'s palm {0} time(s)" manualDesc="" manualComplete="" feature="Zakum01" />
<achieve id="21233019" desc="Receive $npc:23000071$'s death sentence {0} time(s)" complete="Received $npc:23000071$'s death sentence {0} time(s)" manualDesc="" manualComplete="" feature="Zakum01" />
<achieve id="21233021" desc="Get sent flying by $npc:23001001$ {0} time(s)" complete="Got sent flying by $npc:23001001$ {0} time(s)" manualDesc="" manualComplete="" feature="Gigantica01" />
<achieve id="21240001" desc="Collect {0} elite and boss elimination trophies" complete="Collected {0} elite and boss elimination trophies" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21250001" desc="" complete="" manualDesc="8분 안에 모험[일반] : $npc:23000100$ 처치하기" manualComplete="8분 안에 모험[일반] : $npc:23000100$ 처치!" feature="Season1" locale="KR" />
<achieve id="21250002" desc="" complete="" manualDesc="8분 안에 모험[일반] : $npc:23000055$ 처치하기" manualComplete="8분 안에 모험[일반] : $npc:23000055$ 처치!" feature="Season1" locale="KR" />
<achieve id="21250003" desc="" complete="" manualDesc="8분 안에 모험[일반] : $npc:23000007$ 처치하기" manualComplete="8분 안에 모험[일반] : $npc:23000007$ 처치!" feature="Season1" locale="KR" />
<achieve id="21300001" desc="무법자의 언덕에서 다른 캐릭터를 {0}회 쓰러뜨리기" complete="지금까지 무법자의 언덕에서 다른 캐릭터를 {0}회 쓰러뜨림" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="21300001" desc="Defeat {0} player(s) in the Land of Darkness" complete="Defeated {0} player(s) in the Land of Darkness" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300002" desc="무법자의 언덕에서 다른 캐릭터에게 {0}회 쓰러지기" complete="지금까지 무법자의 언덕에서 다른 캐릭터에게 {0}회 쓰러짐" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="21300002" desc="Be defeated by another player {0} time(s) in the Land of Darkness" complete="You were defeated by another player {0} time(s) in the Land of Darkness" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300003" desc="Win {0} time(s) in $map:65000001$" complete="Defeated {0} player(s) at $map:65000001$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300004" desc="Defeat {0} player(s) at $map:65000001$" complete="Defeated {0} player(s) at $map:65000001$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300005" desc="Get defeated by another player {0} time(s) at $map:65000001$" complete="Got defeated by another player {0} time(s) at $map:65000001$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300006" desc="Win {0} time(s) at $map:65000002$" complete="Won {0} time(s) at $map:65000002$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300007" desc="Defeat another character {0} time(s) at $map:65000002$" complete="Defeated {0} other character(s) at $map:65000002$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300008" desc="Get defeated by another player {0} time(s) at $map:65000002$" complete="Got defeated by another player {0} time(s) at $map:65000002$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300009" desc="$map:64000001$에서 상대 길드원을 {0}회 쓰러뜨리기" complete="지금까지 $map:64000001$에서 상대 길드원을 {0}회 쓰러뜨림" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="21300010" desc="$map:64000001$에서 상대 길드원에게 {0}회 쓰러지기" complete="지금까지 $map:64000001$에서 상대 길드원에게 {0}회 쓰러짐" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="21300011" desc="$map:64000001$에서 상대 길드를 물리치고 {0}회 승리하기" complete="지금까지 $map:64000001$에서 상대 길드를 물리치고 {0}회 승리" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="21300012" desc="길드 챔피언십 {0}회 참가하기" complete="지금까지 길드 챔피언십 {0}회 참가" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="21300013" desc="" complete="" manualDesc="길드 챔피언십에서 1위 달성하기 (정기 점검 시 달성)" manualComplete="길드 챔피언십에서 1위 달성" feature="Season1" locale="KR" />
<achieve id="21300014" desc="Participate in Maple Arena or Event PvP {0} time(s)" complete="Participated in Maple Arena or Event PvP {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300015" desc="Win {0} time(s) in $map:65000003$" complete="Won {0} time(s) at $map:65000003$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300016" desc="Defeat an opponent {0} time(s) at $map:65000003$" complete="Defeated an opponent {0} time(s) at $map:65000003$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300017" desc="Get defeated {0} time(s) at $map:65000003$" complete="Got defeated {0} time(s) at $map:65000003$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300018" desc="Win by 50 or fewer points {0} time(s) at $map:65000003$" complete="Won by 50 or fewer points {0} time(s) at $map:65000003$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300019" desc="Win within 5 minutes {0} time(s) at $map:65000003$" complete="Won within 5 minutes at $map:65000003$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300020" desc="Plunder the opponent's treasure {0} time(s) at $map:65000003$" complete="Plundered the opponent's treasure {0} time(s) at $map:65000003$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300021" desc="Travel by seagull for {0} at $map:65000003$" complete="Traveled by seagull for {0} at $map:65000003$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21300022" desc="Win {0} time(s) in Maple Arena" complete="Won {0} time(s) in Maple Arena" manualDesc="" manualComplete="" feature="PvPRankingDuelMode" />
<achieve id="21300023" desc="Lose {0} time(s) in Maple Arena" complete="Lost {0} time(s) in Maple Arena" manualDesc="" manualComplete="" feature="PvPRankingDuelMode" />
<achieve id="21300024" desc="" complete="" manualDesc="Be victorious at $map:65010001$ in Maple Arena" manualComplete="You were victorious at $map:65010001$ in Maple Arena" feature="PvPRankingDuelMode" />
<achieve id="21300025" desc="" complete="" manualDesc="Be victorious at $map:65010002$ in Maple Arena" manualComplete="You were victorious at $map:65010002$ in Maple Arena" feature="PvPRankingDuelMode" />
<achieve id="21300026" desc="" complete="" manualDesc="Be victorious at $map:65010003$ in Maple Arena" manualComplete="You were victorious at $map:65010003$ in Maple Arena" feature="PvPRankingDuelMode" />
<achieve id="21300027" desc="" complete="" manualDesc="Be victorious at $map:65010004$ in Maple Arena" manualComplete="You were victorious at $map:65010004$ in Maple Arena" feature="PvPRankingDuelMode" />
<achieve id="21300028" desc="" complete="" manualDesc="Be victorious at $map:65010005$ in Maple Arena" manualComplete="You were victorious at $map:65010005$ in Maple Arena" feature="PvPRankingDuelMode" />
<achieve id="21300029" desc="" complete="" manualDesc="Be victorious at $map:65010006$ in Maple Arena" manualComplete="You were victorious at $map:65010006$ in Maple Arena" feature="PvPRankingDuelMode" />
<achieve id="21300030" desc="" complete="" manualDesc="Be victorious at $map:65010007$ in Maple Arena" manualComplete="You were victorious at $map:65010007$ in Maple Arena" feature="PvPRankingDuelMode" />
<achieve id="21300031" desc="" complete="" manualDesc="Be victorious at $map:65010008$ in Maple Arena" manualComplete="You were victorious at $map:65010008$ in Maple Arena" feature="PvPRankingDuelMode" />
<achieve id="21300032" desc="" complete="" manualDesc="Be victorious at $map:65010009$ in Maple Arena" manualComplete="You were victorious at $map:65010009$ in Maple Arena" feature="PvPRankingDuelMode" />
<achieve id="21300033" desc="" complete="" manualDesc="Be victorious at $map:65010010$ in Maple Arena" manualComplete="You were victorious at $map:65010010$ in Maple Arena" feature="PvPRankingDuelMode" />
<achieve id="21300034" desc="" complete="" manualDesc="Win every map in Maple Arena " manualComplete="Won every map in Maple Arena " feature="PvPRankingDuelMode" />
<achieve id="21300035" desc="" complete="" manualDesc="Win in Maple Arena rage mode. " manualComplete="Won in Maple Arena rage mode " feature="PvPRankingDuelMode" />
<achieve id="21300036" desc="" complete="" manualDesc="Win in Maple Arena with 100% health " manualComplete="Won in Maple Arena with 100% health " feature="PvPRankingDuelMode" />
<achieve id="21300037" desc="" complete="" manualDesc="Achieve Gold rank in Maple Arena " manualComplete="Achieved Gold rank in Maple Arena " feature="PvPRankingDuelMode" />
<achieve id="21300038" desc="" complete="" manualDesc="Achieve Platinum rank in Maple Arena " manualComplete="Achieved Platinum rank in Maple Arena " feature="PvPRankingDuelMode" />
<achieve id="21300039" desc="" complete="" manualDesc="Achieve Diamond rank in Maple Arena " manualComplete="Achieved Diamond rank in Maple Arena " feature="PvPRankingDuelMode" />
<achieve id="21300040" desc="" complete="" manualDesc="Achieve Champion rank in Maple Arena " manualComplete="Achieved Champion rank in Maple Arena " feature="PvPRankingDuelMode" />
<achieve id="21300041" desc="" complete="" manualDesc="Achieve Grand Champion rank in Maple Arena " manualComplete="Achieved Grand Champion rank in Maple Arena " feature="PvPRankingDuelMode" />
<achieve id="21300042" desc="" complete="" manualDesc="Defeat 10 players in one Mushking Royale match" manualComplete="Defeated 10 players in one match of Mushking Royale" feature="SurvivalContents01" />
<achieve id="21300043" desc="" complete="" manualDesc="Defeat 5 players with Jab in one Mushking Royale match" manualComplete="Defeated 5 players with Jab in one match" feature="SurvivalContents01" />
<achieve id="21300044" desc="" complete="" manualDesc="Win a Mushking Royale without opening a chest" manualComplete="Won a Mushking Royale without opening a chest" feature="SurvivalContents01" />
<achieve id="21300045" desc="" complete="" manualDesc="Win a Mushking Royale without defeating any monsters" manualComplete="Won a Mushking Royale without defeating any monsters" feature="SurvivalContents01" />
<achieve id="21300046" desc="" complete="" manualDesc="Win one match of Mushking Royale using only Fireblast to defeat opponents" manualComplete="Won one match of Mushking Royale using only Fireblast to defeat opponents" feature="SurvivalContents01" />
<achieve id="21300047" desc="" complete="" manualDesc="Win one match of Mushking Royale using only Magic Arrow to defeat opponents" manualComplete="Won one match of Mushking Royale using only Magic Arrow to defeat opponents" feature="SurvivalContents01" />
<achieve id="21300048" desc="" complete="" manualDesc="Win one match of Mushking Royale using only Flame Wave to defeat opponents" manualComplete="Won one match of Mushking Royale using only Flame Wave to defeat opponents" feature="SurvivalContents01" />
<achieve id="21300049" desc="" complete="" manualDesc="Win one match of Mushking Royale using only Arrow Stream to defeat opponents" manualComplete="Won one match of Mushking Royale using only Arrow Stream to defeat opponents" feature="SurvivalContents01" />
<achieve id="21300050" desc="" complete="" manualDesc="Win one match of Mushking Royale using only Lock-on to defeat opponents" manualComplete="Won one match of Mushking Royale using only Lock-on to defeat opponents" feature="SurvivalContents01" />
<achieve id="21300051" desc="" complete="" manualDesc="Win one match of Mushking Royale using only M-Bomb to defeat opponents" manualComplete="Won one match of Mushking Royale using only M-Bomb to defeat opponents" feature="SurvivalContents01" />
<achieve id="21300052" desc="Defeat {0} players in Mushking Royale using Fireblast" complete="Defeated {0} using Fireblast" manualDesc="" manualComplete="" feature="SurvivalContents01" />
<achieve id="21300053" desc="Defeat {0} players in Mushking Royale using Magic Arrow" complete="Defeated {0} using Magic Arrow" manualDesc="" manualComplete="" feature="SurvivalContents01" />
<achieve id="21300054" desc="Defeat {0} players in Mushking Royale using Flame Wave" complete="Defeated {0} using Flame Wave" manualDesc="" manualComplete="" feature="SurvivalContents01" />
<achieve id="21300055" desc="Defeat {0} players in Mushking Royale using Arrow Stream" complete="Defeated {0} using Arrow Stream" manualDesc="" manualComplete="" feature="SurvivalContents01" />
<achieve id="21300056" desc="Defeat {0} players in Mushking Royale using Lock-on" complete="Defeated {0} using Lock-on" manualDesc="" manualComplete="" feature="SurvivalContents01" />
<achieve id="21300057" desc="Defeat {0} players in Mushking Royale using M-Bomb" complete="Defeated {0} using M-Bomb" manualDesc="" manualComplete="" feature="SurvivalContents01" />
<achieve id="21300058" desc="" complete="" manualDesc="Place 5th in Mushking Royale without defeating anyone" manualComplete="Placed 5th in Mushking Royale without defeating anyone" feature="SurvivalContents01" />
<achieve id="21300059" desc="" complete="" manualDesc="Win in Mushking Royale without defeating anyone" manualComplete="Won in Mushking Royale without defeating anyone" feature="SurvivalContents01" />
<achieve id="21300060" desc="" complete="" manualDesc="Destroy 10 breakable objects in one match of Mushking Royale " manualComplete="Destroyed 10 breakable objects in one match of Mushking Royale" feature="SurvivalContents01" />
<achieve id="21300061" desc="" complete="" manualDesc="Defeat 50 monsters in one match of Mushking Royale " manualComplete="Defeated 50 monsters in one match" feature="SurvivalContents01" />
<achieve id="21300062" desc="" complete="" manualDesc="Obtain 50 Herbs in one match of Mushking Royale" manualComplete="Obtained 50 Herbs in one match of Mushking Royale" feature="SurvivalContents01" />
<achieve id="21300063" desc="" complete="" manualDesc="Obtain 30 Energy Drinks in one match of Mushking Royale" manualComplete="Obtained 30 Energy Drinks in one match of Mushking Royale" feature="SurvivalContents01" />
<achieve id="21300064" desc="" complete="" manualDesc="Obtain 50 First Aids in one match of Mushking Royale" manualComplete="Obtained 50 First Aids in one match of Mushking Royale" feature="SurvivalContents01" />
<achieve id="21300065" desc="" complete="" manualDesc="Obtain 100 Fireblasts in one match of Mushking Royale" manualComplete="Obtained 100 Fireblasts in one match of Mushking Royale" feature="SurvivalContents01" />
<achieve id="21300066" desc="" complete="" manualDesc="Obtain 100 Flame Waves in one match of Mushking Royale" manualComplete="Obtained 100 Flame Waves in one match of Mushking Royale" feature="SurvivalContents01" />
<achieve id="21300067" desc="" complete="" manualDesc="Obtain 100 Arrow Streams in one match of Mushking Royale" manualComplete="Obtained 100 Arrow Streams in one match of Mushking Royale" feature="SurvivalContents01" />
<achieve id="21300068" desc="" complete="" manualDesc="Obtain 100 Lock-ons in one match of Mushking Royale" manualComplete="Obtained 100 Lock-ons in one match of Mushking Royale" feature="SurvivalContents01" />
<achieve id="21300069" desc="" complete="" manualDesc="Obtain 100 M-Bombs in one match of Mushking Royale" manualComplete="Obtained 100 M-Bombs in one match of Mushking Royale" feature="SurvivalContents01" />
<achieve id="21300070" desc="" complete="" manualDesc="Defeat a player outside your field of vision in Mushking Royale" manualComplete="Defeated a player outside your field of vision in Mushking Royale" feature="SurvivalContents01" />
<achieve id="21300071" desc="" complete="" manualDesc="Defeat a player using several different skills in Mushking Royale" manualComplete="Defeated another player using several different skills in Mushking Royale" feature="SurvivalContents01" />
<achieve id="21300072" desc="" complete="" manualDesc="Defeat two players simultaneously in Mushking Royale" manualComplete="Defeated two players simultaneously in Mushking Royale" feature="SurvivalContents01" />
<achieve id="21300073" desc="Survive for {0} in Mushking Royale's solo mode" complete="Survived for {0} in Mushking Royale's solo mode" manualDesc="" manualComplete="" feature="SurvivalContents01" />
<achieve id="21300074" desc="Participate in Mushking Royale {0} times" complete="Participated in Mushking Royale {0} times" manualDesc="" manualComplete="" feature="SurvivalContents01" />
<achieve id="21300075" desc="" complete="" manualDesc="Weather the $npcName:23000018$'s attacks" manualComplete="Weathered the $npcName:23000018$'s attacks" feature="Season1" />
<achieve id="21300103" desc="Participate in the $map:61000035$ {0} times" complete="Participated in the $map:61000035$ {0} times" feature="Season1" />
<achieve id="21300104" desc="Defeat another player {0} times in $map:61000035$" complete="Defeated another player {0} times in $map:61000035$" feature="Season1" />
<achieve id="21300105" desc="Defeat $npc:23000400$ {0} time(s)" complete="Defeated $npc:23000400$ {0} time(s)" feature="DungeonOS01" />
<achieve id="21300106" desc='Land the final blow on $npc:23000400$ {0} time(s) in "$dungeonTitle:23100001$"' complete='Landed the final blow on $npc:23000400$ {0} time(s) in "$dungeonTitle:23100001$"' feature="DungeonOS01" />
<achieve id="21300107" desc='Get tombstoned by $npc:23000400$'s "All those left alone will burn" in "$dungeonTitle:23120001$"' complete='Got tombstoned by $npc:23000400$'s "All those left alone will burn" in "$dungeonTitle:23120001$"' feature="DungeonOS01" />
<achieve id="21300108" desc='Get tombstoned by $npc:23000400$'s "All those stuck together will burn" in "$dungeonTitle:23120001$"' complete='Got tombstoned by $npc:23000400$'s "All those stuck together will burn" in "$dungeonTitle:23120001$"' feature="DungeonOS01" />
<achieve id="21300109" desc="Defeat $npc:23000401$ {0} time(s)" complete="Defeated $npc:23000401$ {0} time(s)" feature="DungeonOS01" />
<achieve id="21300110" desc='Land the final blow on $npc:23000401$ {0} time(s) in "$dungeonTitle:23100001$"' complete='Landed the final blow on $npc:23000401$ {0} time(s) in "$dungeonTitle:23100001$"' feature="DungeonOS01" />
<achieve id="21300111" desc="Taste {0} $item:20301436$" complete="Tasted {0} $item:20301436$" feature="DungeonOS01" />
<achieve id="21300112" desc="Obtain {0} items from $map:61000035$" complete="Obtained {0} items from $map:61000035$" feature="Season1" />
<achieve id="21300113" desc='Defeat $npc:44100001$ {0} time(s) in "$dungeonTitle:23120001$"' complete='Defeated $npc:44100001$ {0} time(s) in "$dungeonTitle:23120001$"' feature="DungeonOS04" />
<achieve id="21300114" desc='Land the final blow on $npc:44100001$ {0} time(s) in "$dungeonTitle:23120001$"' complete='Landed the final blow on $npc:44100001$ {0} time(s) in "$dungeonTitle:23120001$"' feature="DungeonOS04" />
<achieve id="21300115" desc='Defeat $npc:44100002$ {0} time(s) in "$dungeonTitle:23120001$"' complete='Defeated $npc:44100002$ {0} time(s) in "$dungeonTitle:23120001$"' feature="DungeonOS04" />
<achieve id="21300116" desc='Get stunned by $npc:44100001$'s vocal exercise {0} time(s) in "$dungeonTitle:23120001$"' complete='Got stunned by $npc:44100001$'s vocal exercise {0} time(s) in "$dungeonTitle:23120001$"' feature="DungeonOS04" />
<achieve id="21300117" desc='Get tombstoned by $npc:44100001$'s aria {0} time(s) in "$dungeonTitle:23120001$"' complete='Got tombstoned by $npc:44100001$'s aria {0} time(s) in "$dungeonTitle:23120001$"' feature="DungeonOS04" />
<achieve id="21400001" desc="Attack with a fire drum {0} time(s)" complete="Attacked with a fire drum {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400002" desc="Attack with a mine cart {0} time(s)" complete="Attacked with a mine cart {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400003" desc="Attack with an oak barrel {0} time(s)" complete="Attacked with an oak barrel {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21400004" desc="Attack with a tire {0} time(s)" complete="Attacked with a tire {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400005" desc="Attack with a trash can {0} time(s)" complete="Attacked with a trash can {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400006" desc="Attack with a gas tank {0} time(s)" complete="Attacked with an gas tank {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400007" desc="Attack with a toxic waste drum {0} time(s)" complete="Attacked with a toxic waste drum {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400008" desc="Attack with a totem {0} time(s)" complete="Attacked with a totem {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400009" desc="Attack with a poison bag {0} time(s)" complete="Attacked with a poisonous bag {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21400010" desc="Attack with a dynamite cart {0} time(s)" complete="Attacked with a dynamite cart {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400011" desc="Attack with a bomb {0} time(s)" complete="Attacked with a bomb {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21400012" desc="Attack with a chicken coop {0} time(s)" complete="Attacked with a chicken coop {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21400013" desc="Attack with an egg {0} time(s)" complete="Attacked with an egg {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21400014" desc="Attack with a bottle crate {0} time(s)" complete="Attacked with a bottle crate {0} time(s)!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21400015" desc="Attack with a torch {0} time(s)" complete="Attacked with a torch {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400016" desc="Attack with a rainbow tree {0} time(s)" complete="Attacked with rainbow tree {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400017" desc="Attack with a ruined rainbow tree {0} time(s)" complete="Attacked with ruined rainbow tree {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400018" desc="Attack with a sign {0} time(s)" complete="Attacked with a sign {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400019" desc="Attack with a stoplight {0} time(s)" complete="Attacked with a stoplight {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400020" desc="Attack with a telephone pole {0} time(s)" complete="Attacked with a telephone pole {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400021" desc="Attack with a totem {0} time(s)" complete="Attacked with a totem {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400022" desc="Attack with a pipe {0} time(s)" complete="Attacked with a pipe {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400023" desc="Attack with a Perion abode {0} time(s)" complete="Attacked with a Perion abode {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400024" desc="Attack with a Kerning bus {0} time(s)" complete="Attacked with a Kerning bus {0} time(s)!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21400025" desc="Attack with a Kerning phone booth {0} time(s)" complete="Attacked with a Kerning phone booth {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="21400026" desc="Attack with a Kerning truck {0} time(s)" complete="Attacked with a Kerning truck {0} time(s)!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21400027" desc="Attack with an igloo {0} time(s)" complete="Attacked with an igloo {0} time(s)!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21400028" desc="Attack with a shower stall {0} time(s)" complete="Attacked with a shower stall {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21400029" desc="Attack with a toilet {0} time(s)" complete="Attacked with a bathroom {0} time(s)!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="21400030" desc="Perform an EMP bomb attack {0} time(s)" complete="Performed an EMP bomb attack {0} time(s)!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21400031" desc="Perform a wind-up bomb attack {0} time(s)" complete="Performed a wind-up bomb attack {0} time(s)!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="21400032" desc="Attack with a fire jar {0} time(s)" complete="Attacked with a fire jar {0} time(s)!" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21400033" desc="Attack with a bundle of thorns {0} time(s)" complete="Attacked with a bundle of thorns {0} time(s)!" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21400034" desc="Attack with a streetlight {0} time(s)" complete="Attacked with a streetlight {0} time(s)!" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21400035" desc="Attack with snake statues {0} time(s)" complete="Attacked with snakes {0} time(s)!" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21400036" desc="Attack with tents {0} time(s)" complete="Attacked with tents {0} time(s)!" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="21400037" desc="Attack with a leaf {0} time(s)" complete="Attacked with a leaf {0} time(s)!" manualDesc="" manualComplete="" feature="Kritias_2018_12" />
<achieve id="21400038" desc="Attack with a wind-up hammer {0} time(s)" complete="Attacked with a wind-up hammer {0} time(s)!" manualDesc="" manualComplete="" feature="Kritias_2018_12" />
<achieve id="21400039" desc="Attack with a jar of fruit {0} time(s)" complete="Attacked with a jar of fruit {0} time(s)!" manualDesc="" manualComplete="" feature="Kritias_2018_12" />
<achieve id="21400040" desc="Attack with a Kritias plant {0} time(s)" complete="Attacked with a Kritias plant {0} time(s)!" manualDesc="" manualComplete="" feature="Kritias02" />
<achieve id="21400041" desc="Attack with an aetherine cart {0} time(s)" complete="Attacked with an aetherine cart {0} time(s)!" manualDesc="" manualComplete="" feature="Kritias02" />
<achieve id="21400042" desc="Attack with a time bomb {0} time(s)" complete="Attacked with a time bomb {0} time(s)!" manualDesc="" manualComplete="" feature="Kritias02" />
<achieve id="21400043" desc="Attack with an aetherine lamp post {0} time(s)" complete="Attacked with an aetherine lamp post {0} time(s)!" manualDesc="" manualComplete="" feature="Kritias02" />
<achieve id="22100001" desc="Run {0}" complete="Ran {0}" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22100002" desc="Swim {0}" complete="Swam {0}" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22100003" desc="Wall-climb {0}" complete="Wall-climbed {0}" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22100004" desc="Crawl {0}" complete="Crawled {0}" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22100005" desc="Fall {0}" complete="Fell {0}" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22100006" desc="Hang on a ladder for {0}" complete="Hang on a ladder for {0}" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22100007" desc="Hang on a rope for {0}" complete="Hang on a rope for {0}" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22100008" desc="Ride a ground mount {0}" complete="Rode a ground mount {0}" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22100009" desc="Fly {0}" complete="Flew {0}" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22100010" desc="Discover {0} taxi stop(s)" complete="Discovered {0} taxi stop(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22100011" desc="Travel {0} time(s) by taxi" complete="Traveled {0} time(s) by taxi" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22100012" desc="Jump {0} time(s)" complete="Jumped {0} time(s) " manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22100013" desc="Ride a ground mount {0} in $map:02000001$" complete="Rode a ground mount {0} in $map:02000001$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22100014" desc="" complete="" manualDesc="Warm up before an adventure" manualComplete="Warmed up before an adventure" feature="Season1" />
<achieve id="22200001" desc="" complete="" manualDesc="Discover $map:02000062$" manualComplete="Discovered $map:02000062$!" feature="Season1" />
<achieve id="22200002" desc="Explore {0} Victoria Island maps" complete="Explored {0} Victoria Island maps" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200003" desc="Uncover {0} hidden binoculars set(s)" complete="Uncovered {0} hidden binoculars set(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200004" desc="Visit the Pocket Realm through the Hat of Misdirection {0} time(s)" complete="Visited the Pocket Realm through the Hat of Misdirection {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200005" desc="Visit $map:80000001$ through the Hat of Misdirection {0} time(s)" complete="Visited $map:80000001$ through the Hat of Misdirection {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200007" desc="Visit $map:80000004$ through the Hat of Misdirection {0} time(s)" complete="Visited $map:80000004$ through the Hat of Misdirection {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200008" desc="Visit $map:80000006$ through the Hat of Misdirection {0} time(s)" complete="Visited $map:80000006$ through the Hat of Misdirection {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200009" desc="Visit $map:80000007$ through the Hat of Misdirection {0} time(s)" complete="Visited $map:80000007$ through the Hat of Misdirection {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200010" desc="Visit $map:80000008$ through the Hat of Misdirection {0} time(s)" complete="Visited $map:80000008$ through the Hat of Misdirection {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200011" desc="Visit $map:80000010$ through the Hat of Misdirection {0} time(s)" complete="Visited $map:80000010$ through the Hat of Misdirection {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200012" desc="Open a wooden treasure chest {0} time(s)" complete="Opened a wooden treasure chest {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200013" desc="Open {0} new golden treasure chest(s) scattered around the world" complete="Opened {0} new golden treasure chest(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200014" desc="Open Turka's cache {0} time(s)" complete="Opened Turka's cache {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200015" desc="Open Turka's rare cache {0} time(s)" complete="Opened Turka's rare cache {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200016" desc="" complete="" manualDesc="Visit $map:02000202$" manualComplete="Visited $map:02000202$!" feature="Season1" />
<achieve id="22200017" desc="" complete="" manualDesc="Visit $map:02000124$" manualComplete="Visited $map:02000124$!" feature="Season1" />
<achieve id="22200018" desc="Light the streetlight in $map:02000138$ {0} time(s)" complete="Lit the streetlight in $map:02000138$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200019" desc="$item:30000181$ {0}개를 $map:02000001$에 있는 $npcName:11000327$에게 전달하기" complete="지금까지 $item:30000181$ {0}개를 $npcName:11000327$에게 전달" manualDesc="" manualComplete="" feature="Season1" locale="KR" />
<achieve id="22200020" desc="" complete="" manualDesc="Obtain $item:13200028$" manualComplete="Obtained $item:13200028$" feature="Season3" />
<achieve id="22200021" desc="" complete="" manualDesc="Obtain $item:11300119$" manualComplete="Obtained $item:11300119$" feature="Season2" />
<achieve id="22200022" desc="" complete="" manualDesc="Obtain $item:30000069$" manualComplete="Obtained $item:30000069$" feature="Season1" />
<achieve id="22200023" desc="" complete="" manualDesc="Discover $map:02000234$ through the secret entrance" manualComplete="Discovered $map:02000234$ through the secret entrance!" feature="Season1" />
<achieve id="22200024" desc="" complete="" manualDesc="Enter $map:02000025$" manualComplete="Entered $map:02000025$!" feature="Season1" />
<achieve id="22200025" desc="" complete="" manualDesc="Discover $map:02000179$" manualComplete="Discovered $map:02000179$!" feature="Season2" />
<achieve id="22200026" desc="" complete="" manualDesc="Visit $map:02000220$" manualComplete="Visited $map:02000220$!" feature="Season2" />
<achieve id="22200027" desc="" complete="" manualDesc="Descend to $map:02000249$ through the secret entrance" manualComplete="Descended to $map:02000249$ through the secret entrance!" feature="Season1" />
<achieve id="22200028" desc="" complete="" manualDesc="Complete the normal adventure dungeon $dungeonTitle:21005001$" manualComplete="Completed the normal adventure dungeon $dungeonTitle:21005001$" feature="Season1" />
<achieve id="22200029" desc="" complete="" manualDesc="Complete the normal adventure dungeon $dungeonTitle:21006001$" manualComplete="Completed the normal adventure dungeon $dungeonTitle:21006001$" feature="Season1" />
<achieve id="22200030" desc="" complete="" manualDesc="Discover the Land of Darkness" manualComplete="Discovered the Land of Darkness!" feature="Season1" />
<achieve id="22200031" desc="" complete="" manualDesc="Obtain 4 types of useful items drifting down the toxic stream" manualComplete="Obtained each type of useful item!" feature="Season1" />
<achieve id="22200032" desc="" complete="" manualDesc="Obtain the 4 storybooks related to $npc:11000492$" manualComplete="Obtained all the storybooks related to $npc:11000492$!" feature="Season1" />
<achieve id="22200033" desc="Receive a dungeon rewards {0} time(s)" complete="Received a dungeon reward {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200034" desc="" complete="" manualDesc="Discover $map:02000001$" manualComplete="Discovered $map:02000001$!" feature="Season1" />
<achieve id="22200035" desc="" complete="" manualDesc="Discover $map:02000100$" manualComplete="Discovered $map:02000100$!" feature="Season1" />
<achieve id="22200036" desc="" complete="" manualDesc="Discover $map:02000076$" manualComplete="Discovered $map:02000076$!" feature="Season1" />
<achieve id="22200037" desc="" complete="" manualDesc="Discover $map:02000023$" manualComplete="Discovered $map:02000023$!" feature="Season1" />
<achieve id="22200038" desc="" complete="" manualDesc="Discover $map:02000051$" manualComplete="Discovered $map:02000051$!" feature="Season1" />
<achieve id="22200039" desc="" complete="" manualDesc="Discover a city on Victoria Island!" manualComplete="Discovered all the cities on Victoria Island!" feature="Season1" />
<achieve id="22200040" desc="Complete the normal adventure dungeon $dungeonTitle:21007001$ {0} time(s)" complete="Completed the normal adventure dungeon $dungeonTitle:21007001$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200041" desc="Complete the normal adventure dungeon $dungeonTitle:21004001$ {0} time(s)" complete="Completed the normal adventure dungeon $dungeonTitle:21004001$ {0} time(s)" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="22200042" desc="Complete the normal adventure dungeon $dungeonTitle:21003001$ {0} time(s)" complete="Completed the normal adventure dungeon $dungeonTitle:21003001$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200043" desc="Complete the normal adventure dungeon $dungeonTitle:21002001$ {0} time(s)" complete="Completed the normal adventure dungeon $dungeonTitle:21002001$ {0} time(s)" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="22200044" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000004$" manualComplete="Opened all the golden treasure chests in $map:02000004$!" feature="Season1" />
<achieve id="22200045" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000006$" manualComplete="Opened all the golden treasure chests in $map:02000006$!" feature="Season1" />
<achieve id="22200046" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000010$" manualComplete="Opened all the golden treasure chests in $map:02000010$!" feature="Season1" />
<achieve id="22200047" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000014$" manualComplete="Opened all the golden treasure chests in $map:02000014$!" feature="Season1" />
<achieve id="22200048" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000017$" manualComplete="Opened all the golden treasure chests in $map:02000017$!" feature="Season1" />
<achieve id="22200049" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000024$" manualComplete="Opened all the golden treasure chests in $map:02000024$!" feature="Season1" />
<achieve id="22200050" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000039$" manualComplete="Opened all the golden treasure chests in $map:02000039$!" feature="Season1" />
<achieve id="22200051" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000041$" manualComplete="Opened all the golden treasure chests in $map:02000041$!" feature="Season1" />
<achieve id="22200052" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000043$" manualComplete="Opened all the golden treasure chests in $map:02000043$!" feature="Season1" />
<achieve id="22200053" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000045$" manualComplete="Opened all the golden treasure chests in $map:02000045$!" feature="Season1" />
<achieve id="22200054" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000046$" manualComplete="Opened all the golden treasure chests in $map:02000046$!" feature="Season1" />
<achieve id="22200055" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000047$" manualComplete="Opened all the golden treasure chests in $map:02000047$!" feature="Season1" />
<achieve id="22200056" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000048$" manualComplete="Opened all the golden treasure chests in $map:02000048$!" feature="Season1" />
<achieve id="22200057" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000052$" manualComplete="Opened all the golden treasure chests in $map:02000052$!" feature="Season1" />
<achieve id="22200058" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000054$" manualComplete="Opened all the golden treasure chests in $map:02000054$!" feature="Season1" />
<achieve id="22200059" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000056$" manualComplete="Opened all the golden treasure chests in $map:02000056$!" feature="Season1" />
<achieve id="22200060" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000059$" manualComplete="Opened all the golden treasure chests in $map:02000059$!" feature="Season1" />
<achieve id="22200061" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000060$" manualComplete="Opened all the golden treasure chests in $map:02000060$!" feature="Season1" />
<achieve id="22200062" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:52000037$" manualComplete="Opened all the golden treasure chests in $map:52000037$!" feature="Season1" />
<achieve id="22200063" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000082$" manualComplete="Opened all the golden treasure chests in $map:02000082$!" feature="Season1" />
<achieve id="22200064" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000083$" manualComplete="Opened all the golden treasure chests in $map:02000083$!" feature="Season1" />
<achieve id="22200065" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000084$" manualComplete="Opened all the golden treasure chests in $map:02000084$!" feature="Season1" />
<achieve id="22200066" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000085$" manualComplete="Opened all the golden treasure chests in $map:02000085$!" feature="Season1" />
<achieve id="22200067" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000086$" manualComplete="Opened all the golden treasure chests in $map:02000086$!" feature="Season1" />
<achieve id="22200068" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000087$" manualComplete="Opened all the golden treasure chests in $map:02000087$!" feature="Season1" />
<achieve id="22200069" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000088$" manualComplete="Opened all the golden treasure chests in $map:02000088$!" feature="Season1" />
<achieve id="22200070" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000089$" manualComplete="Opened all the golden treasure chests in $map:02000089$!" feature="Season1" />
<achieve id="22200071" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000092$" manualComplete="Opened all the golden treasure chests in $map:02000092$!" feature="Season1" />
<achieve id="22200072" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000110$" manualComplete="Opened all the golden treasure chests in $map:02000110$!" feature="Season1" />
<achieve id="22200073" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000111$" manualComplete="Opened all the golden treasure chests in $map:02000111$!" feature="Season1" />
<achieve id="22200074" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000114$" manualComplete="Opened all the golden treasure chests in $map:02000114$!" feature="Season1" />
<achieve id="22200075" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000115$" manualComplete="Opened all the golden treasure chests in $map:02000115$!" feature="Season1" />
<achieve id="22200076" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000116$" manualComplete="Opened all the golden treasure chests in $map:02000116$!" feature="Season1" />
<achieve id="22200077" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000117$" manualComplete="Opened all the golden treasure chests in $map:02000117$!" feature="Season1" />
<achieve id="22200078" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000118$" manualComplete="Opened all the golden treasure chests in $map:02000118$!" feature="Season1" />
<achieve id="22200079" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000134$" manualComplete="Opened all the golden treasure chests in $map:02000134$!" feature="Season1" />
<achieve id="22200080" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000135$" manualComplete="Opened all the golden treasure chests in $map:02000135$!" feature="Season1" />
<achieve id="22200081" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000136$" manualComplete="Opened all the golden treasure chests in $map:02000136$!" feature="Season1" />
<achieve id="22200082" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000137$" manualComplete="Opened all the golden treasure chests in $map:02000137$!" feature="Season1" />
<achieve id="22200083" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000138$" manualComplete="Opened all the golden treasure chests in $map:02000138$!" feature="Season1" />
<achieve id="22200084" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000139$" manualComplete="Opened all the golden treasure chests in $map:02000139$!" feature="Season1" />
<achieve id="22200085" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000141$" manualComplete="Opened all the golden treasure chests in $map:02000141$!" feature="Season1" />
<achieve id="22200086" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000145$" manualComplete="Opened all the golden treasure chests in $map:02000145$!" feature="Season1" />
<achieve id="22200087" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000146$" manualComplete="Opened all the golden treasure chests in $map:02000146$!" feature="Season1" />
<achieve id="22200088" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000147$" manualComplete="Opened all the golden treasure chests in $map:02000147$!" feature="Season1" />
<achieve id="22200089" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000148$" manualComplete="Opened all the golden treasure chests in $map:02000148$!" feature="Season1" />
<achieve id="22200090" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000149$" manualComplete="Opened all the golden treasure chests in $map:02000149$!" feature="Season1" />
<achieve id="22200091" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000267$" manualComplete="Opened all the golden treasure chests in $map:02000267$!" feature="Season1" />
<achieve id="22200092" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000014$" manualComplete="Opened all the golden treasure chests in $map:03000014$!" feature="Season1" />
<achieve id="22200093" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000092$" manualComplete="Opened all the golden treasure chests in $map:03000092$!" feature="Season1" />
<achieve id="22200094" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000134$" manualComplete="Opened all the golden treasure chests in $map:03000134$!" feature="Season1" />
<achieve id="22200095" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000135$" manualComplete="Opened all the golden treasure chests in $map:03000135$!" feature="Season1" />
<achieve id="22200096" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000136$" manualComplete="Opened all the golden treasure chests in $map:03000136$!" feature="Season1" />
<achieve id="22200097" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000137$" manualComplete="Opened all the golden treasure chests in $map:03000137$!" feature="Season1" />
<achieve id="22200098" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000145$" manualComplete="Opened all the golden treasure chests in $map:03000145$!" feature="Season1" />
<achieve id="22200099" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000146$" manualComplete="Opened all the golden treasure chests in $map:03000146$!" feature="Season1" />
<achieve id="22200100" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000003$" manualComplete="Opened all the golden treasure chests in $map:02000003$!" feature="Season2" />
<achieve id="22200101" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000007$" manualComplete="Opened all the golden treasure chests in $map:02000007$!" feature="Season2" />
<achieve id="22200102" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000008$" manualComplete="Opened all the golden treasure chests in $map:02000008$!" feature="Season2" />
<achieve id="22200103" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000009$" manualComplete="Opened all the golden treasure chests in $map:02000009$!" feature="Season2" />
<achieve id="22200104" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000013$" manualComplete="Opened all the golden treasure chests in $map:02000013$!" feature="Season2" />
<achieve id="22200105" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000015$" manualComplete="Opened all the golden treasure chests in $map:02000015$!" feature="Season2" />
<achieve id="22200106" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000019$" manualComplete="Opened all the golden treasure chests in $map:02000019$!" feature="Season2" />
<achieve id="22200107" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000021$" manualComplete="Opened all the golden treasure chests in $map:02000021$!" feature="Season2" />
<achieve id="22200108" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000022$" manualComplete="Opened all the golden treasure chests in $map:02000022$!" feature="Season2" />
<achieve id="22200109" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000038$" manualComplete="Opened all the golden treasure chests in $map:02000038$!" feature="Season2" />
<achieve id="22200110" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000042$" manualComplete="Opened all the golden treasure chests in $map:02000042$!" feature="Season2" />
<achieve id="22200111" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000053$" manualComplete="Opened all the golden treasure chests in $map:02000053$!" feature="Season2" />
<achieve id="22200112" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000057$" manualComplete="Opened all the golden treasure chests in $map:02000057$!" feature="Season2" />
<achieve id="22200113" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000058$" manualComplete="Opened all the golden treasure chests in $map:02000058$!" feature="Season2" />
<achieve id="22200114" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000063$" manualComplete="Opened all the golden treasure chests in $map:02000063$!" feature="Season2" />
<achieve id="22200115" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000067$" manualComplete="Opened all the golden treasure chests in $map:02000067$!" feature="Season2" />
<achieve id="22200116" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000090$" manualComplete="Opened all the golden treasure chests in $map:02000090$!" feature="Season2" />
<achieve id="22200117" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000091$" manualComplete="Opened all the golden treasure chests in $map:02000091$!" feature="Season2" />
<achieve id="22200118" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000095$" manualComplete="Opened all the golden treasure chests in $map:02000095$!" feature="Season2" />
<achieve id="22200119" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000096$" manualComplete="Opened all the golden treasure chests in $map:02000096$!" feature="Season2" />
<achieve id="22200120" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000103$" manualComplete="Opened all the golden treasure chests in $map:02000103$!" feature="Season2" />
<achieve id="22200121" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000112$" manualComplete="Opened all the golden treasure chests in $map:02000112$!" feature="Season2" />
<achieve id="22200122" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000113$" manualComplete="Opened all the golden treasure chests in $map:02000113$!" feature="Season2" />
<achieve id="22200123" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000128$" manualComplete="Opened all the golden treasure chests in $map:02000128$!" feature="Season2" />
<achieve id="22200124" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000130$" manualComplete="Opened all the golden treasure chests in $map:02000130$!" feature="Season2" />
<achieve id="22200125" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000131$" manualComplete="Opened all the golden treasure chests in $map:02000131$!" feature="Season2" />
<achieve id="22200126" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000132$" manualComplete="Opened all the golden treasure chests in $map:02000132$!" feature="Season2" />
<achieve id="22200127" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000142$" manualComplete="Opened all the golden treasure chests in $map:02000142$!" feature="Season2" />
<achieve id="22200128" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000172$" manualComplete="Opened all the golden treasure chests in $map:02000172$!" feature="Season2" />
<achieve id="22200129" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000173$" manualComplete="Opened all the golden treasure chests in $map:02000173$!" feature="Season2" />
<achieve id="22200130" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000174$" manualComplete="Opened all the golden treasure chests in $map:02000174$!" feature="Season2" />
<achieve id="22200131" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000179$" manualComplete="Opened all the golden treasure chests in $map:02000179$!" feature="Season2" />
<achieve id="22200132" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000180$" manualComplete="Opened all the golden treasure chests in $map:02000180$!" feature="Season2" />
<achieve id="22200133" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000181$" manualComplete="Opened all the golden treasure chests in $map:02000181$!" feature="Season2" />
<achieve id="22200134" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000182$" manualComplete="Opened all the golden treasure chests in $map:02000182$!" feature="Season2" />
<achieve id="22200135" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000183$" manualComplete="Opened all the golden treasure chests in $map:02000183$!" feature="Season2" />
<achieve id="22200136" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000185$" manualComplete="Opened all the golden treasure chests in $map:02000185$!" feature="Season2" />
<achieve id="22200137" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000186$" manualComplete="Opened all the golden treasure chests in $map:02000186$!" feature="Season2" />
<achieve id="22200138" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000214$" manualComplete="Opened all the golden treasure chests in $map:02000214$!" feature="Season2" />
<achieve id="22200139" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000215$" manualComplete="Opened all the golden treasure chests in $map:02000215$!" feature="Season2" />
<achieve id="22200140" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000278$" manualComplete="Opened all the golden treasure chests in $map:02000278$!" feature="Season2" />
<achieve id="22200141" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000003$" manualComplete="Opened all the golden treasure chests in $map:03000003$!" feature="Season2" />
<achieve id="22200142" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000017$" manualComplete="Opened all the golden treasure chests in $map:03000017$!" feature="Season2" />
<achieve id="22200143" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000022$" manualComplete="Opened all the golden treasure chests in $map:03000022$!" feature="Season2" />
<achieve id="22200144" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000043$" manualComplete="Opened all the golden treasure chests in $map:03000043$!" feature="Season2" />
<achieve id="22200145" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000054$" manualComplete="Opened all the golden treasure chests in $map:03000054$!" feature="Season2" />
<achieve id="22200146" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000057$" manualComplete="Opened all the golden treasure chests in $map:03000057$!" feature="Season2" />
<achieve id="22200147" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000058$" manualComplete="Opened all the golden treasure chests in $map:03000058$!" feature="Season2" />
<achieve id="22200148" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000059$" manualComplete="Opened all the golden treasure chests in $map:03000059$!" feature="Season2" />
<achieve id="22200149" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000064$" manualComplete="Opened all the golden treasure chests in $map:03000064$!" feature="Season2" />
<achieve id="22200150" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000076$" manualComplete="Opened all the golden treasure chests in $map:03000076$!" feature="Season2" />
<achieve id="22200152" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000083$" manualComplete="Opened all the golden treasure chests in $map:03000083$!" feature="Season2" />
<achieve id="22200153" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000084$" manualComplete="Opened all the golden treasure chests in $map:03000084$!" feature="Season2" />
<achieve id="22200154" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000085$" manualComplete="Opened all the golden treasure chests in $map:03000085$!" feature="Season2" />
<achieve id="22200155" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000086$" manualComplete="Opened all the golden treasure chests in $map:03000086$!" feature="Season2" />
<achieve id="22200156" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000104$" manualComplete="Opened all the golden treasure chests in $map:03000104$!" feature="Season2" />
<achieve id="22200157" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000110$" manualComplete="Opened all the golden treasure chests in $map:03000110$!" feature="Season2" />
<achieve id="22200158" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000111$" manualComplete="Opened all the golden treasure chests in $map:03000111$!" feature="Season2" />
<achieve id="22200159" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000130$" manualComplete="Opened all the golden treasure chests in $map:03000130$!" feature="Season2" />
<achieve id="22200160" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000143$" manualComplete="Opened all the golden treasure chests in $map:03000143$!" feature="Season2" />
<achieve id="22200161" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000203$" manualComplete="Opened all the golden treasure chests in $map:03000203$!" feature="Season2" />
<achieve id="22200162" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000049$" manualComplete="Opened all the golden treasure chests in $map:02000049$!" feature="Season3" />
<achieve id="22200163" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000162$" manualComplete="Opened all the golden treasure chests in $map:02000162$!" feature="Season3" />
<achieve id="22200164" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000163$" manualComplete="Opened all the golden treasure chests in $map:02000163$!" feature="Season3" />
<achieve id="22200165" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000169$" manualComplete="Opened all the golden treasure chests in $map:02000169$!" feature="Season3" />
<achieve id="22200166" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000170$" manualComplete="Opened all the golden treasure chests in $map:02000170$!" feature="Season3" />
<achieve id="22200167" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000171$" manualComplete="Opened all the golden treasure chests in $map:02000171$!" feature="Season3" />
<achieve id="22200168" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000184$" manualComplete="Opened all the golden treasure chests in $map:02000184$!" feature="Season3" />
<achieve id="22200169" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000187$" manualComplete="Opened all the golden treasure chests in $map:02000187$!" feature="Season3" />
<achieve id="22200170" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000192$" manualComplete="Opened all the golden treasure chests in $map:02000192$!" feature="Season3" />
<achieve id="22200171" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000235$" manualComplete="Opened all the golden treasure chests in $map:02000235$!" feature="Season3" />
<achieve id="22200172" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000262$" manualComplete="Opened all the golden treasure chests in $map:02000262$!" feature="Season3" />
<achieve id="22200173" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000263$" manualComplete="Opened all the golden treasure chests in $map:02000263$!" feature="Season3" />
<achieve id="22200174" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000268$" manualComplete="Opened all the golden treasure chests in $map:02000268$!" feature="Season3" />
<achieve id="22200175" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000006$" manualComplete="Opened all the golden treasure chests in $map:03000006$!" feature="Season3" />
<achieve id="22200176" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000007$" manualComplete="Opened all the golden treasure chests in $map:03000007$!" feature="Season3" />
<achieve id="22200177" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000039$" manualComplete="Opened all the golden treasure chests in $map:03000039$!" feature="Season3" />
<achieve id="22200178" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000045$" manualComplete="Opened all the golden treasure chests in $map:03000045$!" feature="Season3" />
<achieve id="22200179" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000056$" manualComplete="Opened all the golden treasure chests in $map:03000056$!" feature="Season3" />
<achieve id="22200180" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000089$" manualComplete="Opened all the golden treasure chests in $map:03000089$!" feature="Season3" />
<achieve id="22200181" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000101$" manualComplete="Opened all the golden treasure chests in $map:03000101$!" feature="Season3" />
<achieve id="22200184" desc="" complete="" manualDesc="Discover $map:52000037$" manualComplete="Discovered $map:52000037$!" feature="Season1" />
<achieve id="22200185" desc="Explore {0} Land of Darkness and Twisted Pocket Realm maps" complete="Explored {0} Land of Darkness and Twisted Pocket Realm maps" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200186" desc="Complete the normal adventure dungeon $dungeonTitle:21001001$ {0} time(s)" complete="Completed the normal adventure dungeon $dungeonTitle:21001001$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200187" desc="Remove the thorny vines and save {0} boroboro in $map:02000290$" complete="Removed the thorny vines and saved {0} boroboro in $map:02000290$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200188" desc="Restore {0} gate(s) in $map:02000066$" complete="Restored {0} gate(s) in $map:02000066$" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="22200189" desc="Heal {0} wounded soldier(s) in $map:02000066$" complete="Healed {0} wounded soldier(s) in $map:02000066$" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="22200190" desc="" complete="" manualDesc="Defeat $npcName:22090011$ in $map:02000066$" manualComplete="Defeated $npc:22090011$ in $map:02000066$" feature="Season2" />
<achieve id="22200191" desc="Defeat $npc:24000304$ {0} time(s) in $map:02000253$" complete="Defeated $npc:24000304$ {0} time(s) in $map:02000253$" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="22200192" desc="Open a door or clear debris {0} time(s) in the normal adventure dungeon $dungeonTitle:21004001$" complete="Open a door or clear debris {0} time(s) in the normal adventure dungeon $dungeonTitle:21004001$" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="22200193" desc="" complete="" manualDesc="Stun $npc:11000861$ in $map:02000254$" manualComplete="Stun $npc:11000861$ in $map:02000254$" feature="Season2" />
<achieve id="22200194" desc="Eliminate $npc:24000702$ {0} time(s) in the normal adventure dungeon $map:052000002$" complete="Eliminated $npc:24000702$ {0} time(s) in the normal adventure dungeon $map:052000002$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200195" desc="Return {0} sheep hidden in the bushes in the normal adventure dungeon $map:052000002$" complete="Returned {0} sheep hidden in the bushes in the normal adventure dungeon $map:052000002$" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200196" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000018$" manualComplete="Opened all the golden treasure chests in $map:02000018$!" feature="Season3" />
<achieve id="22200197" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000133$" manualComplete="Opened all the golden treasure chests in $map:02000133$!" feature="Season3" />
<achieve id="22200198" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000236$" manualComplete="Opened all the golden treasure chests in $map:02000236$!" feature="Season3" />
<achieve id="22200199" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000175$" manualComplete="Opened all the golden treasure chests in $map:02000175$!" feature="Season3" />
<achieve id="22200200" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000256$" manualComplete="Opened all the golden treasure chests in $map:02000256$!" feature="Season3" />
<achieve id="22200201" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000176$" manualComplete="Opened all the golden treasure chests in $map:02000176$!" feature="Season3" />
<achieve id="22200202" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000097$" manualComplete="Opened all the golden treasure chests in $map:02000097$!" feature="Season3" />
<achieve id="22200203" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000231$" manualComplete="Opened all the golden treasure chests in $map:02000231$!" feature="Season3" />
<achieve id="22200204" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000257$" manualComplete="Opened all the golden treasure chests in $map:02000257$!" feature="Season3" />
<achieve id="22200205" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000260$" manualComplete="Opened all the golden treasure chests in $map:02000260$!" feature="Season3" />
<achieve id="22200206" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000265$" manualComplete="Opened all the golden treasure chests in $map:02000265$!" feature="Season3" />
<achieve id="22200207" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000273$" manualComplete="Opened all the golden treasure chests in $map:02000273$!" feature="Season3" />
<achieve id="22200208" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000279$" manualComplete="Opened all the golden treasure chests in $map:02000279$!" feature="Season3" />
<achieve id="22200209" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000165$" manualComplete="Opened all the golden treasure chests in $map:03000165$!" feature="Season3" />
<achieve id="22200210" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000024$" manualComplete="Opened all the golden treasure chests in $map:03000024$!" feature="Season3" />
<achieve id="22200211" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000009$" manualComplete="Opened all the golden treasure chests in $map:03000009$!" feature="Season3" />
<achieve id="22200212" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000004$" manualComplete="Opened all the golden treasure chests in $map:03000004$!" feature="Season3" />
<achieve id="22200213" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000087$" manualComplete="Opened all the golden treasure chests in $map:03000087$!" feature="Season3" />
<achieve id="22200214" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000093$" manualComplete="Opened all the golden treasure chests in $map:02000093$!" feature="Season3" />
<achieve id="22200215" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000277$" manualComplete="Opened all the golden treasure chests in $map:02000277$!" feature="Season3" />
<achieve id="22200216" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000117$" manualComplete="Opened all the golden treasure chests in $map:03000117$!" feature="Season3" />
<achieve id="22200217" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000115$" manualComplete="Opened all the golden treasure chests in $map:03000115$!" feature="Season3" />
<achieve id="22200218" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000118$" manualComplete="Opened all the golden treasure chests in $map:03000118$!" feature="Season3" />
<achieve id="22200219" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000062$" manualComplete="Opened all the golden treasure chests in $map:03000062$!" feature="Season3" />
<achieve id="22200220" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000002$" manualComplete="Opened all the golden treasure chests in $map:03000002$!" feature="Season3" />
<achieve id="22200221" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000013$" manualComplete="Opened all the golden treasure chests in $map:03000013$!" feature="Season3" />
<achieve id="22200222" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000015$" manualComplete="Opened all the golden treasure chests in $map:03000015$!" feature="Season3" />
<achieve id="22200223" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000036$" manualComplete="Opened all the golden treasure chests in $map:03000036$!" feature="Season3" />
<achieve id="22200224" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000308$" manualComplete="Opened all the golden treasure chests in $map:02000308$!" feature="Season3" />
<achieve id="22200225" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000021$" manualComplete="Opened all the golden treasure chests in $map:03000021$!" feature="Season3" />
<achieve id="22200226" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000114$" manualComplete="Opened all the golden treasure chests in $map:03000114$!" feature="Season3" />
<achieve id="22200227" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000147$" manualComplete="Opened all the golden treasure chests in $map:03000147$!" feature="Season3" />
<achieve id="22200228" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000088$" manualComplete="Opened all the golden treasure chests in $map:03000088$!" feature="Season3" />
<achieve id="22200229" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000091$" manualComplete="Opened all the golden treasure chests in $map:03000091$!" feature="Season3" />
<achieve id="22200230" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000185$" manualComplete="Opened all the golden treasure chests in $map:03000185$!" feature="Season3" />
<achieve id="22200231" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000258$" manualComplete="Opened all the golden treasure chests in $map:02000258$!" feature="Season3" />
<achieve id="22200232" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000255$" manualComplete="Opened all the golden treasure chests in $map:02000255$!" feature="Season3" />
<achieve id="22200233" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000266$" manualComplete="Opened all the golden treasure chests in $map:02000266$!" feature="Season3" />
<achieve id="22200234" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000275$" manualComplete="Opened all the golden treasure chests in $map:02000275$!" feature="Season3" />
<achieve id="22200235" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000269$" manualComplete="Opened all the golden treasure chests in $map:02000269$!" feature="Season3" />
<achieve id="22200236" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000094$" manualComplete="Opened all the golden treasure chests in $map:02000094$!" feature="Season3" />
<achieve id="22200237" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000044$" manualComplete="Opened all the golden treasure chests in $map:02000044$!" feature="Season3" />
<achieve id="22200238" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000259$" manualComplete="Opened all the golden treasure chests in $map:02000259$!" feature="Season3" />
<achieve id="22200239" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000274$" manualComplete="Opened all the golden treasure chests in $map:02000274$!" feature="Season3" />
<achieve id="22200240" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000276$" manualComplete="Opened all the golden treasure chests in $map:02000276$!" feature="Season3" />
<achieve id="22200241" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000264$" manualComplete="Opened all the golden treasure chests in $map:02000264$!" feature="Season3" />
<achieve id="22200242" desc="Stabilize the alpha system {0} time(s) in $map:02000309$" complete="Stabilized the alpha system {0} time(s) in $map:02000309$" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="22200243" desc="Stabilize the beta system {0} time(s) in $map:02000309$" complete="Stabilized the beta system {0} time(s) in $map:02000309$" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="22200244" desc="Stabilize the delta system {0} time(s) in $map:02000309$" complete="Stabilized the delta system {0} time(s) in $map:02000309$" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="22200245" desc="Visit a time travel destination in the normal adventure dungeon $dungeonTitle:21008001$ {0} time(s)" complete="Visited a time travel destination in the normal adventure dungeon $dungeonTitle:21008001$ {0} time(s)" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="22200246" desc="Fix $npcName:11000146$'s time machine {0} time(s) in the normal adventure dungeon $dungeonTitle:21008001$" complete="Fixed $npcName:11000146$'s time machine {0} time(s) in the normal adventure dungeon $dungeonTitle:21008001$" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="22200247" desc="Rescue {0} slaves in the normal adventure dungeon $dungeonTitle:21009001$" complete="Rescued {0} slaves in the normal adventure dungeon $dungeonTitle:21009001$" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="22200248" desc="Complete the normal adventure dungeon $dungeonTitle:21017001$ {0} time(s)" complete="Completed the normal adventure dungeon $dungeonTitle:21017001$ {0} time(s)" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="22200249" desc="Open the glass door in normal adventure dungeon $dungeonTitle:21017001$ {0} time(s)" complete="Opened the glass door in normal adventure dungeon $dungeonTitle:21017001$ {0} time(s)" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="22200250" desc="Destroy {0} spirit orbs in the normal adventure dungeon $dungeonTitle:21017001$" complete="Destroyed {0} spirit orbs in the normal adventure dungeon $dungeonTitle:21017001$" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="22200251" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000261$" manualComplete="Opened all the golden treasure chests in $map:02000261$!" feature="Season3" />
<achieve id="22200252" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000040$" manualComplete="Opened all the golden treasure chests in $map:02000040$!" feature="Season3" />
<achieve id="22200253" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000011$" manualComplete="Opened all the golden treasure chests in $map:02000011$!" feature="Season3" />
<achieve id="22200254" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000061$" manualComplete="Opened all the golden treasure chests in $map:02000061$!" feature="Season3" />
<achieve id="22200255" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000280$" manualComplete="Opened all the golden treasure chests in $map:02000280$!" feature="Season3" />
<achieve id="22200256" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000046$" manualComplete="Opened all the golden treasure chests in $map:03000046$!" feature="Season3" />
<achieve id="22200257" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000038$" manualComplete="Opened all the golden treasure chests in $map:03000038$!" feature="Season3" />
<achieve id="22200258" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000129$" manualComplete="Opened all the golden treasure chests in $map:02000129$!" feature="Season3" />
<achieve id="22200265" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000060$" manualComplete="Opened all the golden treasure chests in $map:03000060$!" feature="Season3" />
<achieve id="22200268" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000090$" manualComplete="Opened all the golden treasure chests in $map:03000090$!" feature="Season3" />
<achieve id="22200270" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:03000103$" manualComplete="Opened all the golden treasure chests in $map:03000103$!" feature="Season3" />
<achieve id="22200301" desc="Defeat $npc:24001101$ and $npc:24001102$ {0} time(s) in the normal adventure dungeon $dungeonTitle:25001001$" complete="Defeated $npc:24001101$ and $npc:24001102$ {0} time(s) in the normal adventure dungeon $dungeonTitle:25001001$!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200302" desc="Purify the normal adventure dungeon $dungeonTitle:25001001$ {0} time(s)" complete="Purified the normal adventure dungeon $dungeonTitle:25001001$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200303" desc="Defeat the spirit of rage in the normal adventure dungeon $dungeonTitle:25000001$ {0} time(s)" complete="Defeated the spirit of rage in the normal adventure dungeon $dungeonTitle:25000001$ {0} time(s)!" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="22200304" desc="Complete the normal adventure dungeon $dungeonTitle:25000001$ {0} time(s)" complete="Completed the normal adventure dungeon $dungeonTitle:25000001$ {0} time(s)" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="22200305" desc="Throw bombs {0} time(s) in the normal adventure dungeon $dungeonTitle:25003001$" complete="Threw bombs {0} time(s) in the normal adventure dungeon $dungeonTitle:25003001$" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="22200306" desc="Launch missiles {0} time(s) in the normal adventure dungeon $dungeonTitle:25003001$" complete="Launched missiles {0} time(s) in the normal adventure dungeon $dungeonTitle:25003001$" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="22200307" desc="Defeat $npc:24001205$ {0} time(s) in the normal adventure dungeon $dungeonTitle:25003001$" complete="Defeated $npc:24001205$ {0} time(s) in the normal adventure dungeon $dungeonTitle:25003001$!" manualDesc="" manualComplete="" feature="Season2" />
<achieve id="22200308" desc="Keep all the children in the normal adventure dungeon $dungeonTitle:25004001$ safe {0} time(s)" complete="Kept all the children in the normal adventure dungeon $dungeonTitle:25004001$ safe {0} time(s)!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200309" desc="Defeat $npc:24001406$ {0} time(s) in the normal adventure dungeon $dungeonTitle:25004001$" complete="Defeated $npc:24001406$ {0} time(s) in the normal adventure dungeon $dungeonTitle:25004001$!" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200310" desc="Survive round 1 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 1 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200311" desc="Survive round 2 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 2 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200312" desc="Survive round 3 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 3 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200313" desc="Survive round 4 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 4 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200314" desc="Survive round 5 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 5 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200315" desc="Survive round 6 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 6 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200316" desc="Survive round 7 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 7 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200317" desc="Survive round 8 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 8 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200318" desc="Survive round 9 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 9 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200319" desc="Survive round 10 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 10 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200320" desc="Survive round 11 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 11 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200321" desc="Survive round 12 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 12 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200322" desc="Survive round 13 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 13 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200323" desc="Survive round 14 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 14 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200324" desc="Survive round 15 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 15 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200325" desc="Survive round 16 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 16 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200326" desc="Survive round 17 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 17 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200327" desc="Survive round 18 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 18 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200328" desc="Survive round 19 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 19 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200329" desc="Survive round 20 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 20 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200330" desc="Survive round 21 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 21 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200331" desc="Survive round 22 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 22 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200332" desc="Survive round 23 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 23 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200333" desc="Survive round 24 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 24 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200334" desc="Survive round 25 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 25 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200335" desc="Survive round 26 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 26 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200336" desc="Survive round 27 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 27 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200337" desc="Survive round 28 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 28 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200338" desc="Survive round 29 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 29 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200339" desc="Survive round 30 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)" complete="Survived round 30 in the normal adventure dungeon $dungeonTitle:25008001$ {0} time(s)!" manualDesc="" manualComplete="" feature="TimeAttackDungeon" />
<achieve id="22200341" desc="Rescue {0} captured fairies in the normal adventure dungeon $dungeonTitle:21013001$" complete="Rescued {0} captured fairies in the normal adventure dungeon $dungeonTitle:21013001$!" manualDesc="" manualComplete="" feature="KatvanDungeon" />
<achieve id="22200342" desc="Become poisoned by monster havi {0} time(s)" complete="Became poisoned by monster havi {0} time(s)" manualDesc="" manualComplete="" feature="KatvanDungeon" />
<achieve id="22200343" desc="Defeat a monster {0} time(s) while suffering from havi poison" complete="Defeated a monster {0} time(s) while suffering from havi poison" manualDesc="" manualComplete="" feature="KatvanDungeon" />
<achieve id="22200344" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010047$" manualComplete="Opened all the golden treasure chests in $map:02010047$!" feature="KarkarIsland" />
<achieve id="22200345" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010033$" manualComplete="Opened all the golden treasure chests in $map:02010033$!" feature="KarkarIsland" />
<achieve id="22200346" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010084$" manualComplete="Opened all the golden treasure chests in $map:02010084$!" feature="KarkarIsland" />
<achieve id="22200347" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010030$" manualComplete="Opened all the golden treasure chests in $map:02010030$!" feature="KarkarIsland" />
<achieve id="22200348" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010036$" manualComplete="Opened all the golden treasure chests in $map:02010036$!" feature="KarkarIsland" />
<achieve id="22200349" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010034$" manualComplete="Opened all the golden treasure chests in $map:02010034$!" feature="KarkarIsland" />
<achieve id="22200350" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010029$" manualComplete="Opened all the golden treasure chests in $map:02010029$!" feature="KarkarIsland" />
<achieve id="22200351" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010016$" manualComplete="Opened all the golden treasure chests in $map:02010016$!" feature="KarkarIsland" />
<achieve id="22200352" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010023$" manualComplete="Opened all the golden treasure chests in $map:02010023$!" feature="KarkarIsland" />
<achieve id="22200353" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010009$" manualComplete="Opened all the golden treasure chests in $map:02010009$!" feature="KarkarIsland" />
<achieve id="22200354" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010010$" manualComplete="Opened all the golden treasure chests in $map:02010010$!" feature="KarkarIsland" />
<achieve id="22200355" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010012$" manualComplete="Opened all the golden treasure chests in $map:02010012$!" feature="KarkarIsland" />
<achieve id="22200356" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010014$" manualComplete="Opened all the golden treasure chests in $map:02010014$!" feature="KarkarIsland" />
<achieve id="22200357" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010027$" manualComplete="Opened all the golden treasure chests in $map:02010027$!" feature="KarkarIsland" />
<achieve id="22200358" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010043$" manualComplete="Opened all the golden treasure chests in $map:02010043$!" feature="KarkarIsland" />
<achieve id="22200359" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010038$" manualComplete="Opened all the golden treasure chests in $map:02010038$!" feature="KarkarIsland" />
<achieve id="22200360" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010039$" manualComplete="Opened all the golden treasure chests in $map:02010039$!" feature="KarkarIsland" />
<achieve id="22200361" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010019$" manualComplete="Opened all the golden treasure chests in $map:02010019$!" feature="KarkarIsland" />
<achieve id="22200362" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010020$" manualComplete="Opened all the golden treasure chests in $map:02010020$!" feature="KarkarIsland" />
<achieve id="22200363" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010022$" manualComplete="Opened all the golden treasure chests in $map:02010022$!" feature="KarkarIsland" />
<achieve id="22200364" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010028$" manualComplete="Opened all the golden treasure chests in $map:02010028$!" feature="KarkarIsland" />
<achieve id="22200365" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02010026$" manualComplete="Opened all the golden treasure chests in $map:02010026$!" feature="KarkarIsland" />
<achieve id="22200366" desc="Complete the normal adventure dungeon $dungeonTitle:21014001$ {0} time(s)" complete="Completed the normal adventure dungeon $dungeonTitle:21014001$ {0} time(s)" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="22200367" desc="Complete the normal adventure dungeon $dungeonTitle:25009001$ {0} time(s)" complete="Completed the normal adventure dungeon $dungeonTitle:25009001$ {0} time(s)" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="22200368" desc="Complete the normal adventure dungeon $dungeonTitle:20017001$ {0} time(s)" complete="Completed the normal adventure dungeon $dungeonTitle:20017001$ {0} time(s)" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="22200369" desc="Complete the normal adventure dungeon $dungeonTitle:21010001$ {0} time(s)" complete="Completed the normal adventure dungeon $dungeonTitle:21010001$ {0} time(s)" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="22200370" desc="Conquer the bridge in the normal adventure dungeon $dungeonTitle:21010001$ {0} time(s)" complete="Conquered the bridge in the normal adventure dungeon $dungeonTitle:21010001$ {0} time(s)" manualDesc="" manualComplete="" feature="Season3" />
<achieve id="22200371" desc="Visit $map:80000012$ through the Pocket Vortex {0} time(s)" complete="Visited $map:80000012$ through the Pocket Vortex {0} time(s)" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="22200372" desc="Visit $map:80000013$ through the Pocket Vortex {0} time(s)" complete="Visited $map:80000013$ through the Pocket Vortex {0} time(s)" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="22200373" desc="Explore {0} Karkar Island maps" complete="Explored {0} Karkar Island maps" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="22200374" desc="Defeat $npc:24002202$ {0} time(s) in the normal adventure dungeon $dungeonTitle:21018001$" complete="Defeated $npc:24002202$ {0} time(s) in the normal adventure dungeon $dungeonTitle:21018001$!" manualDesc="" manualComplete="" feature="KatvanDungeon" />
<achieve id="22200375" desc="Be imprisoned in water {0} time(s) in the normal adventure dungeon $dungeonTitle:20017001$" complete="Imprisoned in water {0} time(s) in the normal adventure dungeon $dungeonTitle:20017001$" manualDesc="" manualComplete="" feature="KarkarIsland" />
<achieve id="22200376" desc="" complete="" manualDesc="Complete the quest "$quest:40002540$"" manualComplete="Completed the quest "$quest:40002540$"" feature="KarkarIsland" />
<achieve id="22200377" desc="Thaw the frozen victim in $map:02000085$ {0} time(s)" complete="Thawed the frozen victim in $map:02000085$ {0} time(s)" manualDesc="" manualComplete="" feature="Season1" />
<achieve id="22200378" desc="" complete="" manualDesc="Open all the golden treasure chests in $map:02000377$" manualComplete="Opened all the golden treasure chests in $map:02000377$!" feature="Fishing" />
<achieve id="22200379" desc="" complete="" manualDesc="Clear round 1 on solo mode in $map:03100000$" manualComplete="Cleared round 1 on solo mode in $map:03100000$" feature="ShadowExpedition" />
<achieve id="22200380" desc="" complete="" manualDesc="Clear round 2 on solo mode in $map:03100000$" manualComplete="Cleared round 2 on solo mode in $map:03100000$" feature="ShadowExpedition" />
<achieve id="22200381" desc="" complete="" manualDesc="Clear round 3 on solo mode in $map:03100000$" manualComplete="Cleared round 3 on solo mode in $map:03100000$" feature="ShadowExpedition" />
<achieve id="22200382" desc="" complete="" manualDesc="Clear round 4 on solo mode in $map:03100000$" manualComplete="Cleared round 4 on solo mode in $map:03100000$" feature="ShadowExpedition" />
<achieve id="22200383" desc="" complete="" manualDesc="Clear round 5 on solo mode in $map:03100000$" manualComplete="Cleared round 5 on solo mode in $map:03100000$" feature="ShadowExpedition" />
<achieve id="22200384" desc="" complete="" manualDesc="Clear round 6 on solo mode in $map:03100000$" manualComplete="Cleared round 6 on solo mode in $map:03100000$" feature="ShadowExpedition" />
<achieve id="22200385" desc="" complete="" manualDesc="Clear round 7 on solo mode in $map:03100000$" manualComplete="Cleared round 7 on solo mode in $map:03100000$" feature="ShadowExpedition" />
<achieve id="22200386" desc="" complete="" manualDesc="Clear round 8 on solo mode in $map:03100000$" manualComplete="Cleared round 8 on solo mode in $map:03100000$" feature="ShadowExpedition" />
<achieve id="22200387" desc="" complete="" manualDesc="Clear round 9 on solo mode in $map:03100000$" manualComplete="Cleared round 9 on solo mode in $map:03100000$" feature="ShadowExpedition" />
<achieve id="22200388" desc="" complete="" manualDesc="Clear round 10 on solo mode in $map:03100000$" manualComplete="Cleared round 10 on solo mode in $map:03100000$" feature="ShadowExpedition" />
<achieve id="22200389" desc="" complete="" manualDesc="Clear round 11 on solo mode in $map:03100000$" manualComplete="Cleared round 11 on solo mode in $map:03100000$" feature="ShadowExpedition" />
<achieve id="22200390" desc="" complete="" manualDesc="Clear round 12 on solo mode in $map:03100000$" manualComplete="Cleared round 12 on solo mode in $map:03100000$" feature="ShadowExpedition" />
<achieve id="22200391" desc="" complete="" manualDesc="Clear round 13 on solo mode in $map:03100000$" manualComplete="Cleared round 13 on solo mode in $map:03100000$" feature="ShadowExpedition" />
<achieve id="22200392" desc="" complete="" manualDesc="Clear round 14 on solo mode in $map:03100000$" manualComplete="Cleared round 14 on solo mode in $map:03100000$" feature="ShadowExpedition" />
<achieve id="22200393" desc="" complete="" manualDesc="Clear round 15 on solo mode in $map:03100000$" manualComplete="Cleared round 15 on solo mode in $map:03100000$" feature="ShadowExpedition" />
<achieve id="22200394" desc="Clear $map:03100000$ {0} time(s)" complete="Conquered the dungeon location $map:03100000$ {0} time(s)" manualDesc="" manualComplete="" feature="ShadowExpedition" />
<achieve id="22200395" desc="" complete="" manualDesc="Clear round 16 on solo mode in $map:03100000$" manualComplete="Cleared round 16 on solo mode in $map:03100000$" feature="ShadowExpedition2nd" />
<achieve id="22200396" desc="" complete="" manualDesc="Clear round 17 on solo mode in $map:03100000$" manualComplete="Cleared round 17 on solo mode in $map:03100000$" feature="ShadowExpedition2nd" />
<achieve id="22200397" desc="" complete="" manualDesc="Clear round 18 on solo mode in $map:03100000$" manualComplete="Cleared round 18 on solo mode in $map:03100000$" feature="ShadowExpedition2nd" />
<achieve id="22200398" desc="" complete="" manualDesc="Clear round 19 on solo mode in $map:03100000$" manualComplete="Cleared round 19 on solo mode in $map:03100000$" feature="ShadowExpedition2nd" />
<achieve id="22200399" desc="" complete="" manualDesc="Clear round 20 on solo mode in $map:03100000$" manualComplete="Cleared round 20 on solo mode in $map:03100000$" feature="ShadowExpedition2nd" />
<achieve id="22200400" desc="Open the way to $map:02000378$ {0} time(s) by talking to the lone spirit in $map:02000376$" complete="Open the way to $map:02000378$ {0} time(s) by talking to the lone spirit in $map:02000376$" manualDesc="" manualComplete="" feature="ShrineOfGuidance" />
<achieve id="22200401" desc="" complete="" manualDesc="Rescue residents in the normal adventure dungeon $dungeonTitle:21009001$" manualComplete="Rescued residents in the normal adventure dungeon $dungeonTitle:21009001$" feature="Season3" />
<achieve id="22200402" desc="Complete {0} exploration goal(s)" complete="Completed {0} exploration goal(s)" manualDesc="" manualComplete="" />
<achieve id="22200403" desc="Obtain {0} random dungeon bonus(es)" complete="Obtained {0} random dungeon bonus(es)" manualDesc="" manualComplete="" />
<achieve id="22200404" desc="" complete="" manualDesc="Reach $dungeonTitle:21025001$ through the normal adventure location $map:02000399$" manualComplete="Reach $dungeonTitle:21025001$ through the normal adventure location $map:02000399$" feature="DarkCastle" />
<achieve id="22200405" desc="" complete="" manualDesc="Reach $dungeonTitle:21025001$ through the normal adventure location $map:02000398$" manualComplete="Reach $dungeonTitle:21025001$ through the normal adventure location $map:02000398$" feature="DarkCastle" />
<achieve id="22200406" desc="" complete="" manualDesc="Reach $dungeonTitle:21025001$ through the normal adventure location $map:02000397$" manualComplete="Reached $dungeonTitle:21025001$ through the normal adventure location $map:02000397$" feature="DarkCastle" />
<achieve id="22200407" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000411$" manualComplete="Opened all the golden treasure chests in $map:02000411$!" feature="BattleField56to60" />
<achieve id="22200408" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000414$" manualComplete="Opened all the golden treasure chests in $map:02000414$!" feature="BattleField56to60" />
<achieve id="22200409" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000412$" manualComplete="Opened all the golden treasure chests in $map:02000412$!" feature="BattleField56to60" />
<achieve id="22200410" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000413$" manualComplete="Opened all the golden treasure chests in $map:02000413$!" feature="BattleField56to60" />
<achieve id="22200411" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000415$" manualComplete="Opened all the golden treasure chests in $map:02000415$!" feature="BattleField56to60" />
<achieve id="22200412" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000418$" manualComplete="Opened all the golden treasure chests in $map:02000418$!" feature="BattleField61to65" />
<achieve id="22200413" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000416$" manualComplete="Opened all the golden treasure chests in $map:02000416$!" feature="BattleField61to65" />
<achieve id="22200414" desc="" complete="" manualDesc="Open all the golden treasure chests scattered throughout $map:02000417$" manualComplete="Opened all the golden treasure chests in $map:02000417$!" feature="BattleField61to65" />
<achieve id="22200415" desc="" complete="" manualDesc="Complete "$map:02100001$"" manualComplete=""$map:02100001$" Complete" feature="GuildRaid01" />
<achieve id="22200416" desc="" complete="" manualDesc="Complete "$map:02100002$"" manualComplete=""$map:02100002$" Complete" feature="GuildRaid01" />
<achieve id="22200417" desc="" complete="" manualDesc="Complete "$map:02100004$"" manualComplete=""$map:02100004$" Complete" feature="GuildRaid01" />
<achieve id="22200418" desc="" complete="" manualDesc="Complete "$map:02100000$"" manualComplete=""$map:02100000$" Complete" feature="GuildRaid01" />
<achieve id="22200419" desc="" complete="" manualDesc="Complete "$map:02100009$"" manualComplete=""$map:02100009$" Complete" feature="GuildRaid01" />
<achieve id="22200420" desc="Knock out "$npcName:34000001$ and $npcName:34000002$" {0} times" complete="Knocked out "$npcName:34000001$ and $npcName:34000002$" {0} times!" manualDesc="" manualComplete="" feature="GuildRaid01" />
<achieve id="22200421" desc="Travel {0} by climbing walls in "$map:02100000$"!" complete="You traveled {0} by climbing walls in "$map:02100000$"!" manualDesc="" manualComplete="" feature="GuildRaid01" />
<achieve id="22200422" desc="Use "$item:20000647$" item {0} times" complete="Used "$item:20000647$" item {0} times!" manualDesc="" manualComplete="" feature="GuildRaid01" />
<achieve id="22200423" desc="Complete "$map:02100009$" {0} times" complete="Completed "$map:02100009$" {0} times!" manualDesc="" manualComplete="" feature="GuildRaid01" />
<achieve id="22200424" desc="Fill jar full of energy {0} times in "$map:02100001$"" complete="Filled jar full of energy {0} times in "$map:02100001$"" manualDesc="" manualComplete="" feature="GuildRaid01" />
<achieve id="22200425" desc="" complete="" manualDesc="Make $npcName:34000105$ and $npcName:34000106$ dance at "$map:02100001$"" manualComplete="Made $npcName:34000105$ and $npcName:34000106$ dance at "$map:02100001$"" feature="GuildRaid01" />
<achieve id="22200426" desc="Transform into a dragon at "$map:02100001$" and acquire "Seasoned Blazing Courage" {0} times" complete="Transformed into a dragon at "$map:02100001$" and acquired "Seasoned Blazing Courage" {0} times" manualDesc="" manualComplete="" feature="GuildRaid01" />
<achieve id="22200427" desc="Defeat $npcName:34000121$ {0} times in "$map:02100002$" " complete="Defeated $npcName:34000121$ {0} times in "$map:02100002$"" manualDesc="" manualComplete="" feature="GuildRaid01" />
<achieve id="22200428" desc="Output a result of "$map:02100002$" {0} times" complete="Outputted a result of "$map:02100002$" {0} times" manualDesc="" manualComplete="" feature="GuildRaid01" />