-
Notifications
You must be signed in to change notification settings - Fork 837
Expand file tree
/
Copy pathEnglish.json
More file actions
1300 lines (1294 loc) · 81.8 KB
/
English.json
File metadata and controls
1300 lines (1294 loc) · 81.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Text": {
"LowLevel": "You are not a high enough level.",
"LowGold": "Not enough gold.",
"LevelUp": "Congratulations! You have leveled up. Your HP and MP have been restored.",
"LowDC": "You do not have enough DC.",
"LowMC": "You do not have enough MC.",
"LowSC": "You do not have enough SC.",
"GameName": "Legend of Mir 2",
"ExpandedStorageExpiresOn": "Expanded Storage Expires On",
"NotFemale": "You are not Female.",
"NotMale": "You are not Male.",
"NotInGuild": "You are not in a guild.",
"NoMentorship": "You don't currently have a Mentorship to cancel.",
"YouNoBagSpace": "You do not have enough space.",
"PetMode_Both": "[Pet: Attack and Move]",
"PetMode_MoveOnly": "[Pet: Do Not Attack]",
"PetMode_AttackOnly": "[Pet: Do Not Move]",
"PetMode_None": "[Pet: Do Not Attack or Move]",
"PetMode_FocusMasterTarget": "[Pet: Focus Master Target]",
"AttackMode_Peace": "[Mode: Peaceful]",
"AttackMode_Group": "[Mode: Group]",
"AttackMode_Guild": "[Mode: Guild]",
"AttackMode_EnemyGuild": "[Mode: Enemy Guild]",
"AttackMode_RedBrown": "[Mode: Red/Brown]",
"AttackMode_All": "[Mode: Attack All]",
"LogOutTip": "Do you want to log out of Legend of Mir?",
"ExitTip": "Do you want to quit Legend of Mir?",
"DiedTip": "You have died, Do you want to revive in town?",
"DropTip": "Are you sure you want to drop {0}?",
"InventoryKey": "Inventory ({0})",
"CharacterKey": "Character ({0})",
"SkillsKey": "Skills ({0})",
"QuestsKey": "Quests ({0})",
"OptionsKey": "Options ({0})",
"Menu": "Menu",
"GameShopKey": "Game Shop ({0})",
"BigMapKey": "BigMap ({0})",
"DuraPanel": "Dura Panel",
"Mail": "Mail",
"ExitKey": "Exit ({0})",
"LogOutKey": "Log Out ({0})",
"HelpKey": "Help ({0})",
"Keybinds": "Keybinds",
"RankingKey": "Ranking ({0})",
"CreaturesKey": "Creatures ({0})",
"MountKey": "Mount ({0})",
"FishingKey": "Fishing ({0})",
"FriendsKey": "Friends ({0})",
"MentorKey": "Mentor ({0})",
"RelationshipKey": "Relationship ({0})",
"GroupsKey": "Groups ({0})",
"GuildKey": "Guild ({0})",
"Expire": "Expire: {0}",
"ExpireNever": "Expire: Never",
"ExpirePaused": "Expire: Paused",
"Never": "Never",
"TradeKey": "Trade ({0})",
"Size": "Size",
"ChatSettings": "Chat Settings",
"Rotate": "Rotate",
"CloseKey": "Close ({0})",
"GameMaster": "GameMaster",
"MonsterInfoLoading": "Monster info is being loaded...",
"NPCInfoLoading": "NPC info is being loaded...",
"ItemInfoLoading": "Item info is being loaded...",
"MonsterIndexTitle": "Monster Index: {0}",
"NPCIndexTitle": "NPC Index: {0}",
"ItemIndexTitle": "Item Index: {0}",
"MonsterIndexLoading": "Monster Index: {0}\n(Loading...)",
"NPCIndexLoading": "NPC Index: {0}\n(Loading...)",
"ItemIndexLoading": "Item Index: {0}\n(Loading...)",
"MonsterTooltipLevel": "Level: {0}",
"MonsterTooltipHealth": "Health: {0}",
"MonsterTooltipExperience": "Experience: {0}",
"MonsterTooltipDC": "DC: {0}~{1}",
"MonsterTooltipMC": "MC: {0}~{1}",
"MonsterTooltipAC": "AC: {0}~{1}",
"MonsterTooltipMAC": "MAC: {0}~{1}",
"NPCTooltipName": "Name: {0}",
"NPCTooltipLocation": "Location: {0}",
"NPCTooltipCoordinates": "Coordinates: ({0}, {1})",
"NPCTooltipUnknownMap": "Unknown map",
"NPCTooltipMapLoading": "Loading map...",
"ItemTooltipType": "Type: {0}",
"ItemTooltipWeight": "Weight: {0}",
"InvalidMonsterIndex": "Invalid monster index",
"InvalidNPCIndex": "Invalid NPC index",
"InvalidItemIndex": "Invalid item index",
"InvalidLinkIndex": "Invalid link index",
"PatchErr": "Could not get Patch Information",
"LastOnline": "Last Online",
"LastOnlineTitle": "Last Online:",
"Gold": "Gold",
"Credit": "Credit",
"YouGainedItem": "You gained {0}.",
"YouGainedGold": "You gained {0:###,###,###} {1}",
"ExperienceGained": "Experience Gained {0}",
"HeroInventory": "Hero Inventory ({0})",
"HeroCharacter": "Hero Character ({0})",
"HeroSkills": "Hero Skills ({0})",
"HeroExperienceGained": "Hero Experience Gained {0}",
"HeroDesummonCountdown": "Your Hero recently left combat. Please wait {0} seconds before desummoning.",
"ItemDescription": "Item Description",
"RequiredLevel": "Required Level : {0}",
"RequiredDC": "Required DC : {0}",
"RequiredMC": "Required MC : {0}",
"RequiredSC": "Required SC : {0}",
"ClassRequired": "Class Required : {0}",
"Holy": "Holy: + {0}",
"Accuracy": "Accuracy: + {0}",
"Agility": "Agility: + {0}",
"DC": "DC + {0}~{1}",
"MC": "MC + {0}~{1}",
"SC": "SC + {0}~{1}",
"Durability": "Durability:",
"Weight": "W:",
"AC": "AC + {0}~{1}",
"MAC": "MAC + {0}~{1}",
"Luck": "Luck + {0}",
"DeleteCharacter": "Are you sure you want to Delete the character {0}",
"CharacterDeleted": "Your character was deleted successfully.",
"CharacterCreated": "Your character was created successfully.",
"Resolution": "Resolution",
"Autostart": "Auto start",
"Usrname": "Username",
"Password": "Password",
"ShuttingDown": "Disconnected: Server is shutting down.",
"MaxCombine": "Max Combine Count : {0}{1}Shift + Left click to split the stack",
"Count": " Count {0}",
"ExtraSlots8": "Are you sure you would like to buy 8 extra slots for 1,000,000 gold? Next purchase you can unlock 4 extra slots up to a maximum of 40 slots.",
"ExtraSlots4": "Are you sure you would like to unlock 4 extra slots? for gold: {0:###,###}",
"Chat_All": "All",
"Chat_Short": "Shout",
"Chat_Whisper": "Whisper",
"Chat_Lover": "Lover",
"Chat_Mentor": "Mentor",
"Chat_Group": "Group",
"Chat_Guild": "Guild",
"ExpandedStorageLocked": "Expanded Storage Locked",
"ExtraStorage": "Would you like to rent extra storage for 10 days at a cost of 1,000,000 gold?",
"ExtendYourRentalPeriod": "Would you like to extend your rental period for 10 days at a cost of 1,000,000 gold?",
"CannotLeaveGame": "Cannot leave game for {0} seconds",
"SelectKey": "Select the Key for: {0}",
"WeaponSpiritFire": "Your weapon is glowed by spirit of fire.",
"SpiritsFireDisappeared": "The spirits of fire disappeared.",
"WeddingRing": "WeddingRing",
"DropAmount": "Drop Amount:",
"LowMana": "Not Enough Mana to cast.",
"NoCreatures": "You do not own any creatures.",
"NoMount": "You do not own a mount.",
"NoFishingRod": "You are not holding a fishing rod.",
"AttemptingConnect": "Attempting to connect to the server.{0}Attempt:{1}",
"CreatingCharactersDisabled": "Creating new characters is currently disabled.",
"InvalidCharacterName": "Your Character Name is not acceptable.",
"NoClass": "The class you selected does not exist. Contact a GM for assistance.",
"ToManyCharacters": "You cannot make anymore then {0} Characters.",
"CharacterNameExists": "A Character with this name already exists.",
"WarriorsDes": "Warriors are a class of great strength and vitality. They are not easily killed in battle and have the advantage of being able to use a variety of heavy weapons and Armour. Therefore, Warriors favor attacks that are based on melee physical damage. They are weak in ranged attacks, however the variety of equipment that are developed specifically for Warriors complement their weakness in ranged combat.",
"WizardDes": "Wizards are a class of low strength and stamina, but have the ability to use powerful spells. Their offensive spells are very effective, but because it takes time to cast these spells, they're likely to leave themselves open for enemy's attacks. Therefore, the physically weak wizards must aim to attack their enemies from a safe distance.",
"TaoistDes": "Taoists are well disciplined in the study of Astronomy, Medicine, and others aside from Mu-Gong. Rather then directly engaging the enemies, their specialty lies in assisting their allies with support. Taoists can summon powerful creatures and have a high resistance to magic, and is a class with well balanced offensive and defensive abilities.",
"AssassinDes": "Assassins are members of a secret organization and their history is relatively unknown. They're capable of hiding themselves and performing attacks while being unseen by others, which naturally makes them excellent at making fast kills. It is necessary for them to avoid being in battles with multiple enemies due to their weak vitality and strength.",
"ArcherDes": "Archers are a class of great accuracy and strength, using their powerful skills with bows to deal extraordinary damage from range. Much like wizards, they rely on their keen instincts to dodge oncoming attacks as they tend to leave themselves open to frontal attacks. However, their physical prowess and deadly aim allows them to instil fear into anyone they hit.",
"DateSent": "Date Sent : {0}",
"Send": "Send",
"Reply": "Reply",
"Read": "Read",
"Delete": "Delete",
"BlockList": "Block List",
"EnterMailToName": "Please enter the name of the person you would like to mail.",
"AddFriend": "Add",
"RemoveFriend": "Remove",
"FriendMemo": "Memo",
"FriendMail": "Mail",
"FriendWhisper": "Whisper",
"FriendEnterAddName": "Please enter the name of the person you would like to Add.",
"FriendEnterBlockName": "Please enter the name of the person you would like to Block.",
"AddMentor": "Add Mentor",
"RemoveMentorMentee": "Remove Mentor/Mentee",
"MentorRequests": "Allow/Disallow Mentor Requests",
"MentorEnterName": "Please enter the name of the person you would like to be your Mentor.",
"RestedBuff": "Rested{0}Increases Exp Rate by {1}%{2}",
"ItemTypeWeapon": "Weapon",
"ItemTypeArmour": "Armour",
"ItemTypeHelmet": "Helmet",
"ItemTypeNecklace": "Necklace",
"ItemTypeBracelet": "Bracelet",
"ItemTypeRing": "Ring",
"ItemTypeAmulet": "Amulet",
"ItemTypeBelt": "Belt",
"ItemTypeBoots": "Boots",
"ItemTypeStone": "Stone",
"ItemTypeTorch": "Torch",
"ItemTypePotion": "Potion",
"ItemTypeOre": "Ore",
"ItemTypeMeat": "Meat",
"ItemTypeCraftingMaterial": "CraftingMaterial",
"ItemTypeScroll": "Scroll",
"ItemTypeGem": "Gem",
"ItemTypeMount": "Mount",
"ItemTypeBook": "Book",
"ItemTypeScript": "Script",
"ItemTypeReins": "Reins",
"ItemTypeBells": "Bells",
"ItemTypeSaddle": "Saddle",
"ItemTypeRibbon": "Ribbon",
"ItemTypeMask": "Mask",
"ItemTypeFood": "Food",
"ItemTypeHook": "Hook",
"ItemTypeFloat": "Float",
"ItemTypeBait": "Bait",
"ItemTypeFinder": "Finder",
"ItemTypeReel": "Reel",
"ItemTypeFish": "Fish",
"ItemTypeQuest": "Quest",
"ItemTypeAwakening": "Awakening",
"ItemTypePets": "Pets",
"ItemTypeTransform": "Transform",
"ItemTypeDeco": "Deco",
"ItemTypeMonsterSpawn": "SpawnEgg",
"ItemTypeSealedHero": "SealedHero",
"ItemGradeCommon": "Common",
"ItemGradeRare": "Rare",
"ItemGradeLegendary": "Legendary",
"ItemGradeMythical": "Mythical",
"ItemGradeHeroic": "Heroic",
"NoAccountID": "The AccountID does not exist.",
"IncorrectPasswordAccountID": "Incorrect Password and AccountID combination.",
"GroupSwitch": "Allow/Disallow Group Requests",
"GroupAdd": "Add",
"GroupRemove": "Remove",
"GroupAddEnterName": "Please enter the name of the person you wish to add.",
"GroupRemoveEnterName": "Please enter the name of the person you wish to remove.",
"TooHeavyToHold": "It is too heavy to Hold.",
"SwitchMarriage": "Allow/Block Marriage",
"RequestMarriage": "Request Marriage",
"RequestDivorce": "Request Divorce",
"MailLover": "Mail Lover",
"WhisperLover": "Whisper Lover",
"EndStreamOldVersion": "End of stream found. Host is likely using a pre version 1.1.0.0 patch system",
"TooManyErrors": "Too many problems occured, no longer displaying future errors",
"ErrorSavingFile": "Problem occured saving this file: ",
"FileDownload_Failure": "Failed to download file: {0}",
"LauncherHostSettingFormatError": "Please Check Launcher HOST Setting is formatted correctly\nCan be caused by missing or extra slashes and spelling mistakes.\nThis error can be ignored if patching is not required.",
"LauncherBrowserFormatError": "Please Check Launcher BROWSER Setting is formatted correctly.\nCan be caused by missing or extra slashes and spelling mistakes.\nThis error can be ignored.",
"YouMustSelectPaymentType": "You MUST select a payment type!",
"ConfirmBuyItemCredits": "Are you sure would you like to buy {1} x \n{0}({3}) for {2} Credits?",
"YouCantAffordSelectedItem": "You can't afford the selected item.",
"ConfirmPurchaseItemGold": "Are you sure would you like to buy{1} x \n{0}({3}) for {2} Gold?",
"PricePearl": "Price: {0} pearl{1}",
"PriceGold": "Price: {0} gold",
"UnableLinkItemMessageTooLong": "Unable to link item, message exceeds allowed length",
"NoRoomToSplitStack": "No room to split stack.",
"SplitAmount": "Split Amount:",
"PurchaseAmount": "Purchase Amount:",
"Purchase": "Purchase",
"ValueGold": "Value: {0:#,##0} Gold",
"AreYouWantUsePotion": "Are you use you want to use this Potion?",
"YouWantCombineItems": "Do you want to try and combine these items?",
"YouCannotSwapItems": "You cannot swap items.",
"InsufficientRightsRetrieveItems": "Insufficient rights to retrieve items.",
"UnableRemoveLockedItem": "Unable to remove locked item, cancel item rental and try again.",
"InsufficientRightsStoreItems": "Insufficient rights to store items.",
"YouCannotMailItem": "You cannot mail this item.",
"TooHeavyToTransfer": "Too heavy to transfer.",
"WarriorsCannotUseItem": "Warriors cannot use this item.",
"WizardsCannotUseItem": "Wizards cannot use this item.",
"TaoistsCannotUseItem": "Taoists cannot use this item.",
"AssassinsCannotUseItem": "Assassins cannot use this item.",
"ArchersCannotUseItem": "Archers cannot use this item.",
"LowAC": "You do not have enough AC.",
"LowMAC": "You do not have enough MAC.",
"YouExceededMaxLevel": "You have exceeded the maximum level.",
"YouDoNotHaveEnoughBaseAC": "You do not have enough Base AC.",
"YouDoNotHaveEnoughBaseMac": "You do not have enough Base MAC.",
"YouLackBaseDC": "You do not have enough Base DC.",
"YouLackBaseMC": "You do not have enough Base MC.",
"YouLackBaseSC": "You do not have enough Base SC.",
"YouDoNotHaveMountEquipped": "You do not have a mount equipped.",
"YouDoNotHaveFishingRodEquipped": "You do not have a fishing rod equipped.",
"YouDoNotHaveEnoughBaseMAC": "You do not have enough Base MAC.",
"YouNotEnoughBaseDC": "You do not have enough Base DC.",
"YouNotEnoughBaseMC": "You do not have enough Base MC.",
"YouDoNotHaveEnoughBaseSC": "You do not have enough Base SC.",
"ItIsTooHeavyToWear": "It is too heavy to wear.",
"DisconnectedAnotherUserLogged": "Disconnected: Another user logged onto your account.",
"DisconnectedPacketError": "Disconnected: Packet Error.",
"DisconnectedServerCrashed": "Disconnected: Server Crashed.",
"DisconnectedKickedByAdmin": "Disconnected: Kicked by Admin.",
"DisconnectedMaxConnectionsReached": "Disconnected: Maximum connections reached.",
"ErrorConnectingToServer": "Error Connecting to Server",
"MaximumConnectionAttemptsReached": "Maximum Connection Attempts Reached: {0}\nPlease try again later or check your connection settings.",
"LostConnectionWithServer": "Lost connection with the server.",
"OwnerHero": "{0}'s Hero",
"GoldAmount": "Gold ({0:###,###,###})",
"CreatingNewCharactersDisabled": "Creating new characters is currently disabled.",
"YourCharacterNameNotAcceptable": "Your Character Name is not acceptable.",
"GenderNotExistContactGM": "The gender you selected does not exist.\n Contact a GM for assistance.",
"ClassNotExistContactGM": "The class you selected does not exist.\n Contact a GM for assistance.",
"YouCannotMakeMoreCharacters": "You cannot make anymore then {0} Characters.",
"YourCharacterCreatedSuccessfully": "Your character was created successfully.",
"ConfirmDeleteCharacter": "Are you sure you want to Delete the character {0}?",
"PleaseEnterCharacterName": "Please enter the characters name.",
"IncorrectEntry": "Incorrect Entry.",
"DeletingCharactersDisabled": "Deleting characters is currently disabled.",
"SelectedCharacterNotExist": "The character you selected does not exist.\n Contact a GM for assistance.",
"YourCharacterDeletedSuccessfully": "Your character was deleted successfully.",
"CannotLoginCharacterSeconds": "You cannot log onto this character for another {0} seconds.",
"AccountBannedReasonExpiryDuration": "This account is banned.\n\nReason: {0}\nExpiryDate: {1}\nDuration: {2:#,##0} Hours, {3} Minutes, {4} Seconds",
"StartingGameDisabled": "Starting the game is currently disabled.",
"YouNotLoggedIn": "You are not logged in.",
"YourCharacterNotFound": "Your character could not be found.",
"NoActiveMapOrStartPointFound": "No active map and/or start point found.",
"SearchForNPCs": "Search for NPCs",
"TeleportToNpcForGold": "Teleport to this NPC for {0} Gold?",
"NotEnoughGold": "Not enough Gold.",
"CouldNotFindPath": "Could not find suitable path.",
"Invisible": "-Invisible\n",
"Superman": "-Superman",
"Observer": "-Observer",
"AgressiveFullDamageCantShootOverWalls": "Agressive (Full damage)\nCan't shoot over walls.\n",
"TrickShotMinimalDamage": "Trick shot (Minimal damage)\nCan shoot over walls.\n",
"GroupModeMediumDamageDontStealAgro": "Group Mode (Medium damage)\nDon't steal agro.\n",
"InvisibleToManyMonsters": "Invisible to many monsters.\n",
"InvisibleToPlayersAndMonstersAtDistance": "Invisible to players and many\nmonsters when at a distance.\n",
"ChanceGainHpWhenAttacked": "{0}% chance to gain {1} HP when attacked.\n",
"InvisibleToManyMonstersAbleToMove": "Invisible to many monsters and able to move.\n",
"GivesVampiricAbility": "Gives you a vampiric ability\nthat can be released with\ncertain skills.\n",
"GivesPoisonAbility": "Gives you a poison ability\nthat can be released with\ncertain skills.\n",
"IncreaseElementExtractionChance": "Increases chance on element extraction.\n",
"IncreaseMcAndConsumption": "Increases MC by: {0}-{1}.\nIncreases consumption by {2}%.\n",
"DisguisesYourAppearance": "Disguises your appearance.\n",
"LearnSkillPointsTwiceAsQuick": "Learn skill points twice as quick.\n",
"ReducesVisibility": "Reduces visibility\n",
"GuildMemberBoost": "A boost provided to members of your guild.\n",
"Decreases": "Decreases",
"Increases": "Increases",
"BuffEffect": "{0} {1} by: {2}{3}.\n",
"CasterName": "\nCaster: {0}",
"ActiveBuffs": "Active Buffs\n",
"Seconds": "seconds",
"Second": "second",
"ReceiveDamageEveryTick": "Recieve {0} damage every {1} {2}.\n",
"ReducesArmourRatePerTick": "Reduces armour rate by 10% every {0} {1}.\n",
"ReducesMovementSpeed": "Reduces movement speed.\n",
"PreventsCastingMovingAttacking": "Prevents casting, movin\nand attacking.\n",
"DamageReceivedIncrease": "Increases damage received by 20% every {0} {1}.\n",
"PreventsMoveAndAttack": "Prevents moving and attacking.\n",
"TickingTimeBomb": "Ticking time bomb.\n",
"RecieveDamageEveryTime": "Recieve {0} damage every {1} {2}.\n",
"PreventsMoveAttackCancelOnHit": "Prevents moving and attacking.\nCancels when attacked\n",
"CausesTemporaryBlindness": "Causes temporary blindness.\n",
"PreventsAttacking": "Prevents attacking.\n",
"ActivePoisons": "Active Poisons\n",
"ConfirmRemoveItem": "Are you sure you wish to remove '{0}'?",
"PlayerNotOnline": "Player is not online",
"BuyWithGold": "Buy with Gold",
"BuyItemsWithGold": "Buy item(s) with Gold.",
"BuyWithCredits": "Buy with Credits",
"BuyItemsWithCredits": "Buy item(s) with Credits.",
"GroupHasMaxMembers": "Your group already has the maximum number of members.",
"YouAreNotGroupLeader": "You are not the leader of your group.",
"ShowOffline": "Show Offline",
"GuildNameLevelMembers": "Guild Name\n\nLevel\n\nMembers",
"RecruitMember": "Recruit Member",
"EditRank": "Edit Rank",
"SelectRank": "Select Rank",
"InsufficientPointsAvailable": "Insufficient points available.",
"GuildLevelTooLow": "Guild level too low.",
"GuildRankNoBuffActivation": "Guild rank does not allow buff activation.",
"BuffIsActive": "Buff is still active.",
"GuildFundsInsufficient": "Insufficient guild funds.",
"InsufficientLevel": "Insufficient Level",
"Available": "Available",
"CountingDown": "Counting down.",
"Expired": "Expired",
"Obtained": "Obtained",
"Active": "Active",
"Inactive": "Inactive",
"ValueByOwnerPercent": "{0} {1} by: {2}{3}.\n",
"MinimumGuildLevel": "Minimum Guild Level: ",
"PointsRequired": "Points Required: ",
"ActivationCostGold": "Activation Cost: {0} gold.",
"TimeRemainingMinutes": "Time Remaining: {0} minutes",
"BuffLengthMinutes": "Buff Length: {0} minutes.",
"ConfirmChangeRank": "Are you sure you want to change the rank of {0} to {1}?",
"ConfirmKickPlayer": "Are you sure you want to kick {0}?",
"Online": "Online",
"Today": "Today",
"Yesterday": "Yesterday",
"DaysAgo": "{0} Days ago",
"ConfirmCreateNewRank": "Are you sure you want to create a new rank?",
"RankTitle": "Rank-{0}",
"Deposit": "Deposit",
"GoldToRetrieve": "Gold to retrieve:",
"ExitButton": "Exit",
"PageBack": "Page Back",
"PageForward": "Page Forward",
"MailGuildLeader": "Mail a Guild Leader",
"OwningGuild": "Owning Guild",
"GuildLeaders": "Guild Leaders",
"GTStatus": "GT Status",
"GTPrice": "GT Price",
"None": "None",
"AndPlaceholder": " and {0}",
"SalePending": "Sale pending",
"ForSale": "For Sale",
"Unavailable": "Unavailable",
"ShortcutInformation": "Shortcut Information",
"ChatShortcuts": "Chat Shortcuts",
"Movements": "Movements",
"Attacking": "Attacking",
"CollectingItems": "Collecting Items",
"Health": "Health",
"Skills": "Skills",
"Mana": "Mana",
"Chatting": "Chatting",
"Groups": "Groups",
"Purchasing": "Purchasing",
"Selling": "Selling",
"Repairing": "Repairing",
"Trading": "Trading",
"Inspecting": "Inspecting",
"Statistics": "Statistics",
"Quests": "Quests",
"Mounts": "Mounts",
"Fishing": "Fishing",
"GemsAndOrbs": "Gems and Orbs",
"Heroes": "Heroes",
"GuildBuffs": "Guild Buffs",
"Awakening": "Awakening",
"ExitGame": "Exit the game",
"SkillButtons": "Skill buttons",
"InventoryWindowOpenClose": "Inventory window (open / close)",
"LogOut": "Log out",
"StatusWindowOpenClose": "Status window (open / close)",
"SkillWindowOpenClose": "Skill window (open / close)",
"GroupWindowOpenClose": "Group window (open / close)",
"TradeWindowOpenClose": "Trade window (open / close)",
"FriendWindowOpenClose": "Friend window (open / close)",
"MinimapWindowOpenClose": "Minimap window (open / close)",
"GuildWindowOpenClose": "Guild window (open / close)",
"GameshopWindowOpenClose": "Gameshop window (open / close)",
"EngagementWindowOpenClose": "Engagement window (open / close)",
"BeltWindowOpenClose": "Belt window (open / close)",
"OptionWindowOpenClose": "Option window (open / close)",
"HelpWindowOpenClose": "Help window (open / close)",
"MountDismountRide": "Mount / Dismount ride",
"LockSpellOnTargetNotCursor": "Lock spell onto target not cursor location",
"TogglePetAttackPet": "Toggle pet attack pet",
"TogglePlayerAttackMode": "Toggle player attack mode",
"PeaceModeAttackMonstersOnly": "Peace Mode - Attack monsters only",
"GroupModeAttackExceptMembers": "Group Mode - Attack all subjects except your group members",
"GuildModeAttackExceptMembers": "Guild Mode - Attack all subjects except your guild members",
"GoodEvilModeAttackPKAndMonsters": "Good/Evil Mode - Attack PK players and monsters only",
"AllAttackModeAllSubjects": "All Attack Mode - Attack all subjects",
"ShowFieldMap": "Show the field map",
"ShowSkillBar": "Show the skill bar",
"AutoRunOnOff": "Auto run on / off",
"ShowHideInterface": "Show / Hide interface",
"HighlightPickupItems": "Highlight / Pickup Items",
"CtrlRightClick": "Ctrl + Right Click",
"ShowOtherPlayersKits": "Show other players kits",
"ScreenCapture": "Screen Capture",
"OpenCloseFishingWindow": "Open / Close fishing window",
"MentorWindowOpenClose": "Mentor window (open / close)",
"CreaturePickupMultiMouseTarget": "Creature Pickup (Multi Mouse Target)",
"CreaturePickupSingleMouseTarget": "Creature Pickup (Single Mouse Target)",
"CommandWhisperOthers": "Command to whisper to others",
"CommandShoutNearby": "Command to shout to others nearby",
"CommandGuildChat": "Command to guild chat",
"Shortcuts": "Shortcuts",
"Information": "Information",
"EnterValue": "Enter a value",
"HeroBehaviourFormat": "Hero Behaviour: {0}",
"MakeActiveHero": "Would you like to make {0} your active Hero?",
"NoProduction": "No Production.",
"NeededBy": "Needed {0}",
"PleaseEnterCreatureNewName": "Please enter a new name for the creature.",
"CreatureNameLengthRange": "Creature name must be between {0} and {1} characters.",
"EnterCreatureNameForVerification": "Please enter the creature's name for verification.",
"VerificationFailed": "Verification Failed!!",
"CanPickupItems": "Can pickup items ({0}{1}).",
"CanProduceBlackStones": "Can produce BlackStones.",
"CanProducePearlsBuyCreatureItems": "Can produce Pearls, used to buy Creature items.",
"FoodBuff": "FoodBuff: {0}",
"All": "All",
"Common": "Common",
"Rare": "Rare",
"Mythical": "Mythical",
"Legendary": "Legendary",
"Heroic": "Heroic",
"AllItems": "All Items",
"Weapons": "Weapons",
"Armours": "Armours",
"Helmets": "Helmets",
"Boots": "Boots",
"Belts": "Belts",
"Jewelry": "Jewelry",
"Others": "Others",
"RentalFee": "Rental fee:",
"RentalFeeGoldAmount": "Rental Fee: {0:###,###,##0}",
"RentItemDurationQuestion": "How long would you like to rent {0} to {1} for? (1 to 30 days).",
"RentalPeriodDays": "Rental Period: {0} Days",
"RentalPeriodZeroDays": "Rental Period: 0 Days",
"KeyboardSettings": "Keyboard Settings",
"KeyboardSettingsResetDefault": "Keyboard settings have been reset back to default.",
"AssignRuleStrict": "Assign Rule: Strict",
"AssignRuleRelaxed": "Assign Rule: Relaxed",
"Type": "TYPE",
"Sender": "SENDER",
"Message": "MESSAGE",
"ParcelContainsItemsOrGoldDeleteConfirm": "This parcel contains items or gold. Are you sure you want to delete it?",
"ReportBug": "Report Bug",
"SendAmount": "Send Amount:",
"SkillModeTilde": "[Skill Mode: ~]",
"SkillModeCtrl": "[Skill Mode: Ctrl]",
"Report": "Report",
"SkillMpCooldownKey": "{0}\nMP: {1}\nCooldown: {2}\nKey: {3}",
"MiniMapKey": "MiniMap ({0})",
"InviteToGroup": "Invite to Group",
"YouNotGroupLeader": "You are not the leader of your group.",
"AddToFriendsList": "Add to Friends List",
"SendMail": "Send Mail",
"Trade": "Trade",
"Observe": "Observe",
"PlayerDisabledObservation": "That player has disabled observation.",
"HpMpMode1": "[HP/MP Mode 1]",
"HpMpMode2": "[HP/MP Mode 2]",
"NewMovementStyle": "[New Movement Style]",
"OldMovementStyle": "[Old Movement Style]",
"KeyboardKeybind": "Keyboard ({0})",
"FencingSkillDescription": "Fencing\n\nPassive Skill\n\nHitting accuracy will be increased in accordance\nwith practice level.\n\nCurrent Skill Level {0}\nNext Level {1}",
"SlayingSkillDescription": "Slaying\n\nPassive Skill\n\nHitting accuracy and destructive power will\nbe increased in accordance with practice level.\n\nCurrent Skill Level {0}\nNext Level {1}",
"ThrustingSkillDescription": "Thrusting\n\nToggle Skill\n\nIncreases the reach of your hits destructive power\nwill increase in accordance with practice level.\nCurrent Skill Level {0}\nNext Level {1}",
"RageSkillDescription": "Rage\n\nBuff Skill\nMana Cost {2}\n\nEnhances your inner force to increase its power\nfor a certain time. Attack power and duration time\nwill depend on the skill level. Once the skill has been used\n you will have to wait to use it again.\n\nCurrent Skill Level {0}\nNext Level {1}",
"ProtectionFieldSkillDescription": "Protection Field\n\nBuff Skill\nMana Cost {2}\n\nConcentrates inner force and spreads it to all\n the parts of your body. This will enhance the\nprotection from enemies. Defense power and duration\nwill be depend on the skill level. Once the skill\n has been used, you will have to wait to use it again.\n\nCurrent Skill Level {0}\nNext Level {1}",
"HalfMoonSkillDescription": "Half Moon\n\nToggle Skill\nMana Cost: {2} per attack\n\nCause damage to enemies in a semi circle around the caster with\nthe shock waves from your fast moving weapon.\n\nCurrent Skill Level {0}\nNext Level {1}",
"FlamingSwordSkillDescription": "Flaming Sword\n\nActive Skill\nMana Cost: {2}\n\nSummons the spirit of fire in to your next attack, causing\na devastating blow to the target.\n\nCurrent Skill Level {0}\nNext Level {1}",
"ShoulderDashSkillDescription": "Shoulder Dash\n\nActive Skill\nMana Cost: {2}\n\nA warrior can push a target backwards by charging\nthem with his shoulder, inflicting damage\nif they hit any obstacle.\n\nCurrent Skill Level {0}\nNext Level {1}",
"CrossHalfMoonSkillDescription": "Cross Half-Moon\n\nToggle Skill\nMana Cost: {2} per attack\n\nA warrior uses two powerful waves of Half Moon\nto inflict damage on all mobs stood next to them.\n\nCurrent Skill Level {0}\nNext Level {1}",
"TwinDrakeBladeSkillDescription": "Twin Drake Blade\n\nActive Skill\nMana Cost {2}\n\nThe art of making multiple power attacks.\nIt has a low chance of stunning a target temporarily.\nStunned monsters receive an additional 50% damage.\n\nCurrent Skill Level {0}\nNext Level {1}",
"EntrapmentSkillDescription": "Entrapment\n\nActive Skill\nMana Cost: {2}\n\nParalyses mobs and draws them to the caster.\nCurrent Skill Level {0}\nNext Level {1}",
"LionRoarSkillDescription": "Lion Roar\n\nActive Skill\nMana Cost: {2}\n\nParalyses enemies around the caster, duration increases with skill level.\nCurrent Skill Level {0}\nNext Level {1}",
"CounterAttackSkillDescription": "Counter Attack\n\nBuff Skill\nMana Cost {2}\n\nIncreases AC and AMC for a short period of time\nChance to defend an attack and counter.\n\nCurrent Skill Level {0}\nNext Level {1}",
"ImmortalSkinSkillDescription": "Immortal Skin\n\nBuff Skill\nMana Cost {2}\n\nIncrease defence to reduce attacks.\n\nCurrent Skill Level {0}\nNext Level {1}",
"FurySkillDescription": "Fury\n\nBuff Skill\nMana Cost {2}\n\nIncreases the warriors Accuracy for a set period of time.\n\nCurrent Skill Level {0}\nNext Level {1}",
"SlashingBurstSkillDescription": "Slashing Burst\n\nActive Skill\nMana Cost: {2}\n\nAllows The Warrior to Jump 1 Space Over an Object or Monster.\n\nCurrent Skill Level {0}\nNext Level {1}",
"BladeAvalancheSkillDescription": "Blade Avalanche\n\nActive Skill\nMana Cost {2}\n\nHurls blades in three directions in front of the\ncaster, creating a deadly storm of metal\n\nCurrent Skill Level {0}\nNext Level {1}",
"FireballSkillDescription": "Fireball \n\nInstant Casting\nMana Cost {2}\n\nElements of fire are gathered to form\na fireball. Throw at monsters for damage.\n\nCurrent Skill Level {0}\nNext Level {1}",
"ThunderboltSkillDescription": "Thunderbolt\n\nInstant Casting\nMana Cost {2}\n\nStrikes the foe with a lightning bolt \ninflicting high damage.\n\nCurrent Skill Level {0}\nNext Level {1}",
"GreatFireballSkillDescription": "Great Fireball\n\nInstant Casting\nMana Cost {2}\n\nSuccessor to fire ball, Great Fire Ball causes increased\ndamage to targets.\n\nCurrent Skill Level {0}\nNext Level {1}",
"RepulsionSkillDescription": "Repulsion\n\nInstant Casting\nMana Cost {2}\n\nPush away surrounding targets using the power of fire.\n\nCurrent Skill Level {0}\nNext Level {1}",
"HellfireSkillDescription": "Hellfire\n\nInstant Casting\nMana Cost {2}\n\nShoots out a streak of fire attack\nthe monster in front.\n\nCurrent Skill Level {0}\nNext Level {1}",
"LightningSkillDescription": "Lightning\n\nInstant Casting\nMana Cost {2}\n\nShoots out a steak of lightning to attack\nthe monster in front.\n\nCurrent Skill Level {0}\nNext Level {1}",
"ElectricShockSkillDescription": "Electric Shock\n\nInstant Casting\nMana Cost {2}\n\nStrong shock wave hits the mob and the\nmob will not be able to move or the mob\nwill get confused and fight for you.\n\nCurrent Skill Level {0}\nNext Level {1}",
"TeleportSkillDescription": "Teleport\n\nInstant Casting\nMana Cost {2}\n\nTeleport to a random spot.\n\nCurrent Skill Level {0}\nNext Level {1}",
"FireWallSkillDescription": "Fire Wall\n\nInstant Casting\nMana Cost {2}\n\nThis skill will build a fire wall at a designated\nspot to attack the monster passing the area.\n\nCurrent Skill Level {0}\nNext Level {1}",
"FireBangSkillDescription": "Fire Bang\n\nInstant Casting\nMana Cost {2}\n\nFire Bang will burst out fire at a designated spot to\nburn all the monster within the area.\n\nCurrent Skill Level {0}\nNext Level {1}",
"ThunderstormSkillDescription": "Thunderstorm \n\nInstant Casting\nMana Cost {2}\n\nCreates a thunder storm around the caster causing\ndamage to all Undead enemies with its range.\n\nCurrent Skill Level {0}\nNext Level {1}",
"MagicShieldSkillDescription": "Magic Shield\n\nInstant Casting\nMana Cost {2}\n\nCreates a protective field around the caster that absorbs damage.\n\nCurrent Skill Level {0}\nNext Level {1}",
"TurnUndeadSkillDescription": "Turn Undead\n\nInstant Casting\nMana Cost {2}\n\nChance to kill any undead target that meets the level requirements, in a single cast.\n\nCurrent Skill Level {0}\nNext Level {1}",
"IceStormSkillDescription": "Ice Storm\n\nInstant Castin\nMana Cost {2}\n\nThis skill will make an ice storm with in a designated \narea to attack the monsters with in\n\nCurrent Skill Level {0}\nNext Level {1}",
"FlameDisruptorSkillDescription": "Flame Disruptor\n\nInstant Casting\nMana Cost {2}\n\nFlame from the underground will be brought\ninto surface to attack the mobs.\n\nCurrent Skill Level {0}\nNext Level {1}",
"FrostCrunchSkillDescription": "Frost Crunch\n\nInstant Casting\nMana Cost {2}\n\nFreeze the elements in the air around the \nmonster to slow them down\n\nCurrent Skill Level {0}\nNext Level {1}",
"MirroringSkillDescription": "Mirroring\n\nInstant Casting\nMana Cost {2}\n\nCreate a mirror image of yourself to attack\nthe monsters together\n\nCurrent Skill Level {0}\nNext Level {1}",
"FlameFieldSkillDescription": "Flame Field\n\nInstant Casting\nMana Cost {2}\n\nA powerful spell of fire is used to \ndamage surrounding enemies.\n\nCurrent Skill Level {0}\nNext Level {1}",
"VampirismSkillDescription": "Vampirism\n\nInstant Casting\nMana Cost {2}\n\nUsing Mp take away monsters Hp to\nincrease your Hp.\n\nCurrent Skill Level {0}\nNext Level {1}",
"BlizzardSkillDescription": "Blizzard\n\nChannelling Casting\nMana Cost {2}\n\nConcentrate inner force and spreads it to all\nthe parts of your body.This will enhance the\nprotection from enemies. Defence power and duration\ntime will depend on the skill level. Once the skill\nhas been used, you will have to wait to use it again.\n\nCurrent Skill Level {0}\nNext Level {1}",
"MeteorStrikeSkillDescription": "Meteor Strike\n\nChannelling Casting\nMana Cost {2}\n\nAttacks all monsters within 5x5 square area with lumps \nof fire falling from the sky.\n\nCurrent Skill Level {0}\nNext Level {1}",
"IceThrustSkillDescription": "Ice Thrust\n\nInstant Casting\nMana Cost {2}\n\nAttack monsters by creating an ice pillar.\n\nCurrent Skill Level {0}\nNext Level {1}",
"MagicBoosterSkillDescription": "Magic Booster\n\nLasting Effect\nMana Cost {2}\n\nIncrease magical damage, but consume additional MP.\n\nCurrent Skill Level {0}\nNext Level {1}",
"FastMoveSkillDescription": "Fast Move\n\nChannelling Casting\nMana Cost {2}\n\nIncrease movement with rooted skills.\n\nCurrent Skill Level {0}\nNext Level {1}",
"StormEscapeSkillDescription": "Storm Escape\n\nChannelling Casting\nMana Cost {2}\n\nParalyze nearby enemies and teleport to the designated location.\n\nCurrent Skill Level {0}\nNext Level {1}",
"BlinkSkillDescription": "Blink\n\nInstant Casting\nMana Cost {2}\n\nTeleport to a random spot near you.\n\nCurrent Skill Level {0}\nNext Level {1}",
"SpiritSwordSkillDescription": "Spirit Sword\n\nIncreases the chance of hitting the target in\n melee combat.\nPassive Skill\n\nCurrent Skill Level {0}\nNext Level {1}",
"HealingSkillDescription": "Healing\n\nInstant Casting\nMana Cost {2}\n\nHeals a single target \nrecovering HP over time.\n\nCurrent Skill Level {0}\nNext Level {1}",
"PoisoningSkillDescription": "Poisoning\n\nInstant Casting\nMana Cost {2}\n\nRequired Items: Poison Powder\n\nThrow poison at mobs to weaken them.\nUse green poison to weaken Hp.\nUse red poison to weaken defense.\n\nCurrent Skill Level {0}\nNext Level {1}",
"SoulFireBallSkillDescription": "Soul FireBall\n\nInstant Casting\nMana Cost {2}\n\nRequired Items: Amulet\n\nPut power into a scroll and throw it at \na mob. The scroll will burst into fire.\n\nCurrent Skill Level {0}\nNext Level {1}",
"SoulShieldSkillDescription": "Soul Shield\n\nInstant Casting\nMana Cost {2}\n\nRequired Items: Amulet\n\nBless caster and party members to strengthen their magic\ndefence.\n\nCurrent Skill Level {0}\nNext Level {1}",
"BlessedArmourSkillDescription": "Blessed Armour\n\nInstant Casting\nMana Cost {2}\n\nRequired Items: Amulet\n\nBless caster and party members to strengthen their defence.\n\nCurrent Skill Level {0}\nNext Level {1}",
"TrapHexagonSkillDescription": "Trap Hexagon\n\nInstant Casting\nMana Cost {2}\n\nRequired Items: Amulet\n\nTrap the monster with this magical power\n to stop them from moving. Any damages\nfrom outside source will allow the monsters\nto move again.\n\nCurrent Skill Level {0}\nNext Level {1}",
"SummonSkeletonSkillDescription": "Summon Skeleton\n\nInstant Casting\nMana Cost {2}\n\nSummons a Powerful AOE Skeleton, Which will Fight Side By Side With You\n\nRequired Items: Amulet.\n\nCurrent Skill Level {0}\nNext Level {1}",
"HidingSkillDescription": "Hiding\n\nInstant Casting\nMana Cost {2}\n\nRequired Items: Amulet\n\nMobs will not be able to spot you for a short\nmoment.Mobs will notice you if you start\nto move around.\n\nCurrent Skill Level {0}\nNext Level {1}",
"MassHidingSkillDescription": "Mass-Hiding\n\nInstant Casting\nMana Cost {2}\n\nRequired Items: Amulet\n\nMobs will not be able to spot you or your \nparty members for a short moment. \nMobs will notice you and your party if \nyou start to move around.\n\nCurrent Skill Level {0}\nNext Level {1}",
"RevelationSkillDescription": "Revelation\n\nInstant Casting\nMana Cost {2}\n\nYou will be able to read Hp of others\n\nCurrent Skill Level {0}\nNext Level {1}",
"MassHealingSkillDescription": "Mass-Healing\n\nInstant Casting\nMana Cost {2}\n\nHeal all injured players in the specified\narea by surrounding them with mana.\n\nCurrent Skill Level {0}\nNext Level {1}",
"SummonShinsuSkillDescription": "Summon Shinsu\n\nInstant Casting\nMana Cost {2}\n\nSummons a Dog, That Will fight Side By Side with you.\nRequired Items: Amulet.\n\nCurrent Skill Level {0}\nNext Level {1}",
"UltimateEnhancerSkillDescription": "Ultimate Enhancer\n\nInstant Casting\nMana Cost {2}\n\nRequired Items: Amulet\n\nAbsorb the energy from the surroundings to increase the stats.\n\nCurrent Skill Level {0}\nNext Level {1}",
"EnergyRepulsorSkillDescription": "Energy Repulsor\n\nInstant Casting\nMana Cost {2}\n\nConcentrate your energy for one big blast to push away the monsters around you.\n\nCurrent Skill Level {0}\nNext Level {1}",
"PurificationSkillDescription": "Purification\n\nInstant Casting\nMana Cost {2}\n\nHelp others to recover from poisoning and\nparalysis using this skill.\n\nCurrent Skill Level {0}\nNext Level {1}",
"SummonHolyDevaSkillDescription": "Summon HolyDeva\n\nInstant Casting\nMana Cost {2}\n\nRequired Items: Amulet\n\nSummon a holy spirit.This holy spirit will\nuse strong thunder to attack monsters.\n\nCurrent Skill Level {0}\nNext Level {1}",
"CurseSkillDescription": "Curse\n\nInstant Casting\nMana Cost {2}\n\nRequired Items: Amulet + Poison\n\nReduces targets AttackSpeed, DC ,MC and SC.\n\nCurrent Skill Level {0}\nNext Level {1}",
"HallucinationSkillDescription": "Hallucination\n\nInstant Casting\nMana Cost {2}\n\nRequired Items: Amulet\n\nThe monster will only see hallucination \nand attack anyone on the way\n\nCurrent Skill Level {0}\nNext Level {1}",
"ReincarnationSkillDescription": "Reincarnation\n\nInstant Casting\nMana Cost {2}\n\nRequired Items: Amulet\n\nRevives a dead players\n\nCurrent Skill Level {0}\nNext Level {1}",
"PoisonCloudSkillDescription": "Poison Cloud\n\nInstant Casting\nMana Cost {2}\n\nRequired Items: GreenPoison\n\nThrow the amulet and a very strong\npoison cloud will appear in the area.\n\nCurrent Skill Level {0}\nNext Level {1}",
"EnergyShieldSkillDescription": "Energy Shield\n\nInstant Casting\nMana Cost {2}\n\nRequired Items: Amulet\n\nCastable on self and friendly targets.\nReflects a percentage of received damage, back to the attacker.\n\nCurrent Skill Level {0}\n\nNext Level {1}",
"PlagueSkillDescription": "Plague\n\nInstant Casting\nMana Cost {2}\n\nRequired Items: Amulet + Poison\n\nDecreases targets MP and inflict target with various debuffs\nExample: Stun , Curse , Poison and Slow.\n\nCurrent Skill Level {0}\nNext Level {1}",
"HealingCircleSkillDescription": "Healing Circle\n\nInstant Casting\nMana Cost {2}\n\nTreatment area friendly target, and the enemy caused spell damage.\n\nCurrent Skill Level {0}\nNext Level {1}",
"PetEnhancerSkillDescription": "Pet Enhancer\n\nInstant Casting\nMana Cost {2}\n\nStrengthening pets defence and power.\n\nCurrent Skill Level {0}\nNext Level {1}",
"FatalSwordPassiveSkillDescription": "Fatal Sword\n\nPassive Skill\n\nIncrease attack damage on the monsters.\nalso increases accuracy a little.\nPassive Skill\n\nCurrent Skill Level {0}\nNext Level {1}",
"DoubleSlashToggleSkillDescription": "Double Slash\n\nToggle Skill\nMana Cost {2} per attack\n\nSlash the monster twice in a quick motion\n\nCurrent Skill Level {0}\nNext Level {1}",
"HasteBuffSkillDescription": "Haste\n\nBuff Skill\nMana Cost {2}\n\nIncrease the attack speed\n\nCurrent Skill Level {0}\nNext Level {1}",
"FlashDashSkillDescription": "Flash Dash\n\nActive Skill\nMana Cost {2}\n\nAttack a monster with quick slash and\nparalyse the monster\n\nCurrent Skill Level {0}\nNext Level {1}",
"HeavenlySwordSkillDescription": "Heavenly Sword\n\nActive Skill\nMana Cost {2}\n\nAttack monsters with in 2 steps radius\nCurrent Skill Level {0}\nNext Level {1}",
"FireBurstSkillDescription": "Fire Burst\n\nActive Skill\nMana Cost {2}\n\nPush away mobs surrounding you\n\nCurrent Skill Level {0}\nNext Level {1}",
"TrapSkillDescription": "Trap\n\nInstant casting\nCooldown Time 60 secs\n\nMana Cost {2}\n\nTrap the monster for a short while.\n\nCurrent Skill Level {0}\nNext Level {1}",
"MoonlightSkillDescription": "Moonlight\n\nBuff Skill\nMana Cost {2}\n\nHide yourself from monster by turning invisible\nGreater damage is done when you attack monster using\nthis skill.\n\nCurrent Skill Level {0}\nNext Level {1}",
"MPEaterSkillDescription": "MP Eater\n\nPassive Skill\n\nAbsorb monsters MP to recharge casters MP\n\nCurrent Skill Level {0}\nNext Level {1}",
"SwiftFeetSkillDescription": "Swift Feet\n\nBuff Skill\nMana Cost {2}\n\nIncreased Running Speed whilst active\n\nCurrent Skill Level {0}\nNext Level {1}",
"LightBodySkillDescription": "Light Body\n\nBuff Skill\nMana Cost {2}\n\nLighten your body using this skill and move faster\n\nCurrent Skill Level {0}\nNext Level {1}",
"PoisonSwordSkillDescription": "Poison Sword\n\nActive Skill\nMana Cost {2}\n\nPoison the monsters with a slash of you\nsword.Poison effect will damage the monster\nover time.\n\nCurrent Skill Level {0}\nNext Level {1}",
"DarkBodySkillDescription": "Dark Body\n\nActive Skill\nMana Cost {2}\n\nCreate an illusion of yourself to attack\nthe monster while you become invisible.\n\nCurrent Skill Level {0}\nNext Level {1}",
"CrescentSlashSkillDescription": "Crescent Slash\n\nMana Cost {2}\n\nBurst out of the power of your sword and attack all monsters around you.\n\nCurrent Skill Level {0}\nNext Level {1}",
"HemorrhageSkillDescription": "Hemorrhage\n\nPassive Skill\n\nChance to deal critical damage and inflict bleeding damage.\n\nCurrent Skill Level {0}\nNext Level {1}",
"MoonMistSkillDescription": "Moon Mist\n\nBuff Skill\nMana Cost {2}\n\nAbility to hide your self from Monster\nYour first attack will be stronger than normal.\n\nCurrent Skill Level {0}\nNext Level {1}",
"FocusSkillDescription": "Focus\n\nPassive Skill\n\nIncreases chance to hit with physical attacks.\n\nCurrent Skill Level {0}\nNext Level {1}",
"StraightShotSkillDescription": "Straight Shot\n\nActive Skill\nMana Cost {2} \n\nInfuses an arrow with mana to deal extra damage.\n\nCurrent Skill Level {0}\nNext Level {1}",
"DoubleShotSkillDescription": "Double Shot\n\nActive Skill\nMana Cost {2} \n\nFire two arrows in quick succession.\n\nCurrent Skill Level {0}\nNext Level {1}",
"ExplosiveTrapSkillDescription": "Explosive Trap\n\nTrap Skill\nMana Cost {2} \n\nLay down a row of traps that explode\non contact with an enemy.\n\nCurrent Skill Level {0}\nNext Level {1}",
"DelayedExplosionSkillDescription": "Delayed Explosion\n\nActive Skill\nMana Cost {2} \n\nFire an arrow that explodes after a short delay.\nUses Elements to cause additional damage.\n\nCurrent Skill Level {0}\nNext Level {1}",
"MeditationSkillDescription": "Meditation\n\nPassive Skill\n\nEnables gathering of Elements when attacking monsters.\nUp to 4 Total Elements can be gained. \n\nCurrent Skill Level {0}\nNext Level {1}",
"BackStepSkillDescription": "Back Step\n\nActive Skill\nMana Cost {2} \n\nQuickly leap backwards away from danger.\n\nCurrent Skill Level {0}\nNext Level {1}",
"ElementalShotSkillDescription": "Elemental Shot\n\nActive Skill\nMana Cost {2} \n\nHigh damage magical attack. Damage is increased\nper element. Generates 2 elements if none exist.\nPushes back target if archer is higher level.\n\nCurrent Skill Level {0}\nNext Level {1}",
"ConcentrationSkillDescription": "Concentration\n\nBuff Skill\nMana Cost {2} \n\nIncrease the chance of gathering elements whilst active.\n\nCurrent Skill Level {0}\nNext Level {1}",
"StoneTrapSkillDescription": "Stone Trap\n\nTrap Skill\nMana Cost {2}\n\nLay down a Stone Trap \n\nCurrent Skill Level {0}\nNext Level {1}",
"ElementalBarrierSkillDescription": "Elemental Barrier\n\nBuff Skill\nMana Cost {2}\n\nProtects the caster with an elemental barrier.\nMore elements on cast increases damage reduction.\n\nCurrent Skill Level {0}\nNext Level {1}",
"SummonVampireSkillDescription": "Summon Vampire\n\nSummoning Skill\nMana Cost {2}\n\nSummons a Vampire Spider to fight by your side.\nVampire Spider will leach enemy HP to heal caster.\n\nCurrent Skill Level {0}\nNext Level {1}",
"VampireShotSkillDescription": "Vampire Shot\n\nActive Skill\nMana Cost {2}\n\nShoots a Vampire Arrow that leaches enemy HP to heal caster.\n\nCurrent Skill Level {0}\nNext Level {1}",
"SummonToadSkillDescription": "Summon Toad\n\nSummoning Skill\nMana Cost {2}\n\nSummons a Toad to fight by your side.\nThe toad cannot move and will explode if\nits master leaves its view range.\n\nCurrent Skill Level {0}\nNext Level {1}",
"PoisonShotSkillDescription": "Poison Shot\n\nActive Skill\nMana Cost {2}\n\nShoots a Poison Arrow that poisons the enemy.\n\nCurrent Skill Level {0}\nNext Level {1}",
"CrippleShotSkillDescription": "Cripple Shot\n\nActive Skill\nMana Cost {2}\n\nShoots a Cripple Arrow that slows the enemy.\nPoisonShot buff will make Cripple shot produce\na 3×3 AOE poison attack. VampireShot Buff will\nmake Cripple shot hit twice and steal HP.\n\nCurrent Skill Level {0}\nNext Level {1}",
"SummonSnakesSkillDescription": "Summon Snakes\n\nSummoning Skill\nMana Cost {2}\n\nSummon a Totem that spawns a swarm of snakes that\naggro all monsters nearby and attack with\na chance to paralyse the target.\n\nCurrent Skill Level {0}\nNext Level {1}",
"NapalmShotSkillDescription": "Napalm Shot\n\nActive Skill\nMana Cost {2}\n\nFire an arrow that explodes in a 5×5 radius around the target.\n\nCurrent Skill Level {0}\nNext Level {1}",
"OneWithNatureSkillDescription": "One With Nature\n\nBuff Skill\nMana Cost {2}\n\nSummon an elemental ring around the caster that\ndeals damage to all targets within a 5×5 radius.\n\nCurrent Skill Level {0}\nNext Level {1}",
"YouAlreadyHaveMentor": "You already have a Mentor.",
"CancellingMentorshipCausesCooldown": "Cancelling a Mentorship early will cause a cooldown. Are you sure?",
"ONLINE": "ONLINE",
"MENTOR": "MENTOR",
"MENTEE": "MENTEE",
"MenteeExp": "MENTEE EXP: ",
"LoyaltyProgress": "{0} / {1} Loyalty",
"WarriorsDescription": "Warriors are a class of great strength and vitality. They are not easily killed in battle and have the advantage of being able to use a variety of heavy weapons and Armour. Therefore, Warriors favor attacks that are based on melee physical damage. They are weak in ranged attacks, however the variety of equipment that are developed specifically for Warriors complement their weakness in ranged combat.",
"WizardsDescription": "Wizards are a class of low strength and stamina, but have the ability to use powerful spells. Their offensive spells are very effective, but because it takes time to cast these spells, they're likely to leave themselves open for enemy's attacks. Therefore, the physically weak wizards must aim to attack their enemies from a safe distance.",
"TaoistsDescription": "Taoists are well disciplined in the study of Astronomy, Medicine, and others aside from Mu-Gong. Rather then directly engaging the enemies, their specialty lies in assisting their allies with support. Taoists can summon powerful creatures and have a high resistance to magic, and is a class with well balanced offensive and defensive abilities.",
"AssassinsDescription": "Assassins are members of a secret organization and their history is relatively unknown. They're capable of hiding themselves and performing attacks while being unseen by others, which naturally makes them excellent at making fast kills. It is necessary for them to avoid being in battles with multiple enemies due to their weak vitality and strength.",
"ArchersDescription": "Archers are a class of great accuracy and strength, using their powerful skills with bows to deal extraordinary damage from range. Much like wizards, they rely on their keen instincts to dodge oncoming attacks as they tend to leave themselves open to frontal attacks. However, their physical prowess and deadly aim allows them to instil fear into anyone they hit.",
"NotEnoughPearls": "You do not have enough Pearls.",
"CannotSellItem": "Cannot sell this item.",
"CannotCarryMoreGold": "Cannot carry anymore gold.",
"CannotRepairItem": "Cannot repair this item.",
"CannotConsignItem": "Cannot consign this item.",
"ConsignmentPrice": "Consignment Price:",
"YouDontHaveEnoughGoldToRefine": "You don't have enough gold to refine your {0}.",
"YouHaventDepositedItemsToRefine": "You haven't deposited any items to refine your {0} with.",
"ItemHasntBeenRefinedNoChecking": "Your {0} hasn't been refined so it doesn't need checking.",
"ItemIsNotRing": "{0} isn't a ring.",
"Sale": "Sale: ",
"Repair": "Repair: ",
"SpecialRepair": "S. Repair: ",
"Consignment": "Consignment: ",
"ItemWillBeDestroyed": "Item will be Destroyed\n\n\n\n\n\n\n\n ",
"Downgrade": "Downgrade: ",
"Reset": "Reset: ",
"Refine": "Refine: ",
"CheckRefine": "Check Refine",
"ReplaceWedRing": "Replace: ",
"Gold2": " Gold",
"SelectUpgradeItem": "Select Upgrade Item.",
"SelectUpgradeType": "Select Upgrade Type.",
"BraveryGlyph": "Bravery Glyph",
"MagicGlyph": "Magic Glyph",
"SoulGlyph": "Soul Glyph",
"ProtectionGlyph": "Protection Glyph",
"EvilSlayerGlyph": "EvilSlayer Glyph",
"BodyGlyph": "Body Glyph",
"NeedItemQuantity": "{0}\nQuantity: {1}",
"YouDoNotHaveEnoughGold": "You do not have enough gold.",
"CraftAmount": "Craft Amount:",
"YouDoNotHaveRequiredToolsOrIngredients": "You do not have the required tools or ingredients.",
"YouMustSelectRewardItem": "You must select a reward item.",
"AvailableQuestList": "List: {0}",
"AskCancelQuest": "Are you sure you want to cancel this quest?",
"TakenQuestsList": "List: {0}/{1}",
"Tasks": "Tasks",
"Progress": "Progress",
"QuestReturn": "Quest Return",
"TimeLimit": "Time Limit",
"Complete": "(Complete)",
"InProgress": "(In Progress)",
"OverallTop20": "Overall TOP 20",
"Top20Taoists": "TOP 20 Taoists",
"Top20Warriors": "TOP 20 Warriors",
"Top20Wizards": "TOP 20 Wizards",
"Top20Assasins": "TOP 20 Assasins",
"Top20Archers": "TOP 20 Archers",
"Taoists": "Taoists",
"Warriors": "Warriors",
"Wizards": "Wizards",
"Assasins": "Assasins",
"Archers": "Archers",
"OnlineOnly": "Online Only",
"NotListed": "Not Listed",
"Ranked": "Ranked: {0}",
"YouAreAlreadyMarried": "You're already married.",
"YouAreNotMarried": "You're not married.",
"LoverIsNotOnline": "Lover is not online",
"LoverName": "Lover: {0}",
"LoverLocation": "Location: {0}",
"LoverLocationOffline": "Location: Offline",
"LoverDate": "Date: ",
"LoverLength": "Length: ",
"DivorcedDate": "Divorced Date: {0}",
"TimeSinceDays": "Time Since: {0} Days",
"LoverLocationTitle": "Location: ",
"MarriageDate": "Marriage Date: {0}",
"LengthDays": "Length: {0} Days",
"AllowBlockRecall": "Allow/Block Recall",
"SelectReportType": "Select Report Type.",
"SubmitBug": "Submit Bug",
"ReportPlayer": "Report Player",
"TradeAmount": "Trade Amount:",
"ConsignmentRules": "1. Consignment is {0} gold per item \n\n2. 1% of sale price is paid to Trust Merchant at sale end\n\n3. Maximum {1} days of item sale registration until item is removed\n\n4. Maximum of unlimited items allowed for sale\n\n5. Sale price can be set between: {2} - {3} gold",
"AuctionRules": "1. Auction cost is {0} gold, max starting bid is {1} gold per item \n\n2. 1% of final bid price is paid to Trust Merchant at auction end\n\n3. Maximum {2} days of item sale registration, afterwards the item will be sent to highest bidder\n\n4. Maximum of unlimited items allowed for auction\n\n",
"InterestedInPurchase": "I am interested in purchasing {0} for {1}.",
"YouCanSearchAgain": "You can search again after {0} seconds.",
"ItemNotSoldGetBack": "{0} has not sold, Are you sure you want to get it back?",
"ItemNotSoldConfirmRetrieve": "{0} has not sold, Are you sure you want to get it back?",
"ConfirmBuyItemWithPrice": "Are you sure you want to buy {0} for {1:#,##0} {2}?",
"BidAmount": "Bid Amount:",
"ConfirmBidGoldForItem": "Are you sure you want to bid {0:#,##0} Gold for {1}?",
"SearchAgainAfterSeconds": "You can search again after {0} seconds.",
"ShowAllItems": "Show All Items",
"WeaponItems": "Weapon Items",
"DraperyItems": "Drapery Items",
"AccessoryItems": "Accessory Items",
"ConsumableItems": "Consumable Items",
"Enhancement": "Enhancement",
"Books": "Books",
"CraftItems": "Craft Items",
"Armour": "Armour",
"Helmet": "Helmet",
"Belt": "Belt",
"Stone": "Stone",
"Necklaces": "Necklaces",
"Bracelets": "Bracelets",
"Rings": "Rings",
"RecoveryPots": "Recovery Pots",
"BuffPots": "Buff Pots",
"ScrollsOils": "Scrolls / Oils",
"MiscItems": "Misc Items",
"Gems": "Gems",
"Orbs": "Orbs",
"Warrior": "Warrior",
"Wizard": "Wizard",
"Taoist": "Taoist",
"Assassin": "Assassin",
"Archer": "Archer",
"WarWizTao": "WarWizTao",
"WarWizTao_Assassin_Archer": "All Class",
"Materials": "Materials",
"Meat": "Meat",
"Ore": "Ore",
"YouCanSearchAfterSeconds": "You can search again after {0} seconds.",
"SalePrice": "SALE PRICE",
"SellItem": "SELL ITEM",
"Item": "ITEM",
"PriceBid": "PRICE / BID",
"SellerExpiry": "SELLER / EXPIRY",
"Price": "PRICE",
"Expiry": "EXPIRY",
"StartingBid": "STARTING BID",
"HighestBid": "HIGHEST BID",
"EndDate": "END DATE",
"Bid": "Bid",
"Credits": "Credits",
"MustWearSuitableWeapon": "You must be wearing a suitable weapon to perform this skill",
"CannotCastForSeconds": "You cannot cast {0} for another {1} seconds.",
"Hero": "(Hero) ",
"UseThrusting": "Use Thrusting.",
"DoNotUseThrusting": "Do not use Thrusting.",
"UseHalfMoon": "Use Half Moon.",
"DoNotUseHalfMoon": "Do not use Half Moon.",
"UseCrossHalfMoon": "Use Cross Half Moon.",
"DoNotUseCrossHalfMoon": "Do not use Cross Half Moon.",
"UseDoubleSlash": "Use Double Slash.",
"DoNotUseDoubleSlash": "Do not use Double Slash.",
"NothingFound": "Nothing Found.",
"PlayerShareQuestRequest": "{0} would like to share a quest with you. Do you accept?",
"ObservedPlayerLoggedOff": "The person you was observing has logged off.",
"Miss": "Miss",
"Crit": "Crit",
"FriendlyNoLongerLoyal": "{0} is no longer loyal to you.",
"FriendlyDuraDroppedToZero": "{0}'s dura has dropped to 0.",
"PleaseEnterRequiredInformation": "Please enter the required information.",
"YouHaveLeftGroup": "You have left the group.",
"PlayerHasLeftGroup": "-{0} has left the group.",
"DoYouWantGroupWithPlayer": "Do you want to group with {0}?",
"PlayerHasJoinedGroup": "-{0} has joined the group.",
"YouCannotUseTrustMerchantWhenDead": "You cannot use the TrustMerchant when dead.",
"YouCannotBuyFromTrustMerchantWithoutUsing": "You cannot buy from the TrustMerchant without using.",
"ItemHasBeenSold": "This item has already been sold.",
"ItemExpiredCannotBeBought": "This item has Expired and cannot be brought.",
"NotEnoughWeightOrSpaceToBuyItem": "You do not have enough weight or space spare to buy this item.",
"CannotBuyOwnItems": "You cannot buy your own items.",
"TooFarFromTrustMerchant": "You are too far away from the Trust Merchant.",
"CannotHoldGoldForSale": "You cannot hold enough gold to get your sale.",
"ItemNotMetMinimumBid": "This item has not met the minimum bid yet.",
"AuctionAlreadyEndedForItem": "Auction has already ended for this item.",
"JoinGuildPrompt": "Do you want to join the {0} guild?",
"EnterGuildNameLengthLimit": "Please enter a guild name, length must be 3~20 characters.",
"CannotUseBackslashInGuildName": "You cannot use the \\ sign in a guildname!",
"EnterGuildToWarWith": "Please enter the guild you would like to go to war with.",
"PlayerLoggedOn": "{0} logged on.",
"PlayerJoinedGuild": "{0} joined guild.",
"PlayerRemovedFromGuild": "{0} got removed from the guild.",
"PlayerLeftGuild": "{0} left the guild.",
"PlayerDonatedGoldToGuildFunds": "{0} donated {1} gold to guild funds.",
"PlayerRetrievedGoldFromGuildFunds": "{0} retrieved {1} gold from guild funds.",
"CreatingNewHeroesDisabled": "Creating new heroes is currently disabled.",
"YourHeroNameNotAcceptable": "Your Hero Name is not acceptable.",
"SelectedGenderNotExist": "The gender you selected does not exist.\n Contact a GM for assistance.",
"SelectedClassNotExist": "The class you selected does not exist.\n Contact a GM for assistance.",
"CannotMakeMoreHeroes": "You cannot make anymore Heroes.",
"CharacterNameAlreadyExists": "A Character with this name already exists.",
"NoBagSpace": "No bag space.",
"HeroCreatedSuccessfully": "Hero created successfully.",
"PlayerAskedForMarriage": "{0} has asked for your hand in marriage.",
"PlayerRequestedDivorce": "{0} has requested a divorce",
"PlayerRequestedTeachClass": "{0} (Level {1}) has requested you teach him the ways of the {2}.",
"Guild": "Guild",
"PlayerRequestedTrade": "Player {0} has requested to trade with you.",
"DealCancelledMustFace": "Deal cancelled.\nTo deal correctly you must face the other party.",
"NotEnoughMaterials": "You have not supplied enough materials.",
"AwakeningMaxLevel": "Awakening already at maximum level.",
"CannotAwakenItem": "Cannot awaken this item.",
"EnterMailRecipientName": "Please enter the name of the person you would like to mail.",
"NoParcelsToCollect": "No parcels to collect.",
"AllParcelsCollected": "All parcels have been collected.",
"WouldYouLikeToBeRevived": "Would you like to be revived?",
"PleaseGiveYourCreatureName": "Please give your creature a name.",
"UsageCurrentMax": " Usage {0}/{1}",
"PurityValue": " Purity {0}",
"QualityValue": " Quality {0}",
"LoyaltyValues": " Loyalty {0} / {1}",
"NutritionValue": " Nutrition {0}",
"DurationValue": " Duration {0}",
"AddsDurability": "Adds +{0} Durability",
"SealsFor": "Seals for {0}",
"AddsDC": "Adds +{0} DC",
"AddsMC": "Adds +{0} MC",
"AddsSC": "Adds +{0} SC",
"BagWeightPercent": "BagWeight + {0}% ",
"ExpPercent": "Exp + {0}% ",
"DropPercent": "Drop + {0}% ",
"CursePlusValue": "Curse + {0}",
"AddsAccuracyValue": "Adds +{0} Accuracy",
"AttackSpeedValue": "A.Speed: {0}{1}",
"AddAttackSpeed": "Adds +{0} A.Speed",
"FreezingPlus": "Freezing: + {0}",
"AddsFreezingPlus": "Adds +{0} Freezing",
"AddsPoisonPlus": "Adds +{0} Poison",
"PoisonPlus": "Poison: + {0}",
"CriticalChancePlus": "Critical Chance: + {0}",
"FlexibilityPlus": "Flexibility: + {0}",
"CriticalDamagePlus": "Critical Damage: + {0}",
"ReflectChance": "Reflect chance: {0}",
"HPDrainRate": "HP Drain Rate: {0}%",
"ExpRate": "Exp Rate: {0}{1}%",
"DropRate": "Drop Rate: {0}{1}%",
"GoldRate": "Gold Rate: {0}{1}%",
"AddsAC": "Adds +{0} AC",
"NibbleChance": "Nibble Chance + {0}~{1}%",
"FinderIncrease": "Finder Increase + {0}~{1}%",
"SuccessChance": "Success Chance + {0}%",
"AddsMAC": "Adds +{0} MAC",
"AutoReelChance": "AutoReel Chance + {0}%",
"MaxHpPlus": "Max HP + {0}",
"MaxMpPlus": "Max MP + {0}",
"MaxHpPlusPercent": "Max HP + {0}%",
"MaxMpPlusPercent": "Max MP + {0}%",
"MaxAcPlusPercent": "Max AC + {0}%",
"MaxMacPlusPercent": "Max MAC + {0}%",
"HealthRecoveryPlus": "Health Recovery + {0}",
"ManaRecoveryPlus": "Mana Recovery + {0}",
"PoisonRecoveryPlus": "Poison Recovery + {0}",
"AddsAgilityPlus": "Adds +{0} Agility",
"StrongPlus": "Strong + {0}",
"PoisonResistPlus": "Poison Resist + {0}",
"AddPoisonResistPlus": "Adds +{0} Poison Resist",
"MagicResistPlus": "Magic Resist + {0}",
"AddMagicResistPlus": "Adds +{0} Magic Resist",
"MaxDcPlusPercent": "Max DC + {0}%",
"MaxMcPlusPercent": "Max MC + {0}%",
"MaxScPlusPercent": "Max SC + {0}%",
"AllDamageReductionPlusPercent": "All Damage Reduction + {0}%",
"HandWeightPlus": "Hand Weight + {0}",
"WearWeightPlus": "Wear Weight + {0}",
"BagWeightPlus": "Bag Weight + {0}",
"InstantRun": "Instant Run",
"TimeValue": "Time : {0}",
"AwakeningWithValue": "{0} Awakening({1})",
"SocketWithValue": "Socket : {0}",
"Empty": "Empty",
"OpenSocketsTips": "Ctrl + Right Click To Open Sockets",
"RequiredAC": "Required AC : {0}",
"RequiredMAC": "Required MAC : {0}",
"MaximumLevel": "Maximum Level : {0}",
"RequiredBaseAC": "Required Base AC : {0}",
"RequiredBaseMAC": "Required Base MAC : {0}",
"RequiredBaseDC": "Required Base DC : {0}",
"RequiredBaseMC": "Required Base MC : {0}",
"RequiredBaseSC": "Required Base SC : {0}",
"UnknownTypeRequired": "Unknown Type Required",
"SellingPriceGold": "Selling Price : {0} Gold",
"CantDropOnDeath": "Can't drop on death",
"CantDrop": "Can't drop",
"CantUpgrade": "Can't upgrade",
"CantSell": "Can't sell",
"CantTrade": "Can't trade",
"CantStore": "Can't store",
"CantRepair": "Can't repair",
"CantSpecialRepair": "Can't special repair",
"BreaksOnDeath": "Breaks on death",
"DestroyedWhenDropped": "Destroyed when dropped",
"CannotBeWeddingRing": "Cannot be a Wedding Ring",
"CannotBeUsedByHero": "Cannot be used by Hero",
"SoulBindsOnEquip": "SoulBinds on equip",
"SoulboundTo": "Soulbound to: ",
"Cursed": "Cursed",
"AfterWeapon": "-Weapon",
"CannotBeUsedOnAnyItem": "Cannot be used on any item.",
"CanBeUsedOn": "Can be used on: ",
"AfterArmour": "-Armour",
"AfterHelmet": "-Helmet",
"AfterNecklace": "-Necklace",
"AfterBracelet": "-Bracelet",
"AfterRing": "-Ring",
"AfterAmulet": "-Amulet",
"AfterBelt": "-Belt",
"AfterBoots": "-Boots",
"AfterStone": "-Stone",
"AfterCandle": "-Candle",
"ExpiresIn": "Expires in {0}",
"SealedFor": "Sealed for {0}",
"ItemRentedFrom": "Item rented from: ",
"RentalExpiresIn": "Rental expires in: {0}",
"RentalLockExpiresIn": "Rental lock expires in: {0}",
"HoldCtrlPartialRepairWeaponsAccessories": "Hold CTRL and left click to partially repair\nweapons and accessory items.",
"HoldCtrlPartialRepairArmourDrapery": "Hold CTRL and left click to partially repair\narmour and drapery items.",
"HoldCtrlCombineDestroyChance": "Hold CTRL and left click to combine with an item.\nHas chance to destroy combining item.",
"HoldCtrlCombineNoDestroy": "Hold CTRL and left click to combine with an item.\nWill NOT destroy combining item.",
"HoldCtrlFullRepairWeaponsAccessories": "Hold CTRL and left click to completely repair\nweapons and accessory items.",
"HoldCtrlFullRepairArmourDrapery": "Hold CTRL and left click to completely repair\narmour and drapery items.",
"HoldCtrlSealItem": "Hold CTRL and left click to seal an item.",
"AddsCreditsToAccount": "Adds {0} Credits to your Account.",
"CreatedByGameMaster": "Created by Game Master",
"MailGoldLabel": "Gold: ",
"MailHeaderOld": "[Old]",
"MailHeaderNew": "[New]",
"UserNameUnknown": "Unknown",
"ItemRentalCancelledFaceOtherParty": "Item rental cancelled.\r\nTo complete item rental please face the other party throughout the transaction.",
"AutoRunOn": "[AutoRun: On]",
"AutoRunOff": "[AutoRun: Off]",
"YouCannotDrop": "You cannot drop {0}",
"TargetTooFar": "Target is too far.",
"CannotCastSpellSeconds": "You cannot cast {0} for another {1} seconds.",
"MustWearBowForSkill": "You must be wearing a bow to perform this skill.",
"AttemptingConnectServer": "Attempting to connect to the server.",
"SendingClientVersion": "Sending Client Version.",
"WrongVersionPleaseUpdateGame": "Wrong version, please update your game.\nGame will now Close",
"AccountCreationDisabled": "Account creation is currently disabled.",
"AccountIdNotAcceptable": "Your AccountID is not acceptable.",
"PasswordNotAcceptable": "Your Password is not acceptable.",
"EmailAddressNotAcceptable": "Your E-Mail Address is not acceptable.",
"UserNameNotAcceptable": "Your User Name is not acceptable.",
"SecretQuestionNotAcceptable": "Your Secret Question is not acceptable.",
"SecretAnswerNotAcceptable": "Your Secret Answer is not acceptable.",
"AccountIdAlreadyExists": "An Account with this ID already exists.",
"AccountCreatedSuccessfully": "Your account was created successfully.",
"PasswordChangingDisabled": "Password Changing is currently disabled.",
"CurrentPasswordNotAcceptable": "The current Password is not acceptable.",
"NewPasswordNotAcceptable": "Your new Password is not acceptable.",
"PasswordChangedSuccessfully": "Your password was changed successfully.",
"AccountBannedReasonDuration": "This account is banned.\n\nReason: {0}\nExpiryDate: {1}\nDuration: {2:#,##0} Hours, {3} Minutes, {4} Seconds",
"LoginDisabled": "Logging in is currently disabled.",
"AccountPasswordMustChangeBeforeLogin": "The account's password must be changed before logging in.",
"BtnEsc": "Esc",
"BtnDelete": "Delete",
"BtnEnter": "Enter",
"BtnRandom": "Random",
"AccountIdDescription": " Description: Account ID.\n Accepted characters: a-z A-Z 0-9.\n Length: between {0} and {1} characters.",
"PasswordDescription": " Description: Password.\n Accepted characters: a-z A-Z 0-9.\n Length: between {0} and {1} characters.",
"EmailAddressDescription": " Description: E-Mail Address.\n Format: Example@Example.Com.\n Max Length: 50 characters.\n Optional Field.",
"UserNameDescription": " Description: User Name.\n Accepted characters:All.\n Length: between 0 and 20 characters.\n Optional Field.",
"BirthDateDescription": " Description: Birth Date.\n Format: {0}.\n Length: 10 characters.\n Optional Field.",
"SecretQuestionDescription": " Description: Secret Question.\n Accepted characters: All.\n Length: between 0 and 30 characters.\n Optional Field.",
"SecretAnswerDescription": " Description: Secret Answer.\n Accepted characters: All.\n Length: between 0 and 30 characters.\n Optional Field.",
"CouldNotGetDisplayResolutions": "Could not get display resolutions",
"GetDisplayResolutionIssue": "Get Display Resolution Issue",