-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathkorflash.xml
3660 lines (3660 loc) · 376 KB
/
korflash.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>
<key id="$s_common_text_restrict" value="0-9 a-z A-Z" />
<key id="$s_common_confirm" value="OK" />
<key id="$s_common_cancel" value="Cancel" />
<key id="$s_common_save" value="Save" />
<key id="$s_common_close" value="Close" />
<key id="$s_common_exit" value="Exit" />
<key id="$s_common_yes" value="Yes" />
<key id="$s_common_no" value="No" />
<key id="$s_common_day" value="d" />
<key id="$s_common_hour" value="hr" />
<key id="$s_common_min" value="min" />
<key id="$s_common_sec" value="sec" />
<key id="$s_common_day_param" value="{0} d" />
<key id="$s_common_hour_param" value="{0}" />
<key id="$s_common_hour_duration_param" value="{0} hr" />
<key id="$s_common_min_param" value="{0} min" />
<key id="$s_common_sec_param" value="{0} sec" />
<key id="$s_common_level" value="Lv. {0}" />
<key id="$s_common_step" value="Rank {0}" />
<key id="$s_common_receive" value="Get" />
<key id="$s_common_input_search_default" value="Enter search terms" />
<key id="$s_common_fh" value="Face Equipment" />
<key id="$s_common_ey" value="Eyewear" />
<key id="$s_common_ea" value="Earrings" />
<key id="$s_common_cp" value="Headgear" />
<key id="$s_common_cl" value="Top" />
<key id="$s_common_pa" value="Bottom" />
<key id="$s_common_gl" value="Gloves" />
<key id="$s_common_sh" value="Shoes" />
<key id="$s_common_mt" value="Cape" />
<key id="$s_common_pd" value="Necklace" />
<key id="$s_common_ri" value="Ring" />
<key id="$s_common_be" value="Belt" />
<key id="$s_common_clpa" value="Full Body Outfit" />
<key id="$s_common_rh" value="Main Hand" />
<key id="$s_common_lh" value="Off-hand" />
<key id="$s_common_rhlh" value="Two-handed" />
<key id="$s_common_consume" value="Consume" />
<key id="$s_common_etc" value="Misc" />
<key id="$s_common_mission" value="Mission" />
<key id="$s_common_skill" value="Skill" />
<key id="$s_common_install" value="Furnishing" />
<key id="$s_common_exp" value="Experience" />
<key id="$s_common_web_guide" value="Guide" />
<key id="$s_common_web_guide_help" value="Guide" />
<key id="$s_common_web_guide_collection" value="Album" />
<key id="$s_common_web_guide_gallery" value="Exhibit" />
<key id="$s_common_web_guide_ranking" value="Ranking" />
<key id="$s_common_prob_info" value="Probability Info" />
<key id="$s_common_normal" value="Normal" />
<key id="$s_common_rare" value="Rare" />
<key id="$s_common_elite" value="Exceptional" />
<key id="$s_common_excellent" value="Epic" />
<key id="$s_common_legendary" value="Legendary" />
<key id="$s_common_artifact" value="Ascendant" />
<key id="$s_common_copyright" value="Copyright. NEXON Korea Corporation. All Right Reserved." locale="KR" />
<key id="$s_common_copyright" value="Copyright. NEXON Korea Corporation. All Right Reserved." locale="JP" />
<key id="$s_cursor_talk" value="Chat" />
<key id="$s_saletag_new" value="NEW" />
<key id="$s_saletag_sale" value="SALE" />
<key id="$s_saletag_event" value="EVENT" />
<key id="$s_saletag_hot" value="HOT" />
<key id="$s_saletag_special" value="SPECIAL" />
<key id="$s_saletag_category_sale" value="SALE" />
<key id="$s_talkpanelsetting_title" value="Chat Tab Options" />
<key id="$s_talkpanelsetting_initialize" value="Reset" />
<key id="$s_talkpanelsetting_apply" value="Apply" />
<key id="$s_talkpanelsetting_ok" value="Close" />
<key id="$s_talkpanelsetting_default" value="Basic Settings" />
<key id="$s_talkpanelsetting_message" value="Message Settings" />
<key id="$s_talkpanelsetting_tab" value="Tab Name" />
<key id="$s_talkpanelsetting_damage" value="Tab Notification" />
<key id="$s_talkpanelsetting_fontsize" value="Font Size" />
<key id="$s_talkpanelsetting_transparent" value="Transparency" />
<key id="$s_talkpanelsetting_show" value="Show" />
<key id="$s_talkpanelsetting_hide" value="Hide" />
<key id="$s_talkpanelsetting_entire" value="Apply to All" />
<key id="$s_talkpanelsetting_talk" value="Chat Messages" />
<key id="$s_talkpanelsetting_super" value="Super" />
<key id="$s_talkpanelsetting_world" value="World" />
<key id="$s_talkpanelsetting_channel" value="Channel" />
<key id="$s_talkpanelsetting_social" value="Local" />
<key id="$s_talkpanelsetting_party" value="Party" />
<key id="$s_talkpanelsetting_guild" value="Guild" />
<key id="$s_talkpanelsetting_whisper" value="Whisper" />
<key id="$s_talkpanelsetting_guild_megaphone" value="Guild Alert" />
<key id="$s_talkpanelsetting_club" value="Club" />
<key id="$s_talkpanelsetting_partyInvite" value="Party Invites" />
<key id="$s_talkpanelsetting_dungeonHelp" value="Dungeon Helper" feature="FindDungeonHelp" />
<key id="$s_talkpanelsetting_require" value="Gains & Usage Messages" />
<key id="$s_talkpanelsetting_meso" value="Mesos Gained / Spent" />
<key id="$s_talkpanelsetting_merat" value="Merets Gained" />
<key id="$s_talkpanelsetting_exp" value="Experience Earned" />
<key id="$s_talkpanelsetting_item" value="Items Gained" />
<key id="$s_talkpanelsetting_token" value="Other Currencies Gained" />
<key id="$s_talkpanelsetting_auth" value="Obtain purchase and use rights" />
<key id="$s_talkpanelsetting_notify" value="Character/Community Notifications" />
<key id="$s_talkpanelsetting_user" value="Character Notifications" />
<key id="$s_talkpanelsetting_community" value="Community Notifications" />
<key id="$s_talkpanelsetting_request" value="Trade Notifications" />
<key id="$s_talkpanelsetting_notice_friend" value="Friend Notifications" />
<key id="$s_talkpanelsetting_notice_guild" value="Guild Notifications" />
<key id="$s_talkpanelsetting_notice_party" value="Party Notifications" />
<key id="$s_talkpanelsetting_notice_club" value="Club Notifications" />
<key id="$s_talkpanelsetting_notice_mentoring" value="Mentor Notifications" />
<key id="$s_talkpanelsetting_notice_etc" value="Other Notifications" />
<key id="$s_talkpanelsetting_system" value="System Notifications" />
<key id="$s_talkpanelsetting_systemevent" value="Event Notifications" />
<key id="$s_talkpanelsetting_systemnotify" value="System Notifications" />
<key id="$s_talkpanelsetting_tooltip_entire" value="Check Apply to All to apply transparency and font settings to all chat tabs." />
<key id="$messenger_tab_setting" value="Tab Settings" />
<key id="$messenger_tab_delete" value="Delete Tab" />
<key id="$messenger_tab_name_entire" value="Main" />
<key id="$messenger_tab_name_item" value="Combat" />
<key id="$s_inventory_title" value="Inventory" />
<key id="$s_inventory_tab_equip" value="Gear" />
<key id="$s_inventory_tab_skill" value="Skill" />
<key id="$s_inventory_tab_life" value="Fishing/Music" />
<key id="$s_inventory_tab_misc" value="Misc" />
<key id="$s_inventory_tab_summon" value="Mounts" />
<key id="$s_inventory_tab_skin" value="Outfits" />
<key id="$s_inventory_tab_gem" value="Gemstones" />
<key id="$s_inventory_tab_quest" value="Quest" />
<key id="$s_inventory_tab_material" value="Catalysts" />
<key id="$s_inventory_tab_mastery" value="Life Skills" feature="BagRenewal01" />
<key id="$s_inventory_tab_pet" value="Pets" feature="BagRenewal01" />
<key id="$s_inventory_tab_activeskill" value="Consumables" feature="BagRenewal01" />
<key id="$s_inventory_tab_coin" value="Currency" />
<key id="$s_inventory_tab_badge" value="Badges" />
<key id="$s_inventory_tab_survival" value="Mushking" feature="SurvivalContents01" />
<key id="$s_inventory_tab_lapenshard" value="Lapenshards" feature="Lapenshard01" />
<key id="$s_inventory_tab_piece" value="Fragments" feature="InventoryPieceTab" />
<key id="$s_inventory_meso_drop" value="Discard Mesos" />
<key id="$s_inventory_range" value="Sort" />
<key id="$s_inventory_item_option" value="Auto-loot" />
<key id="$s_inventory_remake_item_option" value="Equipment Settings" />
<key id="$s_inventory_item_break" value="Dismantle" />
<key id="$s_inventory_item_lock" value="Lock" />
<key id="$s_inventory_item_merge" value="Empowerment" />
<key id="$s_inventory_open_bank" value="Bank Safe" />
<key id="$s_inventory_item_socket_and_gemstone" value="Sockets / Gemstones" />
<key id="$s_inventory_slot_count" value="Slots In Use / Total Slots" />
<key id="$s_inventory_item_enchant" value="Enchant Items" />
<key id="$s_inventory_item_enchant_transform" value="Transfer Enchant" feature="EnchantTransform01" />
<key id="$s_inventory_unlimited_enchant" value="Limit Break" feature="UnlimitedEnchant" />
<key id="$s_inventory_item_remakeoption" value="Change Attributes" />
<key id="$s_inventory_slot_expand" value="Expand Current Tab" />
<key id="$s_inventory_search" value="Enter search terms" />
<key id="$s_inventory_item_break_tooltip" value="<FONT color='#FFD200' size='15' >Dismantle Items</FONT>\n<FONT size='3'> </FONT>\nGain useful materials by using a portable dismantler.\n• Lv. 20+ Gear -> Onyx Crystals, Chaos Onyx Crystals" />
<key id="$s_inventory_item_break_disable_tooltip" value="<FONT color='#FFD200' size='15' >Dismantle</FONT>\n<FONT size='3'> </FONT>\nOpens the portable dismantler." />
<key id="$s_inventory_item_enchant_tooltip" value="<FONT color='#FFD200' size='15' >Enchant Items</FONT>\n<FONT size='3'> </FONT>\nEnchant tops, bottoms, suits, or weapons that are level 20 or higher. Summons enchantment masters Ophelia or Peachy." />
<key id="$s_inventory_item_enchant_disable_tooltip" value="<FONT color='#FFD200' size='15' >Enchant Items</FONT>\n<FONT size='3'> </FONT>\nEnchant tops, bottoms, suits, or weapons that are level 20 or higher." />
<key id="$s_inventory_item_enchant_transform_tooltip" value="<FONT color='#FFD200' size='15' >Transfer Enchantment</FONT>\n<FONT size='3'> </FONT>\nConverts enchanted gear into an enchant scroll. Calls forth Elliana Shuabritze." feature="EnchantTransform01" />
<key id="$s_inventory_item_enchant_transform_disable_tooltip" value="<FONT color='#FFD200' size='15' >Transfer Enchantment</FONT>\n<FONT size='3'> </FONT>\nConverts enchanted gear into an enchant scroll." feature="EnchantTransform01" />
<key id="$s_inventory_unlimited_enchant_tooltip" value="<FONT color='#FFD200' size='15' >Limit Break</FONT>\n<FONT size='3'> </FONT>\nUnleash the hidden power in an equipment\nTransition to equipment that breaks through the limits.\nSummons Lanemone." feature="UnlimitedEnchant" />
<key id="$s_inventory_unlimited_enchant_disable_tooltip" value="<FONT color='#FFD200' size='15' >Limit Break</FONT>\n<FONT size='3'> </FONT>\nUnleash the hidden power in an equipment\nTransition to equipment that breaks through the limits." feature="UnlimitedEnchant" />
<key id="$s_inventory_item_remakeoption_tooltip" value="<FONT color='#FFD200' size='15' >Change Bonus Attributes</FONT>\n<FONT size='3'> </FONT>\nChange the bonus attributes on epic armor or higher or accessories level 50 or higher. Summons Ophelia the enchantment master." />
<key id="$s_inventory_item_remakeoption_disable_tooltip" value="<FONT color='#FFD200' size='15' >Change Bonus Attributes</FONT>\n<FONT size='3'> </FONT>\nChange the bonus attributes on epic armor or higher or accessories level 50 or higher." />
<key id="$s_inventory_range_tooltip" value="<FONT color='#FFD200' size='15' >Sort</FONT>\n<FONT size='3'> </FONT>\nAutomatically sorts your inventory." />
<key id="$s_inventory_get_option_tooltip" value="<FONT color='#FFD200' size='15' >Auto-loot Settings</FONT>\n<FONT size='3'> </FONT>\nAdjust auto-loot preferences." />
<key id="$s_inventory_get_option_disable_tooltip" value="<FONT color='#FFD200' size='15' >Auto-loot Settings</FONT>\n<FONT size='3'> </FONT>\nAdjust auto-loot preferences.\nYou must be at least level 10 to use this feature." />
<key id="$s_inventory_item_lock_tooltip" value="<FONT color='#FFD200' size='15' >Lock</FONT>\n<FONT size='3'> </FONT>\nItems can be locked or unlocked to prevent them from being accidentally lost." />
<key id="$s_inventory_item_merge_tooltip" value="<FONT color='#FFD200' size='15' >Empowerment</FONT>\nYou can add empowerment attributes to your gear by using empowerment crystals." />
<key id="$s_inventory_open_bank_tooltip" value="<FONT color='#FFD200' size='15' >Use Bank Safe</FONT>\n<FONT size='3'> </FONT>\nSummon Bank Safe." />
<key id="$s_inventory_open_bank_disable_tooltip" value="<FONT color='#FFD200' size='15' >Use Bank Safe</FONT>\n<FONT size='3'> </FONT>\nSummon Bank Safe." />
<key id="$s_inventory_open_bank_tooltip_pcbang" value="- PC cafe access can be used as a benefit with an active membership." feature="PCBang" />
<key id="$s_inventory_open_bank_tooltip_vip" value="- Usable anywhere, anytime with active Premium Club." feature="VIP" />
<key id="$s_inventory_item_socket_tooltip" value="<FONT color='#FFD200' size='15' >Sockets / Gemstones</FONT>\n<FONT size='3'> </FONT>\nUnlock item sockets, upgrade gemstones, and equip or unequip gemstones." feature="ItemSocketSystem" />
<key id="$s_inventory_item_socket_disable_tooltip" value="<FONT color='#FFD200' size='15' >Sockets / Gemstones</FONT>\n<FONT size='3'> </FONT>\nUnlock item sockets, upgrade gemstones, and equip or unequip gemstones." feature="ItemSocketSystem" />
<key id="$s_inventory_slotexpand_tooltip" value="<FONT color='#FFD200' size='15' >Expand</FONT>\n<FONT size='3'> </FONT>\nExpand the currently selected inventory tab by {0} slot(s).\nCan be expanded up to {1} slots." />
<key id="$s_itemopion_title" value="Auto-loot Settings" />
<key id="$s_itemopion_check_auto_equip" value="Equipment" />
<key id="$s_itemopion_check_auto_skill" value="Skill items" />
<key id="$s_itemopion_check_auto_consume" value="Consumables" />
<key id="$s_itemopion_check_auto_build" value="Furnishings" />
<key id="$s_itemopion_check_auto_etc" value="Other Items" />
<key id="$s_itemopion_check_auto_meso" value="Mesos" />
<key id="$s_itemopion_check_auto_merat" value="Merets" />
<key id="$s_itemopion_check_auto_pet" value="Pet Auto-loot" />
<key id="$s_itemopion_check_auto_token" value="Currencies" />
<key id="$s_itemopion_check_auto_other" value="Dropped Items" />
<key id="$s_itemopion_check_auto_gemstone" value="Gemstones and Gem Dust" />
<key id="$s_itemopion_dropdown_rank_all" value="Any quality" />
<key id="$s_itemopion_dropdown_rank_up06" value="<FONT color='#ff8c37'>Ascendant</FONT> or higher" />
<key id="$s_itemopion_dropdown_rank_up05" value="<FONT color='#ffd533'>Legendary</FONT> or higher" />
<key id="$s_itemopion_dropdown_rank_up04" value="<FONT color='#c888ff'>Epic</FONT> or higher" />
<key id="$s_itemopion_dropdown_rank_up03" value="<FONT color='#45d1ff'>Exceptional</FONT> or higher" />
<key id="$s_itemopion_dropdown_rank_up02" value="<FONT color='#b0f350'>Rare</FONT> or higher" />
<key id="$s_gameoption_tab_game" value="Game" />
<key id="$s_gameoption_tab_graphic" value="Graphics" />
<key id="$s_gameoption_tab_sound" value="Sound" />
<key id="$s_gameoption_tab_input" value="Controls" />
<key id="$s_gameoption_minimum" value="Minimize" />
<key id="$s_gameoption_maximum" value="Maximize" />
<key id="$s_gameoption_tab_account" value="Account" />
<key id="$s_gameoption_tab_language" value="Languages" />
<key id="$s_gameoption_tab_agreement" value="개인정보 위임" />
<key id="$s_gameoption_category_camera" value="Camera" />
<key id="$s_gameoption_category_interface" value="Interface" />
<key id="$s_gameoption_category_status" value="Status Text" />
<key id="$s_gameoption_category_battle" value="Battle Text" />
<key id="$s_gameoption_category_community" value="Community" />
<key id="$s_gameoption_category_graphic" value="Basic Settings" />
<key id="$s_gameoption_category_sound" value="Basic Settings" />
<key id="$s_gameoption_category_input_gamepad_setting" value="Gamepad Settings" />
<key id="$s_gameoption_category_input_action" value="Actions" />
<key id="$s_gameoption_category_input_menu" value="Menus" />
<key id="$s_gameoption_category_input_etc" value="Misc" />
<key id="$s_gameoption_category_input_gamepad" value="Gamepad Controls" />
<key id="$s_gameoption_category_input_debug" value="Debug" />
<key id="$s_gameoption_category_optimizer" value="Optimization" />
<key id="$s_gameoption_category_account_security" value="Security" />
<key id="$s_gameoption_category_language_select" value="Languages" />
<key id="$s_gameoption_category_personealinfo_agreement" value="개인정보 위임" />
<key id="$s_gameoption_title" value="Options" />
<key id="$s_gameoption_resolution" value="Resolution" />
<key id="$s_gameoption_screenmode" value="Screen Mode" />
<key id="$s_gameoption_sm_window" value="Windowed" />
<key id="$s_gameoption_sm_full_screen" value="Full-screen" />
<key id="$s_gameoption_sm_full_window" value="Full-screen windowed" />
<key id="$s_gameoption_smoothCamera" value="Smooth Camera" />
<key id="$s_gameoption_effectStep" value="Effects Quality" />
<key id="$s_gameoption_enchant_effect" value="Weapon Effects Enabled" />
<key id="$s_gameoption_brightness" value="Brightness" />
<key id="$s_gameoption_showFrameRate" value="Display FPS" />
<key id="$s_gameoption_advance_effect" value="Advanced Effects" />
<key id="$s_gameoption_max_fov" value="Max Zoom Distance" />
<key id="$s_gameoption_close_all_dlg" value="ESC key closes all windows" />
<key id="$s_gameoption_auto_desc" value="Show guide tooltips" />
<key id="$s_gameoption_show_tip_text" value="Display Help Tips" />
<key id="$s_gameoption_show_damagemeter" value="Enable Personal Performance Meter" />
<key id="$s_gameoption_show_chaos_damagemeter" value="Enable Dungeon Party Meter" />
<key id="$s_gameoption_enable_mousecontrol" value="Use Mouse Controls" />
<key id="$s_gameoption_show_nametag_mark" value="Display enchant marker" />
<key id="$s_gameoption_set_ui" value="Interface Size" />
<key id="$s_gameoption_set_quality" value="Simple Settings" />
<key id="$s_gameoption_hdr" value="HDR" />
<key id="$s_gameoption_shimmer" value="Distortion effects" />
<key id="$s_gameoption_vsync" value="VSync" />
<key id="$s_gameoption_boss_notify_0" value="Similar level, quest, or mission objective" />
<key id="$s_gameoption_boss_notify_1" value="Quest or mission objective" />
<key id="$s_gameoption_boss_notify_2" value="Never Send Alerts" />
<key id="$s_gameoption_set_boss_notify" value="Boss Spawn Alerts" />
<key id="$s_gameoption_shadow" value="Real-time shadows" />
<key id="$s_gameoption_multisampling" value="Multisampling" />
<key id="$s_gameoption_shadow_none" value="No shadows" />
<key id="$s_gameoption_shadow_simple" value="Simplified shadows" />
<key id="$s_gameoption_shadow_realtime" value="Real-time shadows" />
<key id="$s_gameoption_device" value="Video Card" />
<key id="$s_gameoption_multisampling_0x" value="0x Anti-aliasing" />
<key id="$s_gameoption_multisampling_2x" value="2x Anti-aliasing" />
<key id="$s_gameoption_multisampling_4x" value="4x Anti-aliasing" />
<key id="$s_gameoption_language_select" value="Language" />
<key id="$s_gameoption_region_select" value="Region" />
<key id="$s_gameoption_voice_select" value="Voices" />
<key id="$s_gameoption_language_select_kr" value="Korean" />
<key id="$s_gameoption_language_select_jp" value="Japanese" />
<key id="$s_gameoption_language_select_en" value="English" />
<key id="$s_gameoption_language_select_cn" value="Chinese" />
<key id="$s_gameoption_language_select_fr" value="French" />
<key id="$s_gameoption_language_select_de" value="German" />
<key id="$s_gameoption_language_select_pt" value="Portuguese" />
<key id="$s_gameoption_language_select_es" value="Spanish" />
<key id="$s_gameoption_gamepad_use" value="Enable Gamepad Controls" />
<key id="$s_gameoption_gamepad_skillname" value="Display Quickslot Skill Name" />
<key id="$s_gameoption_gamepad_vibration" value="Enable Vibration" />
<key id="$s_gameoption_gamepad_sensitivity_h" value="X-Axis Sensitivity" />
<key id="$s_gameoption_gamepad_sensitivity_v" value="Y-Axis Sensitivity" />
<key id="$s_gameoption_gamepad_lstick_sensitivity" value="Walk / Run Sensitivity" />
<key id="$s_gameoption_input_select_keyboard" value="Keyboard" />
<key id="$s_gameoption_input_select_xbox" value="Xbox Controller" />
<key id="$s_gameoption_input_select_ps" value="DUALSHOCK®4" />
<key id="$s_gameoption_input_select_steam" value="Steam" />
<key id="$s_gameoption_input_or" value="or" />
<key id="$s_gameoption_tooltip_quality" value="Changes the overall level of graphic settings.\n\n<FONT color='#FFD200' >Higher levels will require higher specs on your computer.\nIf you select a higher level than recommended for your computer, you will receive an error message.</FONT>" />
<key id="$s_gameoption_tooltip_hdr" value="Turn HDR on to enable environmental glows.\n\n<FONT color='#FFD200' >Requires a high spec computer.</FONT>" />
<key id="$s_gameoption_tooltip_hdr_on" value="HDR <FONT color='#FFD200' >ON</FONT>" />
<key id="$s_gameoption_tooltip_hdr_off" value="HDR <FONT color='#FFD200' >OFF</FONT>" />
<key id="$s_gameoption_tooltip_shimmer" value="Enables effects that make environments and skills seem as if they are distorting space.\n\n<FONT color='#FFD200' >High specs will be required to use this setting.</FONT>" />
<key id="$s_gameoption_tooltip_shimmer_on" value="Distortion effects <FONT color='#FFD200' >ON</FONT>" />
<key id="$s_gameoption_tooltip_shimmer_off" value="Distortion effects <FONT color='#FFD200' >OFF</FONT>" />
<key id="$s_gameoption_tooltip_fps" value="Displays how many frames per second the game is running at on the screen.\n\n<FONT color='#FFD200' >60 or higher means the game is running smoothly.\nIf it dips below 30, please try adjusting your graphic settings.</FONT>" />
<key id="$s_gameoption_tooltip_vsync" value="Sets the FPS to match the monitor's refresh rate.\n\n<FONT color='#FFD200' >Enable this option if you notice screen tearing. \nPlease note that your FPS may drop as a result.</FONT>" />
<key id="$s_gameoption_tooltip_enchant_effect" value="Effects produced by weapons will always be displayed." />
<key id="$s_gameoption_tooltip_effect" value="Adjusts the quality of effects.\n\n<FONT color='#FFD200' >Higher levels will require higher specs on your computer.</FONT>" />
<key id="$s_gameoption_MyName" value="Show My Name" />
<key id="$s_gameoption_PlayerSymbol" value="Show Player Insignias" />
<key id="$s_gameoption_FriendlyName" value="Show Friendly Player Names" />
<key id="$s_gameoption_EnemyName" value="Show Hostile Player Names" />
<key id="$s_gameoption_NpcName" value="Show NPC Names" />
<key id="$s_gameoption_MonsterName" value="Show Monster Names" />
<key id="$s_gameoption_PcIllust" value="Show Job Portrait in Conversations" />
<key id="$s_gameoption_MonsterGaugeValue" value="Show Monster Health Values" />
<key id="$s_gameoption_ExpValue" value="Show Current Experience %" />
<key id="$s_gameoption_OnlyMyEffectToMonster" value="Hide Other Players' Debuffs on Monster Health Bars" />
<key id="$s_gameoption_MyHpGauge" value="Show My Character's Health Bar Overhead" />
<key id="$s_gameoption_MyShieldGauge" value="Show shield bar over self" />
<key id="$s_gameoption_PartyHpGauge" value="Show Ally Health Bars Overhead" />
<key id="$s_gameoption_PartyShieldGauge" value="Show shield bars over friendlies" />
<key id="$s_gameoption_MonsterHpGauge" value="Show Monster Health Bars Overhead" />
<key id="$s_gameoption_NormalChatBalloon" value="Show speech bubbles for normal chat" />
<key id="$s_gameoption_PartyChatBalloon" value="Show speech bubbles for party chat" />
<key id="$s_gameoption_GuildChatBalloon" value="Show speech bubbles for guild chat" />
<key id="$s_gameoption_ShowOnlyMyPet" value="Mute Other Pets' Effects and Sounds" />
<key id="$s_gameoption_HideMyPet" value="Hide Your Pet" />
<key id="$s_gameoption_HideOtherPet" value="Hide Other Players' Pets" />
<key id="$s_gameoption_HideSmartPush" value="Hide Convenience (Meret) Features" />
<key id="$s_gameoption_LearningQuest" value="Never Open Maple Guide Automatically" />
<key id="$s_gameoption_HideHighlightMenu" value="Hide Bottom Icon Alerts (SP, AP, New Mail, Gear Alerts)" />
<key id="$s_gameoption_MyGiveDamage" value="Show damage to enemies" />
<key id="$s_gameoption_MyTakeDamage" value="Show damage to character" />
<key id="$s_gameoption_MyGiveRecovery" value="Show Healing I Provide" />
<key id="$s_gameoption_MyTakeRecovery" value="Show Healing I Receive" />
<key id="$s_gameoption_PartyGiveDamage" value="Show party damage to enemies" />
<key id="$s_gameoption_PartyTageDamage" value="Show damage to party members" />
<key id="$s_gameoption_PartyRecovery" value="Show Healing Received by Party Members" />
<key id="$s_gameoption_DropIcon" value="Show speech bubbles for dropped items" />
<key id="$s_gameoption_GetMeso" value="Show Mesos earned" />
<key id="$s_gameoption_GetExp" value="Show Experience earned" />
<key id="$s_gameoption_EpGauge" value="Show Stamina Bar over character" />
<key id="$s_gameoption_Mode" value="Damage Display Settings (Other Players)" />
<key id="$s_gameoption_Default" value="Default" />
<key id="$s_gameoption_Color" value="Colors" />
<key id="$s_gameoption_Size" value="Reduce Font Size" />
<key id="$s_gameoption_Alpha" value="Increase Transparency" />
<key id="$s_gameoption_damageSize" value="Damage Size" />
<key id="$s_gameoption_reset_interface" value="Restore Default Layout" />
<key id="$s_gameoption_giveDamage" value="Damage Text" />
<key id="$s_gameoption_giveDamage_mine" value="Show Only My Damage" />
<key id="$s_gameoption_giveDamage_party" value="Show Party Damage" />
<key id="$s_gameoption_giveDamage_all" value="Show Everyone's Damage" />
<key id="$s_gameoption_takeDamage" value="Damage Taken" />
<key id="$s_gameoption_takeDamage_mine" value="Show Only My Damage Taken" />
<key id="$s_gameoption_takeDamage_party" value="Show Party's Damage Taken" />
<key id="$s_gameoption_takeDamage_all" value="Show Everyone's Damage Taken" />
<key id="$s_gameoption_BgTransparency" value="Show Transparent Objects" />
<key id="$s_gameoption_CameraLooseFall" value="Falling effects" />
<key id="$s_gameoption_VibrateEffect" value="Enable Screen Shake Effects" />
<key id="$s_gameoption_damageEffectAlphaStep" value="Damage Transparency" />
<key id="$s_gameoption_cameraLooseStep" value="Smooth Camera" />
<key id="$s_gameoption_cameraFovStep" value="Max Zoom Distance" />
<key id="$s_gameoption_myChatBalloon" value="Show your speech bubbles" />
<key id="$s_gameoption_otherChatBalloon" value="Show other speech bubbles" />
<key id="$s_gameoption_ChatWorld" value="Verify Meret use in World Chat" />
<key id="$s_gameoption_ChatChannel" value="Verify Meret use in Channel Chat" />
<key id="$s_gameoption_partyRequest" value="Block party invites" />
<key id="$s_gameoption_buddyRequest" value="Block friend invites" />
<key id="$s_gameoption_guildRequest" value="Block guild invites" />
<key id="$s_gameoption_tradeRequest" value="Block trade requests" />
<key id="$s_gameoption_groupRequest" value="Block group chat invites" />
<key id="$s_gameoption_whisperNotify" value="Block whispers" />
<key id="$s_gameoption_homeRequest" value="Block home invites" />
<key id="$s_gameoption_coupleEmotionRequest" value="Block Buddy Emote invites" />
<key id="$s_gameoption_singleriding" value="Disable two-person riding" />
<key id="$s_gameoption_muteAll" value="Mute" />
<key id="$s_gameoption_playAll" value="Play Sounds in Background" />
<key id="$s_gameoption_disable_job_sound" value="Use Generic Sound" />
<key id="$s_gameoption_mainSoundStep" value="Master Volume" />
<key id="$s_gameoption_bgmSoundStep" value="Music" />
<key id="$s_gameoption_effectSoundStep" value="Sound Effects" />
<key id="$s_gameoption_uiSoundStep" value="Interface" />
<key id="$s_gameoption_enviromentSoundStep" value="Environment" />
<key id="$s_gameoption_movieSoundStep" value="Cutscenes" />
<key id="$s_gameoption_npcSoundStep" value="NPC Character Voices" />
<key id="$s_gameoption_bossSoundStep" value="Boss Voices" />
<key id="$s_gameoption_systemSoundStep" value="System Voices" />
<key id="$s_gameoption_instrumentStep" value="Instruments" />
<key id="$s_gameoption_instrumentStep_isOffBgm" value="Mute BGM during performances" />
<key id="$s_gameoption_charSoundStep" value="PC Character Voices" />
<key id="$s_gameoption_effect" value="Effects" />
<key id="$s_gameoption_sound_effect" value="Sound Effects" />
<key id="$s_gameoption_sound_background" value="Music" />
<key id="$s_gameoption_sound_environment" value="Environment" />
<key id="$s_gameoption_visual_damage" value="Damage" />
<key id="$s_gameoption_visual_mapname" value="Map names" />
<key id="$s_gameoption_low" value="Min" />
<key id="$s_gameoption_medium" value="Medium" />
<key id="$s_gameoption_high" value="Max" />
<key id="$s_gameoption_button_ok" value="Close" />
<key id="$s_gameoption_button_apply" value="Apply" />
<key id="$s_gameoption_button_init" value="Defaults" />
<key id="$s_gameoption_button_secondary_password" value="Secondary Password" />
<key id="$s_gameoption_radio_show" value="Show" />
<key id="$s_gameoption_radio_hide" value="Hide" />
<key id="$s_gameoption_check_off" value="Turn off" />
<key id="$s_gameoption_option_default" value="Default Settings" />
<key id="$s_gameoption_option_input" value="Control Settings" />
<key id="$s_gameoption_option_user" value="Manual Settings" />
<key id="$s_gameoption_option_set_ui" value="UI Settings" />
<key id="$s_gameoption_option_ui_scale" value="Size" />
<key id="$s_gameoption_option_ui" value="UI" />
<key id="$s_gameoption_option_ui_mydamage" value="Show your damage" />
<key id="$s_gameoption_option_ui_otherdamage" value="Show other character damage" />
<key id="$s_gameoption_option_ui_getmeso" value="Show Mesos earned" />
<key id="$s_gameoption_option_ui_getexp" value="Show Experience earned" />
<key id="$s_gameoption_optimizer_not_use" value="Display Other Characters" />
<key id="$s_gameoption_optimizer_effect" value="Hide Other Characters' Effects" />
<key id="$s_gameoption_optimizer_character" value="Hide Other Characters" />
<key id="$s_gameoption_optimizer_hide_always" value="Always Hide" />
<key id="$s_gameoption_optimizer_hide_bossbattle" value="Hide in Vicinity of Elite & Boss Monsters" />
<key id="$s_gameoption_optimizer_show_party" value="Always show party members" />
<key id="$s_gameoption_optimizer_show_guild" value="Always show guild members" />
<key id="$s_gameoption_optimizer_show_custom" value="Max characters shown" />
<key id="$s_gameoption_optimizer_count" value="" />
<key id="$s_gameoption_optimizer_useOptimizer" value="Auto-optimization" />
<key id="$s_gameoption_optimizer_warning" value="Use this to keep your game experience optimized.\nIf the game becomes unstable, please\ntry disabling this option." />
<key id="$s_gameoption_optimizer_show_physx" value="Show other player's hair physics" />
<key id="$s_gameoption_agreement_personal_info" value="Authorize overseas transfer of personal information " />
<key id="$s_gameoption_agreement_radio_agree" value="Allow" />
<key id="$s_gameoption_agreement_radio_deny" value="Deny" />
<key id="$s_gameoption_agreement_btn_detail" value="View Details" />
<key id="$s_gameoption_agreement_summary" value="To provide a better game experience, the company must provide information such as your game log to Nexon, the developer of [MapleStory 2].\nFor the sake of your safety, we will process and encrypt your game log and other information.\nYou can exercise your personal information-related rights with respect to the above information received from Nexon.\nFor the specific regulations, click ”View Details”." />
<key id="$s_skill_title" value="Skills" />
<key id="$s_skill_active" value="Active" />
<key id="$s_skill_passive" value="Passive" />
<key id="$s_skill_action" value="Action" />
<key id="$s_quest_information" value="Quest Journal" />
<key id="$s_quest_alramadd_quest_max" value="You can track up to 40 quests." />
<key id="$s_quest_title" value="Story" />
<key id="$s_quest_enable_guide" value="Display the story notification window" />
<key id="$s_quest_condition" value="Summary" />
<key id="$s_quest_reward" value="Reward" />
<key id="$s_quest_giveup" value="Abandon" />
<key id="$s_quest_find_new_quest" value="Look for a new quest." />
<key id="$s_quest_no_have_quest" value="You have not completed any quests yet." />
<key id="$s_quest_select_complete_quest" value="Select a quest you have completed." />
<key id="$s_quest_select_quest" value="Select a quest that's in progress." />
<key id="$s_quest_select_beginable" value="Select a quest to start." />
<key id="$s_quest_select_no_beginable" value="No available quests." />
<key id="$s_quest_satisfied" value="Complete" />
<key id="$s_quest_complete" value="Complete" />
<key id="$s_quest_tab_main" value="Epic" />
<key id="$s_quest_tab_sub" value="World" />
<key id="$s_quest_tab_fame" value="Faction" />
<key id="$s_quest_tab_event" value="Guide/Event" />
<key id="$s_quest_tab_beginable" value="Available" />
<key id="$s_quest_tab_beginable_epic" value="Available" />
<key id="$s_quest_tab_progress" value="In Progress" />
<key id="$s_quest_tab_complete" value="Completed" />
<key id="$s_quest_info_exp" value="{0} Experience" />
<key id="$s_quest_info_guild_exp" value="{0} Guild Experience" />
<key id="$s_quest_list_proper_level" value="Hide Low Level Quests" />
<key id="$s_quest_list_progress_only" value="Hide Completed Quests" />
<key id="$s_quest_list_proper_level_tooltip" value="<FONT color='#FFD200' size='15' >Filter Similar Levels</FONT>\nCheck this box to only display quests that are appropriate for your level. \nUncheck the box to display quests with recommended levels that are 5 or more levels lower than your current level." />
<key id="$s_quest_setting" value="Quest Indicator Options" />
<key id="$s_quest_setting_epic" value="<FONT color='#ffcc00'>Display Epic Quests</FONT>" />
<key id="$s_quest_setting_world" value="<FONT color='#00a2ed'>Display World Quests</FONT>" />
<key id="$s_quest_setting_repeat" value="<FONT color='#51d600'>Display Repeatable Quests</FONT>" />
<key id="$s_quest_setting_tooltip_epic" value="Displays Epic Quest indicators on the World Map, Minimap, and about NPCs' heads." />
<key id="$s_quest_setting_tooltip_world" value="Displays World Quest indicators on the World Map, Minimap, and about NPCs' heads." />
<key id="$s_quest_setting_tooltip_repeat" value="Displays Repeatable Quest indicators on the World Map, Minimap, and about NPCs' heads." />
<key id="$s_quest_guide_move_field" value="Teleport" />
<key id="$s_quest_guide_move_dungeon" value="Enter Alone" />
<key id="$s_quest_guide_dispatch" value="Complete" />
<key id="$s_quest_guide_party_find" value="Find Party" />
<key id="$s_quest_guide_party_find_cancel" value="Cancel Find" />
<key id="$s_quest_guide_move_reentry" value="Resume Dungeon" />
<key id="$s_quest_guide_popup_npc_talk" value="Mission Complete" />
<key id="$s_quest_state_progress" value="Show In Progress" />
<key id="$s_quest_state_complete" value="Show Complete" />
<key id="$s_quest_on" value="ON" />
<key id="$s_quest_off" value="OFF" />
<key id="$s_quest_guide_tooltip_goto_dungeon" value="<FONT color='#FFD200' size='15' >Enter Alone</FONT>\nExplore this dungeon by yourself. Allows you to move to the dungeon immediately from your current location." />
<key id="$s_questguide_mission_field" value="Exploration Goals" />
<key id="$s_questguide_mission_dungeon" value="Rank Mission" />
<key id="$s_questguide_dungeon_play_info" value="Dungeon Info" />
<key id="$s_questguide_dungeon_goal" value="Dungeon Clear Conditions" />
<key id="$s_gamemenu_btn_worldmap" value="World Map" />
<key id="$s_gamemenu_btn_dungeonSearch" value="Challenge Map" />
<key id="$s_gamemenu_btn_partysearch" value="Party Finder" />
<key id="$s_gamemenu_btn_mail" value="Mail" />
<key id="$s_gamemenu_btn_community" value="Friends" />
<key id="$s_gamemenu_btn_ugc_shop" value="Meret Market" />
<key id="$s_gamemenu_btn_cashshop" value="Cash Shop" />
<key id="$s_gamemenu_btn_userinfo" value="Character" />
<key id="$s_gamemenu_btn_inven" value="Inventory" />
<key id="$s_gamemenu_btn_skillbook" value="Skills" />
<key id="$s_gamemenu_btn_quest" value="Quests" />
<key id="$s_gamemenu_btn_achievement" value="Trophies" />
<key id="$s_gamemenu_btn_gameoption" value="Menu" />
<key id="$s_gamemenu_popup_selectcharacter" value="Character Select" />
<key id="$s_gamemenu_popup_gameexit" value="Quit" />
<key id="$s_gamemenu_popup_guild" value="Guild" />
<key id="$s_gamemenu_popup_maview" value="Maview" />
<key id="$s_gamemenu_popup_beauty" value="Beauty" />
<key id="$s_gamemenu_popup_levelup" value="Navigator" />
<key id="$s_gamemenu_popup_dailymission" value="Daily Missions" />
<key id="$s_gamemenu_popup_fame" value="Reputation" />
<key id="$s_gamemenu_popup_sky_fortress" value="Board Sky Fortress" />
<key id="$s_gamemenu_popup_arcade" value="Arcade" />
<key id="$s_gamemenu_popup_blackmarket" value="Black Market" />
<key id="$s_gamemenu_popup_individualbattle" value="Arena" />
<key id="$s_gamemenu_popup_characterability" value="Traits" />
<key id="$s_gamemenu_popup_adventurebar" value="Adventure Bar" />
<key id="$s_gamemenu_btn_market_group" value="Market" />
<key id="$s_gamemenu_btn_character_group" value="Character" />
<key id="$s_gamemenu_btn_contents_group" value="Adventure" />
<key id="$s_gamemenu_btn_community_group" value="Community" />
<key id="$s_gamemenu_btn_game_group" value="Lifestyle" />
<key id="$s_gamemenu_btn_home" value="Home" />
<key id="$s_gamemenu_btn_design" value="Workshop" />
<key id="$s_gamemenu_btn_vip" value="Premium" />
<key id="$s_gamemenu_btn_mastery" value="Life Skills" />
<key id="$s_gamemenu_btn_learning" value="Maple Guide" />
<key id="$s_gamemenu_btn_compactkey" value="Macro Settings" />
<key id="$s_gamemenu_btn_dictionary" value="Encyclopedia" />
<key id="$s_gamemenu_btn_ranking" value="Rankings" />
<key id="$s_gamemenu_btn_beauty_hair" value="Beauty Salon" />
<key id="$s_gamemenu_btn_beauty_item" value="Dye Workshop" />
<key id="$s_gamemenu_btn_beauty_skin" value="Plastic Surgery Office" />
<key id="$s_gamemenu_btn_club" value="Clubs" />
<key id="$s_gamemenu_btn_epic_restart" value="Restart Epic" />
<key id="$s_gamemenu_btn_levelup_package" value="Level Up" />
<key id="$s_gamemenu_btn_systemgroup" value="System" />
<key id="$s_gamemenu_popup_stampevent" value="Stamp Tour" />
<key id="$s_gamemenu_popup_attendgift" value="Rewards Calendar" />
<key id="$s_gamemenu_popup_longtermattendgift" value="황금\n더키볼" />
<key id="$s_gamemenu_popup_galleryevent" value="Schwanda's Holiday Gallery" />
<key id="$s_gamemenu_popup_rps" value="Rock-Paper-Scissors" />
<key id="$s_gamemenu_popup_coupledance" value="Love Dance Party" />
<key id="$s_gamemenu_popup_coupledance" value="Love Dance Party" locale="CN" />
<key id="$s_gamemenu_popup_characterselect" value="Character Select" />
<key id="$s_gamemenu_popup_end" value="End Game" />
<key id="$s_gamemenu_btn_pet" value="Pets" />
<key id="$s_gamemenu_btn_live_cam" value="Stream" />
<key id="$s_gamemenu_btn_time_run_event" value="Race against Time" />
<key id="$s_gamemenu_btn_mentoring" value="Mentoring" />
<key id="$s_gamemenu_petattack_enable" value="<FONT color='#FFD200' size='15' >Pet Auto-Attack Enabled</FONT>\nClick to toggle pet auto-attack." />
<key id="$s_gamemenu_petattack_disable" value="<FONT color='#FFD200' size='15' >Pet Auto-Attack Disabled</FONT>\nClick to toggle pet auto-attack." />
<key id="$s_gamemenu_popup_adventure_level" value="Prestige Rank" feature="AdventureLevel" />
<key id="$s_gamemenu_popup_world_champion" value="World Raid" feature="WorldChampionMushroom" />
<key id="$s_gamemenu_popup_cashAttend" value="Daily Wonders" />
<key id="$s_gamemenu_popup_changejob" value="Rank Up!" />
<key id="$s_gamemenu_btn_lapenshard" value="Lapenshards" feature="Lapenshard01" />
<key id="$s_gamemenu_btn_MeratCharge" value="Buy Merets" />
<key id="$s_gamemenu_btn_pssbshop" value="Style Coin Shop" />
<key id="$s_gamemenu_btn_pssbshop" value="Style Coin Shop" locale="JP" />
<key id="$s_gamemenu_btn_collectitemgroupevent" value="Meta Badge Plus" locale="KR" />
<key id="$s_gamemenu_btn_collectitemgroupevent" value="Meta Badge Plus" feature="Event" locale="CN" />
<key id="$s_gamemenu_btn_collectitemgroupevent" value="Meta Badge Plus" feature="GemMeta" locale="JP" />
<key id="$s_gamemenu_btn_bingoevent" value="Bingo" />
<key id="$s_gamemenu_btn_wedding" value="Marriage" feature="Wedding" />
<key id="$s_gamemenu_btn_demolish" value="Clear Indoor Space" />
<key id="$s_gamemenu_btn_construct" value="Furnish" />
<key id="$s_gamemenu_btn_normal" value="Stop Furnishing" />
<key id="$s_gamemenu_btn_construct_tooltip" value="<FONT color='#FFD200' size='15' >Begin Building</FONT>\n<FONT size='3'> </FONT>\nPress the shortcut key to enter Build Mode\nand decorate your property.\nYou can only use Build Mode inside your home." />
<key id="$s_gamemenu_btn_normal_tooltip" value="<FONT color='#FFD200' size='15' >Exiting Build Mode</FONT>\n<FONT size='3'> </FONT>\nPressing the shortcut key or the ESC key will end Build Mode\nand return you to Normal Mode. While you're in Character Mode,\nif you move outside the build area your mode will change automatically." />
<key id="$s_gamemenu_btn_demolish_tooltip" value="<FONT color='#FFD200' size='15' >Clear Indoor Space</FONT>\n<FONT size='3'> </FONT>\nPick up all furnishings that are set in your home.\nItems can be found in the construction material list.\nIf you go outside during the process, or if the placement changes, the entire process may be canceled.</FONT>" />
<key id="$s_gamemenu_btn_homebank_tooltip" value="<FONT color='#FFD200' size='15' >Use Safe</FONT>\n<FONT size='3'> </FONT>\nYou can freely use the safe at Goldus Bank. There is a short delay between uses." feature="UGCMapRenewal" />
<key id="$s_gamemenu_btn_homedoctor_tooltip" value="<FONT color='#FFD200' size='15' >Call Primary Physician</FONT>\n<FONT size='3'> </FONT>\nYou can call your primary physician to heal your Tombshocked status. Your primary physician requires a short rest between treatments." feature="UGCMapRenewal" />
<key id="$s_gamemenu_btn_quiz_create_tooltip" value="<FONT color='#FFD200' size='15' >OX Quiz Portal</FONT>\n<FONT size='3'> </FONT>\nCreate a portal to the OX Quiz stadium. You will be moved to the stadium automatically." feature="UGCMapOX" />
<key id="$s_gamemenu_btn_quiz_promote_tooltip" value="<FONT color='#FFD200' size='15' >Promote Quiz</FONT>\n<FONT size='3'> </FONT>\nYou can promote your OX Quiz in World Chat up to 3 times. Has a 60 second cooldown." feature="UGCMapOX" />
<key id="$s_construct_slot_pgup" value="<FONT color='#FFD200' size='15' >Previous Page</FONT>\n<FONT size='3'> </FONT>\nClicking this button or pressing the shortcut key will display the previous page of available items.\nPressing this on the first page will take you to the last page." />
<key id="$s_construct_slot_pgdn" value="<FONT color='#FFD200' size='15' >Next Page</FONT>\n<FONT size='3'> </FONT>\nClicking this button or pressing the shortcut key will display the next page of available items.\nPressing this on the last page will take you back to the first page." />
<key id="$s_charselect_title" value="Character Select" />
<key id="$s_charselect_create_newchar" value="Create New Character" />
<key id="$s_charselect_start_game" value="Start" />
<key id="$s_charselect_create_char" value="Create Character" />
<key id="$s_charselect_delete_char" value="Delete Character" />
<key id="$s_charselect_select_server" value="Select Server" />
<key id="$s_charselect_cancle_delete" value="Cancel" />
<key id="$s_charselect_deleting" value="Deleting..." />
<key id="$s_charselect_enable_delete" value="Delete character?" />
<key id="$s_charselect_revival_char" value="Restore" />
<key id="$s_charselect_final_delete" value="Delete" />
<key id="$s_charselect_lock_tooltip" value="Please purchase a Character Card from the Meret Market." />
<key id="$s_charcreateselect_btn_create_char" value="Create Character" />
<key id="$s_charcreateselect_btn_prev" value="Back" />
<key id="$s_charcreate_look" value="Customize Appearance" />
<key id="$s_charcreate_equip" value="Customize Equipment" />
<key id="$s_charcreate_create" value="Create" />
<key id="$s_charcreate_customize" value="Customize Character" />
<key id="$s_charcreate_description" value="Detailed Settings Available" />
<key id="$s_charcreate_input_name" value="Please enter your name." />
<key id="$s_charcreate_male" value="Male" />
<key id="$s_charcreate_female" value="Female" />
<key id="$s_charcreate_category_hair" value="Hair" />
<key id="$s_charcreate_category_face" value="Face" />
<key id="$s_charcreate_category_makeup" value="Cosmetics" />
<key id="$s_charcreate_category_skin" value="Skin" />
<key id="$s_charcreate_category_clothes" value="Top" />
<key id="$s_charcreate_category_pants" value="Bottom" />
<key id="$s_charcreate_category_shoes" value="Shoes" />
<key id="$s_charcreate_random_select" value="Randomize" />
<key id="$s_charcreate_select_char" value="Back" />
<key id="$s_charcreate_size" value="Size" />
<key id="$s_charcreate_length" value="Length" />
<key id="$s_charcreate_front_hair" value="Front" />
<key id="$s_charcreate_back_hair" value="Back" />
<key id="$s_charcreate_position" value="Position" />
<key id="$s_charcreate_degree" value="Orientation" />
<key id="$s_charcreate_btn_custom" value="Custom" />
<key id="$s_charcreate_btn_guide" value="Guide" />
<key id="$s_cameraedit_desc_char_rightclick" value="Rotate your character by <FONT color='#FFD200'>right-clicking</FONT>\nwith your mouse." />
<key id="$s_cameraedit_desc_char_wheel" value="Zoom in or out using the <FONT color='#FFD200'>wheel</FONT>\non your mouse." />
<key id="$s_cameraedit_desc_custom_leftclick" value="Change location by <FONT color='#FFD200'>clicking</FONT>\nwith your mouse." />
<key id="$s_cameraedit_desc_custom_rightclick" value="Rotate by <FONT color='#FFD200'>right-clicking</FONT>with your mouse." />
<key id="$s_cameraedit_desc_custom_wheel" value="Change size or length by using the <FONT color='#FFD200'>wheel</FONT>\non your mouse." />
<key id="$s_cameratedit_title_hair" value="Hairstyle Mouse Controls" />
<key id="$s_cameraedit_desc_hair_leftclick" value="Re-position your hair by holding <b>left-click</b> and dragging the mouse." />
<key id="$s_cameraedit_desc_hair_rightclick" value="Rotate your character by <b>right-clicking</b> and dragging the mouse." />
<key id="$s_cameraedit_desc_hair_wheel" value="Adjust your hair length and size using the <b>mouse wheel</b>." />
<key id="$s_cameratedit_title_makeup" value="Cosmetics Mouse Controls" />
<key id="$s_cameraedit_desc_makeup_leftclick" value="Adjust the position of your cosmetics by holding <b>left-click</b> and dragging the mouse." />
<key id="$s_cameraedit_desc_ makeup_rightclick" value="Rotate your cosmetics by holding <b>right-click</b> and dragging the mouse." />
<key id="$s_cameraedit_desc_makeup_wheel" value="Adjust the size of your cosmetics using the <b>mouse wheel</b>." />
<key id="$s_worldmap_southperry" value="Southperry" />
<key id="$s_worldmap_lith" value="Lith Harbor" />
<key id="$s_worldmap_henesys" value="Henesys" />
<key id="$s_worldmap_ellinia" value="Ellinia" />
<key id="$s_worldmap_perion" value="Perion" />
<key id="$s_worldmap_kerningcity" value="Kerning City" />
<key id="$s_worldmap_dropdown_default" value="World Map" />
<key id="$s_worldmap_dropdown_statistics" value="Attributes" />
<key id="$s_worldmap_dropdown_normalworld" value="Maple World" />
<key id="$s_worldmap_dropdown_shadowworld" value="Shadow World" />
<key id="$s_worldmap_dropdown_root" value="All Worlds" />
<key id="$s_worldmap_btn_normalworld" value="Maple World" />
<key id="$s_worldmap_btn_shadowworld" value="Shadow World" />
<key id="$s_worldmap_radio_hotplace" value="Hot Spots" />
<key id="$s_worldmap_radio_recommend_map" value="Recommended Hunting Grounds" />
<key id="$s_worldmap_radio_recommend_fish" value="Recommended Fishing Spots" />
<key id="$s_worldmap_radio_quest_progress" value="Quest Areas" />
<key id="$s_worldmap_radio_default" value="Default" />
<key id="$s_worldmap_tooltip_hotplace" value="Check which maps have the most players." />
<key id="$s_worldmap_tooltip_quest_progress" value="Check which maps you have quests in." />
<key id="$s_worldmap_tooltip_recommend_map" value="Find good hunting grounds for your level." />
<key id="$s_worldmap_tooltip_recommend_fish" value="Find good fishing spots for your level." />
<key id="$s_worldmap_tooltip_radio_default" value="Return to default World Map." />
<key id="$s_worldmap_airtaxi_ticket" value="Rotors Air Taxi" />
<key id="$s_worldmap_tooltip_airtaxi_icon" value="<FONT color='#FFD200' size='15' >Rotors Air Taxi</FONT>\nClick the Air Taxi icon on the map if you wish to call a helicopter to take you somewhere else." />
<key id="$s_worldmap_tooltip_airtaxi_ticket" value="<FONT color='#FFD200' size='15' >Rotors Air Taxi</FONT>\nUse a Rotors Walkie-Talkie to instantly travel to an area you've already visited. It takes 3 Rotors Walkie-Talkies to go somewhere you haven't been yet.\n\n<FONT color='#FFD200' size='15' >Free Air Taxi</FONT>\nYou can use event Walkie-Talkies to move only to locations you've visited before." />
<key id="$s_worldmap_tooltip_airtaxi_ticket" value="<FONT color='#FFD200' size='15' >Rotors Air Taxi</FONT>\nUse a Rotors Walkie-Talkie to instantly travel to an area you've already visited. It takes 3 Rotors Walkie-Talkies to go somewhere you haven't been yet.\n\n<FONT color='#FFD200' size='15' >Free Air Taxi</FONT>\nYou can use event Walkie-Talkies to move only to locations you've visited before." locale="JP" />
<key id="$s_worldmap_search_field" value="Search by map, dungeon, monster, or NPC name." />
<key id="$s_worldmap_setting" value="World Map Settings" />
<key id="$s_worldmap_setting_check3" value="Quests Near Your Level" />
<key id="$s_worldmap_setting_check4" value="Dungeons Near Your Level" />
<key id="$s_worldmap_rank_1" value="Normal Adventure" />
<key id="$s_worldmap_rank_2" value="Hard Adventures" />
<key id="$s_worldmap_rank_3" value="Chaos Raids" />
<key id="$s_worldmap_setting_check3_tooltip" value="<FONT color='#FFD200' size='15' >Quests Near Your Level</FONT>\n<FONT size='3'> </FONT>\nCheck this box to view quests that are appropriate for your level.\nUncheck this box to display all quests." />
<key id="$s_worldmap_setting_check4_tooltip" value="<FONT color='#FFD200' size='15' >Dungeons Near Your Level</FONT>\n<FONT size='3'> </FONT>\nCheck this box to view dungeons that are appropriate for your level.\nUncheck this box to display all dungeons." />
<key id="$s_worldmap_setting_ok" value="OK" />
<key id="$s_worldmap_island_maple" value="Maple Island" />
<key id="$s_worldmap_island_victoria" value="Victoria Island" />
<key id="$s_worldmap_island_karkar" value="Karkar Island" />
<key id="$s_worldmap_island_darkness" value="Darkness Island" />
<key id="$s_worldmap_island_runeblader" value="Calibre Island" />
<key id="$s_worldmap_island_timaion" value="Kritias" />
<key id="$s_worldmap_unknown_area" value="This is an unexplored area." />
<key id="$s_worldmap_search_map" value="Map" />
<key id="$s_worldmap_search_dungeon" value="Dungeons" />
<key id="$s_worldmap_search_boss_monster" value="Boss Monsters" />
<key id="$s_worldmap_search_elite_monster" value="Elite Monsters" />
<key id="$s_worldmap_search_monster" value="Monsters" />
<key id="$s_worldmap_search_shadowgate" value="Shadow Gate" />
<key id="$s_worldmap_search_indoor" value="Connected Maps" />
<key id="$s_worldmap_search_npc" value="Notable People" />
<key id="$s_worldmap_search_mission" value="Exploration Goals" />
<key id="$s_worldmap_mission_area" value="Select a destination." />
<key id="$s_worldmap_take_aircraft" value="Sorties Left" />
<key id="$s_worldmap_sky_fortress_mode" value="Track\nSky Fortress" />
<key id="$s_minimap_shop" value="Merchants" />
<key id="$s_minimap_friendly_npc" value="Friendly NPCs" />
<key id="$s_minimap_taming_pet" value="Capturable Monsters" feature="PetBattle" />
<key id="$s_minimap_enemy" value="Enemies" />
<key id="$s_minimap_portal" value="Portals" />
<key id="$s_minimap_buddy" value="Friends" />
<key id="$s_minimap_other_pc" value="Other Players" />
<key id="$s_minimap_text" value="Display Names" />
<key id="$s_minimap_quest_epic" value="Epic Quests" />
<key id="$s_minimap_quest_world" value="World Quests" />
<key id="$s_minimap_quest_repeat" value="Repeatable Quests" />
<key id="$s_upper_hud_tooltip_attend" value="<FONT color='#FFD200' size='15' >Attendance Event</FONT>\n<FONT size='3'> </FONT>\nCheck the attendance records for your account." />
<key id="$s_upper_hud_tooltip_manufacture" value="<FONT color='#FFD200' size='15' >Assistant Progress</FONT>\n<FONT size='3'> </FONT>\nShows the progress your assistant has made on their task." />
<key id="$s_upper_hud_tooltip_search" value="<FONT color='#FFD200' size='15' >Attendance Event</FONT>\n<FONT size='3'> </FONT>\nEnter a search keyword\nand view the search results in Maview." />
<key id="$s_upper_hud_tooltip_fishingbook" value="<FONT color='#FFD200' size='15' >Fish Album</FONT>\n<FONT size='3'> </FONT>\nCheck your fishing level and fish that you can catch." />
<key id="$s_upper_hud_tooltip_blackmarket" value="<FONT color='#FFD200' size='15' >Black Market</FONT>\n<FONT size='3'> </FONT>\nAccess the Black Market." />
<key id="$s_upper_hud_tooltip_notice" value="<FONT color='#FFD200' size='15' >Event in Progress</FONT>\n<FONT size='3'> </FONT>\nView the events that are currently running." />
<key id="$s_upper_hud_tooltip_pcbang" value="<FONT color='#FFD200' size='15' >PC Cafe Special Benefits</FONT>\n<FONT size='3'> </FONT>\nYou can view special PC cafe benefits." />
<key id="$s_upper_hud_tooltip_keyboard_guide" value="<FONT color='#FFD200' size='15' >Controls</FONT>\n<FONT size='3'> </FONT>\nView the basic controls of connected devices, such as keyboards or gamepads." />
<key id="$s_upper_hud_tooltip_keyboard_mouse" value="<FONT color='#FFD200' size='15' >Keyboard Presets</FONT>\n<FONT size='3'> </FONT>\nClick this to choose either Keyboard Only or Mouse and Keyboard key binding presets." />
<key id="$s_upper_hud_tooltip_gamepad_on" value="<FONT color='#FFD200' size='15' >Stop Using Gamepad</FONT>\n<FONT size='3'> </FONT>\nClick this button to disable gamepad controls." />
<key id="$s_upper_hud_tooltip_gamepad_off" value="<FONT color='#FFD200' size='15' >Use Gamepad</FONT>\n<FONT size='3'> </FONT>\nClick this button to enable gamepad controls." />
<key id="$s_myInfo_title" value="Character" />
<key id="$s_myInfo_guild_empty" value="No guild" />
<key id="$s_myInfo_todaymemo" value="Enter a character motto." />
<key id="$s_myInfo_game" value="Gear" />
<key id="$s_myInfo_skin" value="Outfits" />
<key id="$s_myInfo_codi" value="Fashion" feature="Skin2tab" />
<key id="$s_myInfo_badge" value="Badges" />
<key id="$s_myInfo_detail_show" value="Advanced View" />
<key id="$s_myInfo_detail_hide" value="Hide Stat Sheet" />
<key id="$s_myInfo_transparency_gem" value="Hide Gear" />
<key id="$s_myInfo_transparency_cp" value="Headgear" />
<key id="$s_myInfo_transparency_ey" value="Eyewear" />
<key id="$s_myInfo_transparency_cl" value="Top" />
<key id="$s_myInfo_transparency_pa" value="Bottom" />
<key id="$s_myInfo_transparency_mt" value="Cape" />
<key id="$s_myInfo_transparency_ea" value="Earrings" />
<key id="$s_myInfo_transparency_fh" value="Face Accessory" />
<key id="$s_myInfo_transparency_gl" value="Gloves" />
<key id="$s_myInfo_transparency_ri" value="Ring" />
<key id="$s_myInfo_transparency_sh" value="Shoes" />
<key id="$s_myInfo_transparency_ok" value="Confirm" />
<key id="$s_myInfo_transparency_cancel" value="Cancel" />
<key id="$s_myinfo_empty_title" value="No title" />
<key id="$s_myinfo_my_news_tooltip" value="<FONT color='#FFD200' size='15' >Search News</FONT>\n<FONT size='3'> </FONT>\nYou can search Maview for news articles that mention this character." />
<key id="$s_myinfo_empty_todaymemo" value="You don't currently have a motto." />
<key id="$s_myInfo_menu_select_profile_enable" value="Set Portrait" />
<key id="$s_myInfo_menu_select_profile_disable" value="Portrait" />
<key id="$s_myInfo_menu_take_photo" value="Take picture" />
<key id="$s_myInfo_menu_input_memo" value="Set Motto" />
<key id="$s_myInfo_menu_hp" value="Health" />
<key id="$s_myInfo_menu_sp" value="Spirit" />
<key id="$s_myInfo_menu_lv" value="Level" />
<key id="$s_myInfo_menu_cb" value="Combat" />
<key id="$s_myInfo_menu_ad" value="Adventure" />
<key id="$s_myInfo_menu_lf" value="Lifestyle" />
<key id="$s_myInfo_menu_statistic" value="Stat information" />
<key id="$s_myInfo_menu_stat" value="Character attribute" />
<key id="$s_myInfo_menu_delete_profile" value="Reset" />
<key id="$s_myInfo_ugc_contract" value="Real Estate Contract" />
<key id="$s_myInfo_home_name" value="Home Name" />
<key id="$s_myInfo_home_term" value="Duration" />
<key id="$s_myInfo_home_price" value="Price" />
<key id="$s_myInfo_home_term_myinfo" value="Contract Duration" />
<key id="$s_myInfo_home_price_myinfo" value="Contract Price" />
<key id="$s_myInfo_label_item_level" value="<FONT color='#FFFFFF'>Gear Score</FONT>" />
<key id="$s_myInfo_label_attack" value="<FONT color='#FF5F5F' >Attack</FONT>" />
<key id="$s_myInfo_label_attackScore" value="<FONT color='#FF5F5F'>Attack Score</FONT>" feature="StatScore_01" />
<key id="$s_myInfo_label_defense" value="<FONT color='#45D1FF'>Defense</FONT>" />
<key id="$s_myInfo_label_defenseScore" value="<FONT color='#45D1FF'>Defense Score</FONT>" feature="StatScore_01" />
<key id="$s_myInfo_reset_statpoint" value="Reset Attributes" />
<key id="$s_myInfo_remain_statpoint" value="Attribute Points" />
<key id="$s_myInfo_veil_panel_of_edit_statpoint" value="You can't distribute Attribute Points while participating in Mushking Royale. Try again after the match has ended." />
<key id="$s_ugc_image_title_profile" value="Set Portrait" />
<key id="$s_ugc_image_title_wedding_profile" value="Profile Settings" feature="Wedding" />
<key id="$s_ugc_image_title_banner" value="Set Poster" />
<key id="$s_ugc_image_title_guild" value="Set Guild Emblem" />
<key id="$s_ugc_image_title_guild_poster" value="Set Guild Poster" />
<key id="$s_ugc_image_title_blueprint_image" value="Select Image" feature="Blueprint" />
<key id="$s_ugc_image_btn_upload" value="Set" />
<key id="$s_ugc_image_btn_select" value="Select" />
<key id="$s_ugc_image_btn_terms" value="Content" />
<key id="$s_ugc_image_btn_new" value="New" />
<key id="$s_ugc_image_cb_terms" value="I have fully read the warnings and I agree to the Terms of Service" />
<key id="$s_ugc_image_tooltip_add" value="Add File" />
<key id="$s_ugc_image_tooltip_open" value="Open Folder" />
<key id="$s_ugc_image_lb_noimage" value="Add a new image!" />
<key id="$s_ugc_itemedit_title" value="Maple Workshop" />
<key id="$s_ugc_itemedit_btn_init" value="Reset" />
<key id="$s_ugc_itemedit_btn_make" value="Create" />
<key id="$s_ugc_itemedit_btn_apply" value="Create" />
<key id="$s_ugc_itemedit_btn_cancle" value="Cancel" />
<key id="$s_ugc_itemedit_btn_newdraw" value="New" />
<key id="$s_ugc_itemedit_btn_showtext" value="Content" />
<key id="$s_ugc_itemedit_cb_terms" value="I have fully read the warnings and I agree to the Terms of Service" />
<key id="$s_ugc_itemedit_cb_camera" value="Show Photo Widget" />
<key id="$s_ugc_itemedit_lb_itemname" value="Name" />
<key id="$s_ugc_itemedit_lb_itemcount" value="Quantity" />
<key id="$s_ugc_itemedit_lb_select_design" value="Select Design Template" />
<key id="$s_ugc_itemedit_rb_avatar0" value="Mannequin" />
<key id="$s_ugc_itemedit_rb_avatar1" value="My Character" />
<key id="$s_ugc_itemedit_lb_cube" value="Select how many of this item to create." />
<key id="$s_ugc_itemedit_lb_equip" value="You can only create one at a time." />
<key id="$s_ugc_itemedit_lb_select" value="Select Design" />
<key id="$s_ugc_itemedit_lb_camera" value="This is your new item's icon. To change the icon, enable and position the photo widget, then press the camera button." />
<key id="$s_ugc_itemedit_lb_noimage" value="Create a brand new design!" />
<key id="$s_ugc_itemedit_tooltip_mlclick" value="Use the <FONT color='#FFD200'>left mouse button</FONT> to pan the camera." />
<key id="$s_ugc_itemedit_tooltip_mrclick" value="Use the <FONT color='#FFD200'>right mouse button</FONT> to rotate the camera." />
<key id="$s_ugc_itemedit_tooltip_mwheel" value="Use the <FONT color='#FFD200'>mouse wheel</FONT> to zoom the camera in or out." />
<key id="$s_ugc_itemedit_tooltip_capture" value="Position the <FONT color='#FFD200'>camera</FONT> and the <FONT color='#FFD200'>photo widget</font>, then snap a picture to set the <FONT color='#FFD200'>icon</FONT> of your new item.\nThe size of the photo widget can be adjusted." />
<key id="$s_ugc_itemedit_tooltip_open_folder" value="Open Folder" />
<key id="$s_ugc_itemedit_tooltip_add" value="Add File" />
<key id="$s_ugc_itemedit_tooltip_cube_count" value="<FONT color='#FFD200' size='15' >Enter Item Quantity</FONT>\n<FONT size='3'> </FONT>\nEnter how many item you want to make from your design.\nYou can make as many as you have inventory space for." />
<key id="$s_ugcitemedit_input_default" value="Enter item name (3 - 14 characters)" />
<key id="$s_ugc_itemedit_input_default" value="Enter item name (3 - 14 characters)" />
<key id="$s_ugc_itemedit_cb_hide_ui" value="Hide UI" />
<key id="$s_ugc_banner_title" value="Display Reservation" />
<key id="$s_ugc_banner_btn_upload" value="Reserve" />
<key id="$s_ugc_banner_btn_newdraw" value="New" />
<key id="$s_ugc_banner_btn_terms" value="Content" />
<key id="$s_ugc_banner_cb_terms" value="I have fully read the warnings and I agree to the Terms of Service" />
<key id="$s_ugc_banner_lb_terms" value="You can use the Displays throughout Maple World to show off an image of your choice. <i>The use of a ToS-breaking image will result in punishment, and any expended currency will not be refunded.</i>" />
<key id="$s_ugc_banner_lb_noimage" value="Add an image!" />
<key id="$s_ugc_banner_lb_register_fee" value="Listing Fee" />
<key id="$s_ugc_banner_lb_time_0" value="00:00" />
<key id="$s_ugc_banner_lb_time_1" value="01:00" />
<key id="$s_ugc_banner_lb_time_2" value="02:00" />
<key id="$s_ugc_banner_lb_time_3" value="03:00" />
<key id="$s_ugc_banner_lb_time_4" value="04:00" />
<key id="$s_ugc_banner_lb_time_5" value="05:00" />
<key id="$s_ugc_banner_lb_time_6" value="06:00" />
<key id="$s_ugc_banner_lb_time_7" value="07:00" />
<key id="$s_ugc_banner_lb_time_8" value="08:00" />
<key id="$s_ugc_banner_lb_time_9" value="09:00" />
<key id="$s_ugc_banner_lb_time_10" value="10:00" />
<key id="$s_ugc_banner_lb_time_11" value="11:00" />
<key id="$s_ugc_banner_lb_time_12" value="12:00" />
<key id="$s_ugc_banner_lb_time_13" value="13:00" />
<key id="$s_ugc_banner_lb_time_14" value="14:00" />
<key id="$s_ugc_banner_lb_time_15" value="15:00" />
<key id="$s_ugc_banner_lb_time_16" value="16:00" />
<key id="$s_ugc_banner_lb_time_17" value="17:00" />
<key id="$s_ugc_banner_lb_time_18" value="18:00" />
<key id="$s_ugc_banner_lb_time_19" value="19:00" />
<key id="$s_ugc_banner_lb_time_20" value="20:00" />
<key id="$s_ugc_banner_lb_time_21" value="21:00" />
<key id="$s_ugc_banner_lb_time_22" value="22:00" />
<key id="$s_ugc_banner_lb_time_23" value="23:00" />
<key id="$s_ugc_banner_lb_time_24" value="00:00" />
<key id="$s_ugc_banner_lb_slot_reserve" value="Available" />
<key id="$s_ugc_banner_lb_slot_reserve_disable" value="Unavailable" />
<key id="$s_ugc_banner_lb_slot_icon" value="[Applying] {0}" />
<key id="$s_ugc_banner_lb_slot_icon_standby" value="Standby: {0}" />
<key id="$s_ugc_banner_lb_slot_icon_reserved" value="[Reserved] {0}" />
<key id="$s_ugc_banner_lb_slot_icon_pending" value="Awaiting reservation(s): {0}" />
<key id="$s_ugc_banner_tooltip_add" value="Add File" />
<key id="$s_ugc_banner_tooltip_open" value="Open Folder" />
<key id="$s_shop_purchase" value="Items" />
<key id="$s_shop_repurchase" value="Buy Back" />
<key id="$s_shop_new_items" value="New" />
<key id="$s_shop_buy" value="Purchase" />
<key id="$s_shop_check_enable_item" value="Hide Unusable Items" />
<key id="$s_shop_notice_disable_reset" value="This store does not stock new items." />
<key id="$s_shop_notice_enable_reset" value="New product on the way!" />
<key id="$s_shop_notice_search" value="Enter search terms" />
<key id="$s_shop_reset" value="Instant Restock" />
<key id="$s_shop_soldout" value="Restock Unavailable" />
<key id="$s_shop_stopsale" value="Restock Unavailable" />
<key id="$s_shop_label_new" value="NEW" />
<key id="$s_shop_title_star" value="Star Shop" />
<key id="$s_shop_gacha_btn_unequip_all" value="Unequip All" />
<key id="$s_shop_gacha_btn_myequip" value="Reset" />
<key id="$s_shop_gacha_btn_show_mainitems" value="View Main Item" />
<key id="$s_store_title" value="Bank Safe" />
<key id="$s_store_savemeso" value="Deposit" />
<key id="$s_store_takemeso" value="Withdraw" />
<key id="$s_store_range" value="Sort" />
<key id="$s_store_expand" value="Expand" />
<key id="$s_objectstore_title" value="My Storage" />
<key id="$s_buddy_title" value="Friends" />
<key id="$s_buddy_tab_player" value="Online" />
<key id="$s_buddy_tab_list" value="Friends" />
<key id="$s_buddy_tab_recvlist" value="Requests" />
<key id="$s_buddy_tab_banlist" value="Blocked" />
<key id="$s_buddy_tab_homeblocklist" value="Home Block List" />
<key id="$s_buddy_admit" value="Accept" />
<key id="$s_buddy_deny" value="Decline" />
<key id="$s_buddy_cancelbuddy" value="Cancel" />
<key id="$s_buddy_homevisit" value="Visit House" />
<key id="$s_buddy_vip_name" value="Ambitious Girl" />
<key id="$s_buddy_vip_desc" value="Click to view their ambition page." />
<key id="$s_buddy_addbuddy" value="Add Friend" />
<key id="$s_buddy_addban" value="Block" />
<key id="$s_buddy_input_memo_title" value="Change Block Reason" />
<key id="$s_buddy_input_userID_title" value="Add Friend" />
<key id="$s_buddy_input_userID_defualt" value="Username" />
<key id="$s_buddy_notice_ban" value="Blocking another player will hide their character portraits, messages, mail, and requests." />
<key id="$s_buddy_notice_homeblock" value="Blocking another player will prevent all characters from the other player's account from visiting your home." />
<key id="$s_buddy_input_banID_title" value="Block" />
<key id="$s_buddy_input_banID_default" value="Username" />
<key id="$s_buddy_btn_ok" value="OK" />
<key id="$s_buddy_btn_cancel" value="Cancel" />
<key id="$s_buddy_add_default" value="Please be my friend!" />
<key id="$s_buddy_empty_buddy" value="Look for a new friend!" />
<key id="$s_buddy_empty_recv" value="You have no requests." />
<key id="$s_buddy_empty_ban" value="No characters have been blocked." />
<key id="$s_buddy_empty_homeblock" value="No characters have been blocked." />
<key id="$s_cutscene_skip_scene" value="SKIP" />
<key id="$s_cutscene_skip_action" value="SKIP" />
<key id="$s_cutscene_skip_state" value="SKIP" />
<key id="$s_cutscene_skip" value="Skip" />
<key id="$s_cutscene_skip_key" value="ESC" />
<key id="$s_party_searchDungeon" value="Searching for party..." />
<key id="$s_exp_bonus" value="Charm Bonus" />
<key id="$s_exp_combat" value="Combat" />
<key id="$s_exp_adv" value="Adventure" />
<key id="$s_exp_life" value="Lifestyle" />
<key id="$s_systemmenu_dragbar" value="Game Menu" />
<key id="$s_systemmenu_option" value="Options" />
<key id="$s_systemmenu_character" value="Switch Characters" />
<key id="$s_systemmenu_channel" value="Change Channels" />
<key id="$s_systemmenu_exit" value="Exit Game" />
<key id="$s_systemmenu_resume" value="Return to Game" />
<key id="$s_systemmenu_graphic" value="Graphics" />
<key id="$s_tooltip_empty" value="" />
<key id="$s_tooltip_remain_time" value="Sec Left" />
<key id="$s_tooltip_first_page" value="<FONT color='#FFD200' size='15' >First Page</FONT>\n<FONT size='3'> </FONT>\n<FONT color='#909090'>Return to the first page.</FONT>" />
<key id="$s_tooltip_prev_page" value="<FONT color='#FFD200' size='15' >Previous Batch</FONT>\n<FONT size='3'> </FONT>\nMove to the previous set of pages." />
<key id="$s_tooltip_next_page" value="<FONT color='#FFD200' size='15' >Next Batch</FONT>\n<FONT size='3'> </FONT>\nMove to the next group of pages." />
<key id="$s_tooltip_last_page" value="<FONT color='#FFD200' size='15' >Last Page</FONT>\n<FONT size='3'> </FONT>\nGo to the last page." />
<key id="$s_tooltip_dungeon_info" value="<FONT color='#FFD200' size='15'>Possible Rewards</FONT>\n<FONT size='3'> </FONT>Possible rewards found at the end of this challenge. Your actual rewards are chosen at random.\n\nSome rewards may be contained within selection boxes." />
<key id="$s_tooltip_myinfo_guild" value="<FONT color='#FFD200' size='15' >Guild</FONT>\n<FONT size='3'> </FONT>\nThis is the guild your character belongs to.</FONT>" />
<key id="$s_tooltip_myinfo_birthday" value="<FONT color='#FFD200' size='15' >Start Date</FONT>\n<FONT size='3'> </FONT>\nThis is the date your character began their adventure." />
<key id="$s_tooltip_myinfo_address" value="<FONT color='#FFD200' size='15' >Home</FONT>\n<FONT size='3'> </FONT>\nThis is the name of your home. All characters on an account share a single home." />
<key id="$s_tooltip_myinfo_job" value="<FONT color='#FFD200' size='15' >Job</FONT>\n<FONT size='3'> </FONT>\nYour character's job determines the role they fulfill and the abilities they can utilize." />
<key id="$s_tooltip_myinfo_good_interior_point" value="<FONT color='#FFD200' size='15' >Architect Points</FONT>\n<FONT size='3'> </FONT>\n<FONT color='#8dd502'>This Month/Total Points</FONT>\nPeople who visit your home can nominate you as a star architect. Nominations earn you architect points. These points contribute towards this month's points, which get reset each month, and the total points you've received during your time in Maple World. You can nominate one architect per day per account." />
<key id="$s_tooltip_myinfo_hp" value="<FONT color='#FFD200' size='15' >Health</FONT>\n<FONT size='3'> </FONT>\nThis is your character's health. If your health reaches zero, you will be stuck under a tombstone and unable to act." />
<key id="$s_tooltip_myinfo_sp" value="<FONT color='#FFD200' size='15' >Spirit</FONT>\n<FONT size='3'> </FONT>\nSpirit is a resource consumed by your combat skills. Once your spirit has been depleted, you will be unable to use combat skills. Spirit naturally regenerates over time." />
<key id="$s_tooltip_myinfo_profile" value="<FONT color='#FFD200' size='15' >Set Portrait</FONT>\n<FONT size='3'> </FONT>\nSet your portrait by selecting an image on your computer or using the portrait camera to take a picture in-game." />
<key id="$s_tooltip_myinfo_todayword" value="<FONT color='#FFD200' size='15' >Quote of the Day</FONT>\n<FONT size='3'> </FONT>\nTry writing something for your Quote of the Day to show your friends.\n<FONT size='8'> </FONT>\n<Img Src='export_common_icon_lclick' vspace='-3'></Img> You can enter your message here with a <FONT color='#FFD200'>left click</FONT><FONT color='#FFFFFF'>." />
<key id="$s_tooltip_myinfo_tab_equip" value="<FONT color='#FFD200' size='15' >Gear</FONT>\n<FONT size='3'> </FONT>\nRight-click armor and accessories in the Equip tab of your inventory to equip them." />
<key id="$s_tooltip_myinfo_tab_skin" value="<FONT color='#FFD200' size='15' >Outfit Equipment Item</FONT>\n<FONT size='3'> </FONT>\nThis is where outfit items can be equipped.\nRight-clicking an item in your inventory is a shortcut to equip outfit items." feature="Skin2tab" />
<key id="$s_tooltip_myinfo_tab_skin" value="<FONT color='#FFD200' size='15' >Outfit Equipment Item</FONT>\n<FONT size='3'> </FONT>\nThis is where outfit items can be equipped.\nRight-clicking an item in your inventory is a shortcut to equip outfit items." locale="NA" />
<key id="$s_tooltip_myinfo_tab_codi" value="<FONT color='#FFD200' size='15' >Fashion Item</FONT>\n<FONT size='3'> </FONT>\nThis is where outfit items can be equipped.\nWhen worn, only the appearance of the outfit item will be reflected.\nRight-click an item in your inventory to equip it." feature="Skin2tab" />
<key id="$s_tooltip_myinfo_tab_badge" value="<FONT color='#FFD200' size='15' >Badges</FONT>\n<FONT size='3'> </FONT>\nRight-click badges from your Badge inventory to equip them." />
<key id="$s_tooltip_myinfo_level" value="<FONT color='#FFD200' size='15' >Level</FONT>\n<FONT size='3'> </FONT>\nYour character's level is a measure of their overall combat ability." />
<key id="$s_tooltip_myinfo_gem_trans" value="<FONT color='#FFD200' size='15' >Transparency Badge</FONT>\n<FONT size='3'> </FONT>\nConfigurable to selectively hide equipped gear." />
<key id="$s_tooltip_myinfo_gem_dmgFont" value="<FONT color='#FFD200' size='15' >Damage Font</FONT>\n<FONT size='3'> </FONT>\nChanges the font used to display your damage." feature="GemDamageFont" />
<key id="$s_tooltip_myinfo_gem_chatBalloon" value="<FONT color='#FFD200' size='15' >Chat Bubble</FONT>\n<FONT size='3'> </FONT>\nChanges your chat bubbles." />
<key id="$s_tooltip_myinfo_gem_nameTag" value="<FONT color='#FFD200' size='15' >Name Tag</FONT>\n<FONT size='3'> </FONT>\nChanges your name tag." />
<key id="$s_tooltip_myinfo_gem_tomb" value="<FONT color='#FFD200' size='15' >Tombstone Style</FONT>\n<FONT size='3'> </FONT>\nChanges the appearance of your tombstone." feature="GemTombStone" />
<key id="$s_tooltip_myinfo_gem_swim" value="<FONT color='#FFD200' size='15' >Swim Tube</FONT>\n<FONT size='3'> </FONT>\nChanges the appearance of your swim tube." feature="GemSwim" />
<key id="$s_tooltip_myinfo_gem_charEffect" value="<FONT color='#FFD200' size='15' >Buddy Badge</FONT>\n<FONT size='3'> </FONT>\nTriggers a special visual effect in proximity of an adventurer with the paired badge." feature="GemCharEffect" />
<key id="$s_tooltip_myinfo_gem_fishing" value="<FONT color='#FFD200' size='15' >Fishing Accessories</FONT>\n<FONT size='3'> </FONT>\nChanges the appearance of your fishing pole and fishing chair." feature="GemFishingRod" />
<key id="$s_tooltip_myinfo_gem_autoMastery" value="<FONT color='#FFD200' size='15' >Auto-Gathering Badge</FONT>\n<FONT size='3'> </FONT>\nOnce gathering is initiated, it automatically continues until the success rate reaches zero. Usable for Mining, Foraging, Ranching, and Farming." feature="AutoMastery02" />
<key id="$s_tooltip_myinfo_gem_effect" value="<FONT color='#FFD200' size='15' >Effect Badge</FONT>\n<FONT size='3'> </FONT>\nGrants your character a visual effect." feature="GemEffect" />
<key id="$s_tooltip_myinfo_adventure_level" value="<FONT color='#FFD200' size='15' >Prestige Rank</FONT>\n<FONT size='3'> </FONT>\nYour prestige rank unlocks special account-wide lifestyle perks." feature="AdventureLevel" />
<key id="$s_tooltip_myinfo_gem_petSkin" value="<FONT color='#FFD200' size='15' >Pet Skin</FONT>\n<FONT size='3'> </FONT>\nThe summoned pet's appearance is changed to that of the equipped Pet Skin. The pet's appearance and attack animation will be altered, but its attributes will remain unchanged." feature="GemPetSkin" />
<key id="$s_tooltip_myinfo_gem_meta" value="<FONT color='#FFD200' size='15' >Meta Badge</FONT>\n<FONT size='3'> </FONT>\nYou can apply the stats given from the meta badge to your character." feature="GemMeta" />
<key id="$s_tooltip_minimap_channel" value="<FONT color='#FFD200' size='15' >Switch Channel</FONT>\n<FONT size='3'> </FONT>\nGo to a different channel on the same server." />
<key id="$s_tooltip_minimap_worldmap" value="<FONT color='#FFD200' size='15' >World Map [M]</FONT>\n<FONT size='3'> </FONT>\nView the entire map of Maple World. The map also includes info on your current location and local monsters." />
<key id="$s_tooltip_minimap_setting" value="<FONT color='#FFD200' size='15' >Minimap Settings</FONT>\n<FONT size='3'> </FONT>\nSelect the information that will be shown on your minimap." />
<key id="$s_tooltip_minimap_minimize" value="<FONT color='#FFD200' size='15' >Minimize Minimap</FONT>\n<FONT size='3'> </FONT>\nMinimize the minimap so it can't be seen. Pressing the button again will restore it." />
<key id="$s_tooltip_minimap_resize" value="<FONT color='#FFD200' size='15' >Minimap Size</FONT>\n<FONT size='3'> </FONT>\nChange the size of the minimap. Hold tab to maximize it." />
<key id="$s_tooltip_minimap_playerlist" value="<FONT color='#FFD200' size='15' >Players Online</FONT>\n<FONT size='3'> </FONT>\nShows the list of players who are online on this map." />
<key id="$s_tooltip_minimap_mapalpha" value="<FONT color='#FFD200' size='15' >Map Transparency</FONT>\n<FONT size='3'> </FONT>\nAdjust the minimap's transparency." />
<key id="$s_tooltip_minimap_bgalpha" value="<FONT color='#FFD200' size='15' >Map Background Transparency</FONT>\n<FONT size='3'> </FONT>\nAdjust the transparency of the minimap's background." />
<key id="$s_tooltip_minimap_zoomin" value="<FONT color='#FFD200' size='15' >Expand Minimap</FONT>\n<FONT size='3'> </FONT>\nExpands the minimap." />
<key id="$s_tooltip_minimap_zoomout" value="<FONT color='#FFD200' size='15' >Shrink Minimap</FONT>\n<FONT size='3'> </FONT>\nShrinks the minimap." />
<key id="$s_tooltip_homeinfo_minimize" value="<FONT color='#FFD200' size='15' >Hide/Show Home Details</FONT>\n<FONT size='3'> </FONT>\nMinimizes the Home Details window so it's out of the way. Pressing the button again will restore it." />
<key id="$s_tooltip_maininfo_hp" value="<FONT color='#FFD200' size='15' >Health</FONT>\n<FONT size='3'> </FONT>\nYour character's health.\nOnce health reaches zero, the character will be stuck under a tombstone and will be unable to act.\nHealth regenerates naturally over time." />
<key id="$s_tooltip_maininfo_sp" value="<FONT color='#FFD200' size='15' >Spirit</FONT>\n<FONT size='3'> </FONT>\nWithout enough spirit, you will not be able to use skills.\nSpirit naturally regenerates over time." />
<key id="$s_tooltip_maininfo_ep" value="<FONT color='#FFD200' size='15' >Stamina</FONT>\n<FONT size='3'> </FONT>\nOnce your stamina runs out, you won't be able to use action skills that require stamina. The stamina bar has 6 parts which each represent 20 units. Stamina naturally regenerates over time." />
<key id="$s_tooltip_messenger_add_tab" value="<FONT color='#FFD200' size='15' >Add New Chat Tab</FONT>\n<FONT size='3'> </FONT>\nAdds a new chat tab and gives options for which messages will be displayed." />
<key id="$s_tooltip_messenger_tab" value="<FONT color='#FFD200' size='15' >All Tab</FONT>\n<FONT size='3'> </FONT>\nThis is the default chat tab where all chat messages are shown.\n<FONT size='8'> </FONT>\n <Img Src='export_common_icon_rclick' vspace='-3'></Img> You can change its position by left-clicking and dragging." />
<key id="$s_tooltip_messenger_resize" value="<FONT color='#FFD200' size='15' >Chat Window Resize</FONT>\n<FONT size='3'> </FONT>\nChange the size of the chat window." />
<key id="$s_tooltip_messenger_type" value="" />
<key id="$s_tooltip_myinfo_trophyPoint" value="<FONT color='#FFD200' size='15' >Trophies</FONT>\n<FONT size='3'> </FONT>\nThe number of trophies your character has earned." />
<key id="$s_tooltip_myinfo_stat_itemLevel" value="<FONT color='#FFD200' size='15' >Gear Score</FONT>\n<FONT size='3'> </FONT>This is the sum of all Gear Score values from the gear your character currently has equipped. Gear Score is a numerical representation of your equipment's power. Some dungeons have minimum Gear Score requirements, but greater rewards.\n\nPlease note that off-hand items do not contribute to your Gear Score. (Shields, codices, and one-handed weapons placed in the second weapon slot are all considered off-hand items.)" />
<key id="$s_tooltip_myinfo_stat_itemLevel_ohAdditional" value="<FONT color='#FFD200' size='15' >Gear Score</FONT>\n<FONT size='3'> </FONT>This the sum of all gear score values from the gear your character currently has equipped. Gear score is a numerical representation of your equipment's power. Some dungeons have minimum gear score requirements, but greater rewards.\n\nWhen dual-wielding weapons, only the weapon with the highest gear score will contribute to your total gear score. If the difference between your weapons' gear score is too great, your gear score will be penalized based on the difference.\n\nShields and codices do not contribute to your gear score." feature="OHItemAdditionalLevel01" />
<key id="$s_tooltip_myinfo_stat_attack" value="<FONT color='#FFD200' size='15' >Attack</FONT>\n<FONT size='3'> </FONT>Your character's overall combat ability. Affected by weapon attack, physical attack, magic attack, critical rate, and critical damage." />
<key id="$s_tooltip_myinfo_stat_defense" value="<FONT color='#FFD200' size='15' >Defense </FONT>\n<FONT size='3'> </FONT>\nYour character's overall defensive capability. Affected by Defense attributes on your equipment." />
<key id="$s_tooltip_myinfo_stat_attackScore" value="<FONT color='#FFD200' size='15' >Attack Score</FONT>\n<FONT size='3'> </FONT>Your character's overall combat ability. Calculated using attributes such as weapon attack, physical attack, magic attack, critical rate, and critical damage." feature="StatScore_01" />
<key id="$s_tooltip_myinfo_stat_defenseScore" value="<FONT color='#FFD200' size='15' >Defense Score</FONT>\n<FONT size='3'> </FONT>\nYour character's overall defensive capability. Calculated using attributes such as defense and health." feature="StatScore_01" />
<key id="$s_tooltip_myinfo_stat_1" value="<FONT color='#FFD200' size='15' >Health</FONT>\n<FONT size='3'> </FONT>\nYour character's health. Once it reaches zero, your character will be stuck under a tombstone and be unable to act. Health regenerates naturally over time." />
<key id="$s_tooltip_myinfo_stat_2" value="<FONT color='#FFD200' size='15' >Spirit</FONT>\n<FONT size='3'> </FONT>\nResource necessary for using active skills. You cannot use active skills without sufficient spirit. Spirit regenerates naturally over time." />
<key id="$s_tooltip_myinfo_stat_3" value="<FONT color='#FFD200' size='15' >Stamina</FONT>\n<FONT size='3'> </FONT>Resource necessary for using action skills. You cannot use action skills without sufficient stamina. Stamina regenerates naturally over time." />
<key id="$s_tooltip_myinfo_stat_4" value="<FONT color='#FFD200' size='15' >Movement Speed (%)</FONT>\n<FONT size='3'> </FONT>\nYour character's ground movement speed. 100% represents normal speed. Can be increased up to 170%." />
<key id="$s_tooltip_myinfo_stat_5" value="<FONT color='#FFD200' size='15' >Strength</FONT>\n<FONT size='3'> </FONT>\nThis main attribute affects the Attack attribute of Knights, Berserkers, and Runeblades." />
<key id="$s_tooltip_myinfo_stat_6" value="<FONT color='#FFD200' size='15' >Dexterity</FONT>\n<FONT size='3'> </FONT>\nThis main attribute affects the Attack attribute of Archers and Heavy Gunners." />
<key id="$s_tooltip_myinfo_stat_7" value="<FONT color='#FFD200' size='15' >Intelligence</FONT>\n<FONT size='3'> </FONT>\nThis main attribute affects the Attack attribute of Wizards, Priests, and Rune Blades." />
<key id="$s_tooltip_myinfo_stat_8" value="<FONT color='#FFD200' size='15' >Luck</FONT>\n<FONT size='3'> </FONT>\nThis main attribute affects the Attack attribute of Thieves and Assassins." />
<key id="$s_tooltip_myinfo_stat_9" value="<FONT color='#FFD200' size='15' >Physical Attack</FONT>\n<FONT size='3'> </FONT>\nThis main attribute determines the damage of physical attacks. Each job is affected by different attributes." />
<key id="$s_tooltip_myinfo_stat_10" value="<FONT color='#FFD200' size='15' >Magic Attack</FONT>\n<FONT size='3'> </FONT>\nDetermines the damage of magic attacks. Affected by Intelligence." />
<key id="$s_tooltip_myinfo_stat_11" value="<FONT color='#FFD200' size='15' >Attack Speed</FONT>\n<FONT size='3'> </FONT>\nReduces the time between regular attacks and the cast time for skills. Affected by Dexterity." />
<key id="$s_tooltip_myinfo_stat_12" value="<FONT color='#FFD200' size='15' >Accuracy</FONT>\n<FONT size='3'> </FONT>\nDetermines if your attacks will hit their target. Affected by Dexterity." />
<key id="$s_tooltip_myinfo_stat_13" value="<FONT color='#FFD200' size='15' >Critical Rate</FONT>\n<FONT size='3'> </FONT>\nDetermines the probability that an attack will land as a critical hit. Critical hits have their damage increased. Affected by Luck.</FONT>" />
<key id="$s_tooltip_myinfo_stat_14" value="<FONT color='#FFD200' size='15' >Critical Damage</FONT>\n<FONT size='3'> </FONT>\nDetermines how much a critical hit increases the damage of the attack." />
<key id="$s_tooltip_myinfo_stat_15" value="<FONT color='#FFD200' size='15' >Defense</FONT>\n<FONT size='3'> </FONT>\nReduces damage taken from enemies." />
<key id="$s_tooltip_myinfo_stat_16" value="<FONT color='#FFD200' size='15' >Physical Resistance</FONT>\n<FONT size='3'> </FONT>\nFurther reduces the physical damage your character takes. Affected by Strength and Dexterity." />
<key id="$s_tooltip_myinfo_stat_17" value="<FONT color='#FFD200' size='15' >Magic Resistance</FONT>\n<FONT size='3'> </FONT>\nFurther reduces the magic damage your character takes. Affected by Intelligence." />
<key id="$s_tooltip_myinfo_stat_18" value="<FONT color='#FFD200' size='15' >Evasion</FONT>\n<FONT size='3'> </FONT>\nDetermines the chance to completely dodge an enemy attack. Affected by Luck." />
<key id="$s_tooltip_myinfo_stat_19" value="<FONT color='#FFD200' size='15' >Critical Resistance</FONT>\n<FONT size='3'> </FONT>\nDecreases the probability of being hit by a critical hit." />
<key id="$s_tooltip_myinfo_stat_0_0" value="<FONT color='#FFD200' size='15' >Health</FONT>\n<FONT size='3'> </FONT>\nRepresents your character's wellbeing. When your health reaches 0, you'll be stuck under a tombstone. Health naturally regenerates over time." />
<key id="$s_tooltip_myinfo_stat_0_1" value="<FONT color='#FFD200' size='15' >Spirit</FONT>\n<FONT size='3'> </FONT>\nSpirit is a resource consumed by skills. Once it has been depleted, you will be unable to use skills. Spirit naturally regenerates over time." />
<key id="$s_tooltip_myinfo_stat_0_2" value="<FONT color='#FFD200' size='15' >Stamina</FONT>\n<FONT size='3'> </FONT>\nA resource representing your character's endurance. Once your stamina runs out, you won't be able to use action skills that consume stamina. The stamina bar has 6 parts, and each part has 20 units. Stamina naturally regenerates over time." />
<key id="$s_tooltip_myinfo_stat_0_3" value="<FONT color='#FFD200' size='15' >Strength</FONT>\n<FONT size='3'> </FONT>\nThe main attribute for Knights, Berserkers, and Runeblades. Increases the physical attack of Knights, Berserkers, Wizards, Priests, Archers, Thieves, Runeblades, Strikers, and Soul Binders. Affects physical resistance." />
<key id="$s_tooltip_myinfo_stat_0_4" value="<FONT color='#FFD200' size='15' >Dexterity</FONT>\n<FONT size='3'> </FONT>\nThe main attribute for Archers, Heavy Gunners, and Strikers. Increases the physical attack of Knights, Berserkers, Priests, Archers, Heavy Gunners, Assassins, Runeblades, Strikers, and Soul Binders. Affects physical resistance and accuracy." />
<key id="$s_tooltip_myinfo_stat_0_5" value="<FONT color='#FFD200' size='15' >Intelligence</FONT>\n<FONT size='3'> </FONT>\nThe main attribute for Wizards, Priests, and Soul Binders. Increases magic attack and affects magic resistance." />
<key id="$s_tooltip_myinfo_stat_0_6" value="<FONT color='#FFD200' size='15' >Luck</FONT>\n<FONT size='3'> </FONT>\nThe main attribute for Thieves and Assassins. Increases the physical attack of Wizards, Thieves, Assassins, and Heavy Gunners. Affects critical rate." />
<key id="$s_tooltip_myinfo_stat_0_7" value="<FONT color='#FFD200' size='15' >Movement Speed</FONT>\n<FONT size='3'> </FONT>\nYour character's ground movement speed. 100% represents normal speed. Can be increased up to 170%." />
<key id="$s_tooltip_myinfo_stat_0_8" value="<FONT color='#FFD200' size='15' >Shield</FONT>\n<FONT size='3'> </FONT>\nYour character's shield. Incoming damage will deplete any shield first, then Hit Points." />
<key id="$s_tooltip_myinfo_stat_1_0" value="<FONT color='#FFD200' size='15' >Weapon Attack</FONT>\n<FONT size='3'> </FONT>\nThe total attack power of your equipped gear. Increases the damage dealt to enemies." />
<key id="$s_tooltip_myinfo_stat_1_1" value="<FONT color='#FFD200' size='15' >Bonus Attack</FONT>\n<FONT size='3'> </FONT>\nYour bonus attack power. Increases damage dealt to enemies. Its efficiency increases with your weapon's tier. Has no effect when no weapon is equipped." />
<key id="$s_tooltip_myinfo_stat_1_2" value="<FONT color='#FFD200' size='15' >Physical Attack</FONT>\n<FONT size='3'> </FONT>\nIncreases the damage dealt to enemies with physical attacks." />
<key id="$s_tooltip_myinfo_stat_1_3" value="<FONT color='#FFD200' size='15' >Magic Attack</FONT>\n<FONT size='3'> </FONT>\nIncreases the damage dealt to enemies from magic attacks." />
<key id="$s_tooltip_myinfo_stat_1_4" value="<FONT color='#FFD200' size='15' >Piercing</FONT>\n<FONT size='3'> </FONT>\nIgnores a portion of the enemy's defense and perfect guard when attacking." />
<key id="$s_tooltip_myinfo_stat_1_5" value="<FONT color='#FFD200' size='15' >Physical Piercing</FONT>\n<FONT size='3'> </FONT>\nIgnores a portion of the enemy's physical resistance when using physical attacks." />
<key id="$s_tooltip_myinfo_stat_1_6" value="<FONT color='#FFD200' size='15' >Magic Piercing</FONT>\n<FONT size='3'> </FONT>\nIgnores a portion of the enemy's magic resistance when using magic attacks." />
<key id="$s_tooltip_myinfo_stat_1_7" value="<FONT color='#FFD200' size='15' >Accuracy</FONT>\n<FONT size='3'> </FONT>\nIncreases the success rate of attacks." />
<key id="$s_tooltip_myinfo_stat_1_8" value="<FONT color='#FFD200' size='15' >Critical Rate</FONT>\n<FONT size='3'> </FONT>\nIncreases the probability that an attack will land as a critical hit. Critical hits deal additional damage. Critical rate cannot be increased beyond 40%." />
<key id="$s_tooltip_myinfo_stat_1_9" value="<FONT color='#FFD200' size='15' >Critical Rate (Bonus)</FONT>\n<FONT size='3'> </FONT>\nBonus critical rate applied in addition to normal critical rate. This value ignores any max limits for critical rate." />
<key id="$s_tooltip_myinfo_stat_1_10" value="<FONT color='#FFD200' size='15' >Critical Damage</FONT>\n<FONT size='3'> </FONT>\nIncreases the damage dealt from critical hits. Critical damage cannot exceed 250% against regular enemies, and cannot exceed 150% against other player characters." />
<key id="$s_tooltip_myinfo_stat_1_11" value="<FONT color='#FFD200' size='15' >Critical Damage (Bonus)</FONT>\n<FONT size='3'> </FONT>\nBonus critical damage applied in addition to normal critical damage. This value ignores any max limits for critical damage." />
<key id="$s_tooltip_myinfo_stat_1_12" value="<FONT color='#FFD200' size='15' >Melee Damage Bonus</FONT>\n<FONT size='3'> </FONT>\nIncreases the damage dealt with melee attacks." />
<key id="$s_tooltip_myinfo_stat_1_13" value="<FONT color='#FFD200' size='15' >Ranged Damage Bonus</FONT>\n<FONT size='3'> </FONT>\nIncreases the damage dealt with ranged attacks." />
<key id="$s_tooltip_myinfo_stat_1_14" value="<FONT color='#FFD200' size='15' >Fire Damage Bonus</FONT>\n<FONT size='3'> </FONT>\nIncreases the damage dealt with fire attacks." />
<key id="$s_tooltip_myinfo_stat_1_15" value="<FONT color='#FFD200' size='15' >Ice Damage Bonus</FONT>\n<FONT size='3'> </FONT>\nIncreases the damage dealt with ice attacks." />
<key id="$s_tooltip_myinfo_stat_1_16" value="<FONT color='#FFD200' size='15' >Electric Damage Bonus</FONT>\n<FONT size='3'> </FONT>\nIncreases the damage dealt with electric attacks." />
<key id="$s_tooltip_myinfo_stat_1_17" value="<FONT color='#FFD200' size='15' >Poison Damage Bonus</FONT>\n<FONT size='3'> </FONT>\nIncreases the damage dealt with poison attacks." />
<key id="$s_tooltip_myinfo_stat_1_18" value="<FONT color='#FFD200' size='15' >Dark Damage Bonus</FONT>\n<FONT size='3'> </FONT>\nIncreases the damage dealt with dark attacks." />
<key id="$s_tooltip_myinfo_stat_1_19" value="<FONT color='#FFD200' size='15' >Holy Damage Bonus</FONT>\n<FONT size='3'> </FONT>\nIncreases the damage dealt with holy attacks." />
<key id="$s_tooltip_myinfo_stat_1_20" value="<FONT color='#FFD200' size='15' >Bonus Boss Damage</FONT>\n<FONT size='3'> </FONT>\nIncreases the damage dealt to boss monsters." />
<key id="$s_tooltip_myinfo_stat_1_21" value="<FONT color='#FFD200' size='15' >Total Damage Bonus</FONT>\n<FONT size='3'> </FONT>\nIncreases the damage dealt to enemies." />
<key id="$s_tooltip_myinfo_stat_1_22" value="<FONT color='#FFD200' size='15' >Recovery Bonus</FONT>\n<FONT size='3'> </FONT>\nIncreases the amount recovered from skills which restore health or spirit." />