mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
Some color tweaks
This commit is contained in:
parent
292fc8eff2
commit
1585d8157e
@ -65,10 +65,6 @@ public abstract class SkillCommand implements TabExecutor {
|
||||
permissionsCheck(player);
|
||||
dataCalculations(player, skillValue, isLucky);
|
||||
|
||||
if (Config.getInstance().getSkillUseBoard()) {
|
||||
ScoreboardManager.enablePlayerSkillScoreboard(player, skill);
|
||||
}
|
||||
|
||||
sendSkillCommandHeader(player, mcMMOPlayer, (int) skillValue);
|
||||
|
||||
//Make JSON text components
|
||||
@ -89,17 +85,17 @@ public abstract class SkillCommand implements TabExecutor {
|
||||
//Stats
|
||||
getStatMessages(player, isLucky, hasEndurance, skillValue);
|
||||
|
||||
ChatColor hd1 = ChatColor.DARK_AQUA;
|
||||
ChatColor c1 = ChatColor.GOLD;
|
||||
ChatColor c2 = ChatColor.RED;
|
||||
|
||||
//Header
|
||||
player.sendMessage(hd1+"[]=====[]"+c1+" mcMMO "+c2+"Overhaul"+c1+" Era "+hd1+"[]=====[]");
|
||||
player.sendMessage(LocaleLoader.getString("Overhaul.mcMMO.Header"));
|
||||
|
||||
//Link Header
|
||||
TextComponentFactory.sendPlayerUrlHeader(player);
|
||||
|
||||
return true;
|
||||
if (Config.getInstance().getSkillUseBoard()) {
|
||||
ScoreboardManager.enablePlayerSkillScoreboard(player, skill);
|
||||
}
|
||||
|
||||
return true;
|
||||
default:
|
||||
return skillGuideCommand.onCommand(sender, command, label, args);
|
||||
}
|
||||
|
@ -164,7 +164,9 @@ public class TamingCommand extends SkillCommand {
|
||||
}
|
||||
|
||||
if (canGore) {
|
||||
messages.add(LocaleLoader.getString("Taming.Combat.Chance.Gore", goreChance) + (isLucky ? LocaleLoader.getString("Perks.Lucky.Bonus", goreChanceLucky) : ""));
|
||||
messages.add(LocaleLoader.getString("Ability.Generic.Template",
|
||||
LocaleLoader.getString("Taming.Combat.Chance.Gore"),
|
||||
goreChance) + (isLucky ? LocaleLoader.getString("Perks.Lucky.Bonus", goreChanceLucky) : ""));
|
||||
}
|
||||
|
||||
return messages;
|
||||
|
@ -35,7 +35,8 @@ public class TextComponentFactory {
|
||||
public static TextComponent getNotificationMultipleValues(String localeKey, NotificationType notificationType, String... values)
|
||||
{
|
||||
String preColoredString = LocaleLoader.getString(localeKey, (Object[]) values);
|
||||
return new TextComponent(preColoredString);
|
||||
TextComponent msg = new TextComponent(preColoredString);
|
||||
return new TextComponent(msg);
|
||||
}
|
||||
|
||||
public static TextComponent getNotificationTextComponentFromLocale(String localeKey, NotificationType notificationType)
|
||||
|
@ -1,6 +1,6 @@
|
||||
Acrobatics.Ability.Proc=[[GREEN]]**Elegantni pristani**
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**Uskocil jsi**
|
||||
Acrobatics.DodgeChance=[[RED]]\u0160ance na \u00faskok: [[YELLOW]]{0}
|
||||
Acrobatics.DodgeChance=\u0160ance na \u00faskok: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Name=Valeni
|
||||
Acrobatics.SubSkill.Roll.Description=Redukuje nebo ru\u0161\u00ed zran\u011bn\u00ed zp\u016fsoben\u00e9 p\u00e1dem
|
||||
Acrobatics.SubSkill.GracefulRoll.Name=\u0160\u0165astn\u00fd kotoul
|
||||
@ -8,14 +8,14 @@ Acrobatics.SubSkill.GracefulRoll.Description=Dvojt\u00e1 effectivita ne\u017e no
|
||||
Acrobatics.SubSkill.Dodge.Name=\u00dahyb
|
||||
Acrobatics.SubSkill.Dodge.Description=Sn\u00ed\u017een\u00e9 zran\u011bn\u00ed o polovinu
|
||||
Acrobatics.Listener=Akrobacie:
|
||||
Acrobatics.SubSkill.Roll.Chance=[[RED]]\u0160ance na kotoul: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=[[RED]]\u0160ance na \u0160\u0165astn\u00fd kotoul: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Chance=\u0160ance na kotoul: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=\u0160ance na \u0160\u0165astn\u00fd kotoul: [[YELLOW]]{0}
|
||||
Acrobatics.Roll.Text=**Valis se**
|
||||
Acrobatics.SkillName=AKROBACIE
|
||||
Acrobatics.Skillup=[[YELLOW]]Dovednost akrobacie byla navysena o {0}. Celkem ({1})
|
||||
Archery.Combat.DazeChance=[[RED]]\u0160ance na om\u00e1men\u00ed: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=[[RED]]\u0160ance z\u00edsk\u00e1n\u00ed \u0161\u00edp\u016f zp\u011bt: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=[[RED]]Bonusov\u00e9 zran\u011bn\u00ed p\u0159esn\u00e9 trefy: [[YELLOW]]{0}
|
||||
Acrobatics.Skillup=Dovednost akrobacie byla navysena o {0}. Celkem ({1})
|
||||
Archery.Combat.DazeChance=\u0160ance na om\u00e1men\u00ed: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=\u0160ance z\u00edsk\u00e1n\u00ed \u0161\u00edp\u016f zp\u011bt: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=Bonusov\u00e9 zran\u011bn\u00ed p\u0159esn\u00e9 trefy: [[YELLOW]]{0}
|
||||
Archery.SubSkill.SkillShot.Name=P\u0159esn\u00e1 trefa
|
||||
Archery.SubSkill.SkillShot.Description=Zv\u00fd\u0161en\u00e9 po\u0161kozen\u00ed lukem
|
||||
Archery.SubSkill.Daze.Name=Om\u00e1men\u00ed (Hr\u00e1\u010di)
|
||||
@ -24,7 +24,7 @@ Archery.SubSkill.ArrowRetrieval.Name=Sb\u011br \u0161\u00edp\u016f
|
||||
Archery.SubSkill.ArrowRetrieval.Description=\u0160ance na navr\u00e1cen\u00ed \u0161\u00edp\u016f z mrtvol.
|
||||
Archery.Listener=Lukostrelba
|
||||
Archery.SkillName=LUKOSTRELBA
|
||||
Archery.Skillup=[[YELLOW]]Dovednost lukostrelba byla navysena o {0}. Celkem ({1})
|
||||
Archery.Skillup=Dovednost lukostrelba byla navysena o {0}. Celkem ({1})
|
||||
Axes.Ability.Bonus.0=Mistr sekyr
|
||||
Axes.Ability.Bonus.1=Bonusove zraneni {0}
|
||||
Axes.Ability.Bonus.2=Ucinek
|
||||
@ -34,11 +34,11 @@ Axes.Ability.Bonus.5=Zpusobi bonusove zraneni o velkosi {0} vsem neozbrojenym ne
|
||||
Axes.Ability.Lower=[[GRAY]]**ODLOZIL JSI SVOU SEKERU**
|
||||
Axes.Ability.Ready=[[GREEN]]**P\u0158IPRAVUJE\u0160 SI SVOJ\u00cd SEKERU!**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]Byl jsi KRITICKY zasazen!
|
||||
Axes.Combat.CritChance=[[RED]]Sance na kriticky uder: [[YELLOW]]{0}%
|
||||
Axes.Combat.CriticalHit=[[RED]]KRITICK\u00dd Z\u00c1SAH!
|
||||
Axes.Combat.CritChance=Sance na kriticky uder: [[YELLOW]]{0}%
|
||||
Axes.Combat.CriticalHit=KRITICK\u00dd Z\u00c1SAH!
|
||||
Axes.Combat.GI.Proc=[[GREEN]]**\u00daDER VELKOU SILOU**
|
||||
Axes.Combat.GI.Struck=[[RED]]**ZASAZENI S VYSSIM UCINKEM**
|
||||
Axes.Combat.SS.Length=[[RED]]Delka trvani Drtice lebek: [[YELLOW]]{0}s
|
||||
Axes.Combat.GI.Struck=**ZASAZENI S VYSSIM UCINKEM**
|
||||
Axes.Combat.SS.Length=Delka trvani Drtice lebek: [[YELLOW]]{0}s
|
||||
Axes.SubSkill.SkullSplitter.Name=[[GREEN]]**Drtic lebek byl AKTIVOVAN**
|
||||
Axes.SubSkill.SkullSplitter.Description=Ud\u011bl AoE zran\u011bn\u00ed
|
||||
Axes.SubSkill.CriticalStrikes.Name=Kriticky zasah
|
||||
@ -51,36 +51,36 @@ Axes.SubSkill.GreaterImpact.Name=Vyssi ucinek
|
||||
Axes.SubSkill.GreaterImpact.Description=Zpusobi bonusove zraneni neozbrojenym nepratelum.
|
||||
Axes.Listener=Sekery:
|
||||
Axes.SkillName=SEKERY
|
||||
Axes.Skills.SS.Off=[[RED]]**Drtic lebek byl deaktivovan**
|
||||
Axes.Skills.SS.Off=**Drtic lebek byl deaktivovan**
|
||||
Axes.Skills.SS.On=[[GREEN]]**Drtic lebek byl AKTIVOVAN**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]Schopnost [[YELLOW]]Drtic lebek [[GREEN]]byla obnovena!
|
||||
Axes.Skills.SS.Other.Off=[[RED]]Drti\u010d lebek[[GREEN]] byl deaktivovan na [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.Off=Drti\u010d lebek[[GREEN]] byl deaktivovan na [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] pouzil [[RED]]Drtice lebek!
|
||||
Axes.Skillup=[[YELLOW]]Dovednost v sekerach byla navysena o {0}. Celkem ({1})
|
||||
Axes.Skillup=Dovednost v sekerach byla navysena o {0}. Celkem ({1})
|
||||
Excavation.Ability.Lower=[[GRAY]]**Sklonil jsi svoji lopatu**
|
||||
Excavation.Ability.Ready=[[GREEN]]**PRIPRAVIL JSI SVOU LOPATU**
|
||||
Excavation.SubSkill.GigaDrillBreaker.Name=Giga Vrtacka (SCHOPNOST)
|
||||
Excavation.SubSkill.GigaDrillBreaker.Description=3x Drop Rate, 3x EXP, +Speed
|
||||
Excavation.SubSkill.TreasureHunter.Name=Hleda\u010d poklad\u016f
|
||||
Excavation.SubSkill.TreasureHunter.Description=Schopnost kopat poklady
|
||||
Excavation.Effect.Length=[[RED]]Delka trvani Giga Drill Breaker: [[YELLOW]]{0}s
|
||||
Excavation.Effect.Length=Delka trvani Giga Drill Breaker: [[YELLOW]]{0}s
|
||||
Excavation.Listener=Kopani:
|
||||
Excavation.SkillName=KOPANI
|
||||
Excavation.Skills.GigaDrillBreaker.Off=[[RED]]**Giga vrta\u010dka selhala**
|
||||
Excavation.Skills.GigaDrillBreaker.Off=**Giga vrta\u010dka selhala**
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**GIGA DRILL BREAKER BYL AKTIVOVAN**
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]Tvoje schopnost [[YELLOW]]Giga Vrta\u010dka [[GREEN]]byla obnovena!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=[[RED]]Ni\u010ditel hl\u00edny[[GREEN]] je vy\u010derp\u00e1n do [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=Ni\u010ditel hl\u00edny[[GREEN]] je vy\u010derp\u00e1n do [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] pou\u017eil [[RED]]Giga Vrta\u010dku!
|
||||
Excavation.Skillup=[[YELLOW]]Dovednost v kopani byla navysena o {0}. Celkem ({1})
|
||||
Fishing.Ability.Chance=[[RED]]\u0160ance na zah\u00e1knut\u00ed: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=[[RED]]Magick\u00fd lovec: [[GRAY]] **Zvy\u0161uje se s dovednost\u00ed Lovec poklad\u016f**
|
||||
Excavation.Skillup=Dovednost v kopani byla navysena o {0}. Celkem ({1})
|
||||
Fishing.Ability.Chance=\u0160ance na zah\u00e1knut\u00ed: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=Magick\u00fd lovec: [[GRAY]] **Zvy\u0161uje se s dovednost\u00ed Lovec poklad\u016f**
|
||||
Fishing.Ability.Locked.0=Uzam\u010deno do {0}+ schopnosti (Prot\u0159ep\u00e1n\u00ed)
|
||||
Fishing.Ability.Locked.1=UZAM\u010cENO DOKU\u010e {0}+ DOVEDNOST (RYBA\u0158EN\u00cd V LEDU)
|
||||
Fishing.Ability.Rank=[[RED]]Lovec Poklad\u016f Level: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.MagicRate=[[RED]]\u0160ance na magick\u00e9ho lovce: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=[[RED]]\u0160ance na ot\u0159es: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=[[RED]]Ledov\u00e9 ryba\u0159en\u00ed: B\u011b\u017ete ryba\u0159it do ledu
|
||||
Fishing.Ability.FD=[[RED]]Ryb\u00e1\u0159\u016fv apetit: [[YELLOW]]Rank {0}
|
||||
Fishing.Ability.Rank=Lovec Poklad\u016f Level: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.MagicRate=\u0160ance na magick\u00e9ho lovce: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=\u0160ance na ot\u0159es: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=Ledov\u00e9 ryba\u0159en\u00ed: B\u011b\u017ete ryba\u0159it do ledu
|
||||
Fishing.Ability.FD=Ryb\u00e1\u0159\u016fv apetit: [[YELLOW]]Rank {0}
|
||||
Fishing.SubSkill.TreasureHunter.Name=Lovec pokladu (pasivni)
|
||||
Fishing.SubSkill.TreasureHunter.Description=Fish up misc. objects
|
||||
Fishing.SubSkill.MagicHunter.Name=Magicky Lovec
|
||||
@ -97,20 +97,20 @@ Fishing.Chance.Raining=[[BLUE]] De\u0161\u0165ov\u00fd bonus
|
||||
Fishing.Listener=Rybareni:
|
||||
Fishing.Ability.TH.MagicFound=[[GRAY]]C\u00edt\u00edte dotek magie s t\u00edmto \u00falovkem...
|
||||
Fishing.SkillName=RYBARENI
|
||||
Fishing.Skillup=[[YELLOW]]Dovednost v rybareni byla navysena o {0}. Celkem ({1})
|
||||
Herbalism.Ability.DoubleDropChance=[[RED]]\u0160ance na dvojn\u00e1sobn\u00fd zisk: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=[[RED]]Farm\u00e1\u0159ova dieta: [[YELLOW]]Rank {0}
|
||||
Herbalism.Ability.GTe.Length=[[RED]]D\u00e9lka trv\u00e1n\u00ed Zelen\u00e9 planety: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=[[RED]]Bude\u0161 pot\u0159ebovat v\u00edc sem\u00ednek pro Green Tera.
|
||||
Herbalism.Ability.GTh.Chance=[[RED]]\u0160ance na dovednost Zahradn\u00edk: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=[[RED]]**ZAHRADN\u00cdK SELHAL**
|
||||
Herbalism.Ability.GTh.Stage=[[RED]] Zahradn\u00edk Stage: [[\u017dlut\u00e9]] Plodiny rostou ve st\u00e1diu {0}
|
||||
Fishing.Skillup=Dovednost v rybareni byla navysena o {0}. Celkem ({1})
|
||||
Herbalism.Ability.DoubleDropChance=\u0160ance na dvojn\u00e1sobn\u00fd zisk: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=Farm\u00e1\u0159ova dieta: [[YELLOW]]Rank {0}
|
||||
Herbalism.Ability.GTe.Length=D\u00e9lka trv\u00e1n\u00ed Zelen\u00e9 planety: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=Bude\u0161 pot\u0159ebovat v\u00edc sem\u00ednek pro Green Tera.
|
||||
Herbalism.Ability.GTh.Chance=\u0160ance na dovednost Zahradn\u00edk: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=**ZAHRADN\u00cdK SELHAL**
|
||||
Herbalism.Ability.GTh.Stage= Zahradn\u00edk Stage: [[\u017dlut\u00e9]] Plodiny rostou ve st\u00e1diu {0}
|
||||
Herbalism.Ability.GTh=[[GREEN]]**ZAHRADNIK**
|
||||
Herbalism.Ability.HylianLuck=[[RED]]Hylian Luck zm\u011bn\u011bn: [[YELLOW]]{0}
|
||||
Herbalism.Ability.HylianLuck=Hylian Luck zm\u011bn\u011bn: [[YELLOW]]{0}
|
||||
Herbalism.Ability.Lower=[[GRAY]]**SKLONIL JSI SVOJI MOTYKU**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**PRIPRAVIL JSI SVOU MOTYKU**
|
||||
Herbalism.Ability.ShroomThumb.Chance=[[RED]]\u0160ance na dovednost Houba\u0159: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=[[RED]]**HOUBA\u0158 SELHAL**
|
||||
Herbalism.Ability.ShroomThumb.Chance=\u0160ance na dovednost Houba\u0159: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=**HOUBA\u0158 SELHAL**
|
||||
Herbalism.SubSkill.GreenTerra.Name=Green Terra (SCHOPNOST)
|
||||
Herbalism.SubSkill.GreenTerra.Description=\u0160\u00ed\u0159en\u00ed planety, 3x v\u00edce drop\u016f
|
||||
Herbalism.SubSkill.GreenThumb.Name=Zahradnik (Wheat)
|
||||
@ -129,10 +129,10 @@ Herbalism.Listener=Bylinarstvi:
|
||||
Herbalism.SkillName=Bylinkarstvi
|
||||
Herbalism.Skills.GTe.On=[[GREEN]]**ZELEN\u00c1 TERRA AKTIVOV\u00c1NA**
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]Schopnost [[YELLOW]]Green Terra [[GREEN]]je obnovena!
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]]Green Terra[[GREEN]] byla deaktivovana [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.Off=Green Terra[[GREEN]] byla deaktivovana [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]{0}[[DARK_GREEN]] pou\u017eil [[RED]Green Terra!
|
||||
Herbalism.Skillup=[[DARK_RED]]Dovednost v bylinarstvi byla navysena o {0}. Celkem ({1}).
|
||||
Mining.Ability.Length=[[RED]]Trvani Super Breaker: [[YELLOW]]{0}s
|
||||
Mining.Ability.Length=Trvani Super Breaker: [[YELLOW]]{0}s
|
||||
Mining.Ability.Locked.0=Zam\u010deno doku\u010f {0}+ DOVEDNOST (T\u011a\u017dEN\u00cd V\u00ddBUCHEM)
|
||||
Mining.Ability.Locked.1=Zamknuto doku\u010f {0}+ DOVEDNOST (V\u011aT\u0160\u00cd BOMBY)
|
||||
Mining.Ability.Locked.2=ZAM\u010cENO DOKU\u010e{0}+ DOVEDNOST (DEMOLI\u010cN\u00cd ODBORNOST)
|
||||
@ -148,20 +148,20 @@ Mining.SubSkill.BiggerBombs.Name=V\u011bt\u0161\u00ed bomby
|
||||
Mining.SubSkill.BiggerBombs.Description=Navysuje vzdalenost exploze TNT
|
||||
Mining.SubSkill.DemolitionsExpertise.Name=Odborn\u00e1 demolice
|
||||
Mining.SubSkill.DemolitionsExpertise.Description=Snizuje zraneni zpusobene vybuchem TNT
|
||||
Mining.Effect.Decrease=[[RED]]Sn\u00ed\u017een\u00ed \u0161kod Demoli\u010dn\u00edho experta: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=[[RED]]\u0161ance na dvojn\u00e1sobn\u00fd zisk: [[YELLOW]]{0}
|
||||
Mining.Effect.Decrease=Sn\u00ed\u017een\u00ed \u0161kod Demoli\u010dn\u00edho experta: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=\u0161ance na dvojn\u00e1sobn\u00fd zisk: [[YELLOW]]{0}
|
||||
Mining.Listener=Dolovani:
|
||||
Mining.SkillName=DOLOVANI
|
||||
Mining.Skills.SuperBreaker.Off=[[RED]]**Super Ni\u010den\u00ed vyprchalo**
|
||||
Mining.Skills.SuperBreaker.Off=**Super Ni\u010den\u00ed vyprchalo**
|
||||
Mining.Skills.SuperBreaker.On=[[GREEN]]**SUPER BREAKER BYL AKTIVOVAN**
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[RED]]Super Breaker[[GREEN]] byl deaktivovan [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.Off=Super Breaker[[GREEN]] byl deaktivovan [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] has used [[RED]]Mega Ni\u010den\u00ed
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]Schopnost [[YELLOW]]Super Breaker [[GREEN]]obnovena!
|
||||
Mining.Skillup=[[YELLOW]]Dovednost v dolovani byla navysena o {0}. Celkem ({1})
|
||||
Mining.Skillup=Dovednost v dolovani byla navysena o {0}. Celkem ({1})
|
||||
Mining.Blast.Boom=[[GRAY]]**VYBUCH**
|
||||
Mining.Blast.Effect=+{0} v\u00fdnos rudy, -{1} v\u00fdnos trosek, {2}x ko\u0159ist
|
||||
Mining.Blast.Radius.Increase=[[RED]]Navyseni radiusu vybuchu: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=[[RED]]V\u00fdbu\u0161n\u00e9 t\u011b\u017een\u00ed [[YELLOW]] Rank {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Radius.Increase=Navyseni radiusu vybuchu: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=V\u00fdbu\u0161n\u00e9 t\u011b\u017een\u00ed [[YELLOW]] Rank {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Other.On=[[GREEN]]{0}[[DARK_GREEN]] pou\u017eil [[RED]]V\u00fdbu\u0161n\u00e9 T\u011b\u017een\u00ed!
|
||||
Mining.Blast.Refresh=[[GREEN]]Dovednost [[YELLOW]]Dolovani vybuchem [[GREEN]]je nyni obnovena!
|
||||
Repair.SubSkill.Repair.Name=Opravovani
|
||||
@ -192,33 +192,33 @@ Repair.Skills.AdeptDiamond=[[DARK_RED]]Nemas dostatek dovednosti pro opravu Diam
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]Nemas dostatek dovednosti pro opravu Zlatych predmetu.
|
||||
Repair.Skills.AdeptIron=[[DARK_RED]]Nejsi dostatecne zkuseny na opravu s Ironem.
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]Nemas dostatek dovednosti pro opravu Kamennych predmetu.
|
||||
Repair.Skills.Adept=[[RED]]Mus\u00ed\u0161 m\u00edt level [[YELLOW]]{0}[[RED]] k oprav\u011b [[YELLOW]]{1}
|
||||
Repair.Skills.Adept=Mus\u00ed\u0161 m\u00edt level [[YELLOW]]{0}[[RED]] k oprav\u011b [[YELLOW]]{1}
|
||||
Repair.Skills.FeltEasy=[[GRAY]]To bylo snadn\u00e9.
|
||||
Repair.Skills.FullDurability=[[GRAY]]Tento p\u0159edm\u011bt nen\u00ed po\u0161kozen\u00fd.
|
||||
Repair.Skills.SalvageSuccess=[[GRAY]] P\u0159edm\u011bt zachr\u00e1n\u011bn!
|
||||
Repair.Skills.NotFullDurability=[[TMAV\u011a_\u010cERVEN\u00c1]]Nem\u016f\u017eete sb\u00edrat poni\u010den\u00e9 v\u011bci.
|
||||
Repair.Skills.Mastery=[[RED]]Mistrovstvi v opravovani: [[YELLOW]]Extra {0} \u017eivotnosti obnovena
|
||||
Repair.Skills.Mastery=Mistrovstvi v opravovani: [[YELLOW]]Extra {0} \u017eivotnosti obnovena
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]Nem\u016f\u017ee\u0161 opravovat nestackovan\u00e9 p\u0159edm\u011bty.
|
||||
Repair.Skills.Super.Chance=[[RED]]\u0160ance na superopravov\u00e1n\u00ed: [[YELLOW]]{0}
|
||||
Repair.Skillup=[[YELLOW]]Dovednost v opravovani byla navysena o {0}. Celkem ({1})
|
||||
Repair.Skills.Super.Chance=\u0160ance na superopravov\u00e1n\u00ed: [[YELLOW]]{0}
|
||||
Repair.Skillup=Dovednost v opravovani byla navysena o {0}. Celkem ({1})
|
||||
Repair.Pretty.Name=Oprava
|
||||
Salvage.Pretty.Name=Zachr\u00e1nit
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]Sance na degradovani magicke sily predmetu: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]Pravd\u011bpodobnost \u00fasp\u011bchu AF: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Downgrade=[[RED]]Magick\u00e1 s\u00edla tohoto p\u0159edm\u011btu zesl\u00e1bla.
|
||||
Repair.Arcane.Fail=[[RED]]Predmet ztratil navzdy svou magickou silu.
|
||||
Repair.Arcane.Lost=[[RED]]Nemel jsi dostatocnou dovednost pro zachovani ocarovani predmetu.
|
||||
Repair.Arcane.Downgrade=Magick\u00e1 s\u00edla tohoto p\u0159edm\u011btu zesl\u00e1bla.
|
||||
Repair.Arcane.Fail=Predmet ztratil navzdy svou magickou silu.
|
||||
Repair.Arcane.Lost=Nemel jsi dostatocnou dovednost pro zachovani ocarovani predmetu.
|
||||
Repair.Arcane.Perfect=[[GREEN]]Udr\u017eel jsi nezn\u00e1mou enegii v tomto p\u0159edm\u011btu.
|
||||
Repair.Arcane.Rank=[[RED]]Tajemne kov\u00e1n\u00ed: [[YELLOW]]Level {0}/4
|
||||
Repair.Arcane.Rank=Tajemne kov\u00e1n\u00ed: [[YELLOW]]Level {0}/4
|
||||
Swords.Ability.Lower=[[GRAY]]**ODLOZIL JSI SVUJ MEC**
|
||||
Swords.Ability.Ready=[[GREEN]]**PRIPRAVIL JSI SVUJ MEC**
|
||||
Swords.Combat.Bleed.Chance=[[RED]]\u0160ance na krv\u00e1cen\u00ed: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=[[RED]]D\u00e9lka krv\u00e1cen\u00ed: [[YELLOW]]{0} tik\u016f
|
||||
Swords.Combat.Bleed.Chance=\u0160ance na krv\u00e1cen\u00ed: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=D\u00e9lka krv\u00e1cen\u00ed: [[YELLOW]]{0} tik\u016f
|
||||
Swords.Combat.Bleed.Note=[[GRAY]]NOTE: [[YELLOW]]1 trva 2 sekundy
|
||||
Swords.Combat.Bleeding.Started=[[DARK_RED]] Krv\u00e1c\u00ed\u0161!
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]Krvaceni bylo [[GREEN]]zastaveno[[GRAY]]!
|
||||
Swords.Combat.Bleeding=[[GREEN]]**NEPRITEL KRVACI**
|
||||
Swords.Combat.Counter.Chance=[[RED]]\u0160ance na proti\u00fatok: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Chance=\u0160ance na proti\u00fatok: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Hit=[[DARK_RED]]Zasa\u017een proti\u00fatokem!
|
||||
Swords.Combat.Countered=[[GREEN]]**PROTIUTOK**
|
||||
Swords.Combat.SS.Struck=[[DARK_RED]]Zasazen Hrozivym utokem!
|
||||
@ -232,13 +232,13 @@ Swords.SubSkill.Bleed.Name=Krv\u00e1cen\u00ed
|
||||
Swords.SubSkill.Bleed.Description=Aplikuj krv\u00e1cejic\u00ed DoTku
|
||||
Swords.Listener=Mece:
|
||||
Swords.SkillName=MECE
|
||||
Swords.Skills.SS.Off=[[RED]]**Hroziv\u00fd \u00fatok byl deaktivov\u00e1n**
|
||||
Swords.Skills.SS.Off=**Hroziv\u00fd \u00fatok byl deaktivov\u00e1n**
|
||||
Swords.Skills.SS.On=[[GREEN]]**HROZIVY UTOK BYL AKTIVOVAN**
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]Tvoje schopnost [[YELLOW]]Serrated Strikes [[GREEN]]je obnovena!
|
||||
Swords.Skills.SS.Other.Off=[[RED]]Hrozivy utok[[GREEN]] byl deaktivovan [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.Off=Hrozivy utok[[GREEN]] byl deaktivovan [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] pouzil [[RED]]Hrozivy utok!
|
||||
Swords.Skillup=[[YELLOW]]Dovednost mece byla navysena o {0}. Celkem ({1})
|
||||
Swords.SS.Length=[[RED]]D\u00e9lka Hroziv\u00e9ho \u00datoku: [[YELLOW]]{0}s
|
||||
Swords.Skillup=Dovednost mece byla navysena o {0}. Celkem ({1})
|
||||
Swords.SS.Length=D\u00e9lka Hroziv\u00e9ho \u00datoku: [[YELLOW]]{0}s
|
||||
Taming.Ability.Bonus.0=Ekologicky informovane
|
||||
Taming.Ability.Bonus.1=Vlci, vyhn\u011bte se nebezpe\u010d\u00ed
|
||||
Taming.Ability.Bonus.2=Husta srst
|
||||
@ -257,7 +257,7 @@ Taming.Ability.Locked.2=ZAM\u010cENO DOKU\u010e {0}+DOVEDNOST (OT\u0158ESUVZDORN
|
||||
Taming.Ability.Locked.3=ZAM\u010cENO DOKUD {0}+ DOVEDNOST (NABROU\u0160EN\u00c9 DR\u00c1PY)
|
||||
Taming.Ability.Locked.4=ZAM\u010cENO DOKU\u010e{0}+ DOVEDNOST (RYCHL\u00c9 OB\u010cERSTVEN\u00cd)
|
||||
Taming.Ability.Locked.5=UZAM\u010cENO DOKU\u010e {0}+ DOVEDNOST (Svat\u00fd Chrt)
|
||||
Taming.Combat.Chance.Gore=[[RED]]\u0160ance na nabodnut\u00ed: [[YELLOW]]{0}
|
||||
Taming.Combat.Chance.Gore=\u0160ance na nabodnut\u00ed: [[YELLOW]]{0}
|
||||
Taming.SubSkill.BeastLore.Name=Tradice \u0161elem
|
||||
Taming.SubSkill.BeastLore.Description=Na\u0159\u00edznut\u00ed kost\u00ed kontroluje vlky & oceloty
|
||||
Taming.SubSkill.ShockProof.Name=Otresuvzdorny
|
||||
@ -281,18 +281,18 @@ Taming.SubSkill.ThickFur.Description=Sn\u00ed\u017een\u00e9 zran\u011bn\u00ed,Od
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]Vlk vlk pribehl zpatky k tobe...
|
||||
Taming.Listener=Ochocovani:
|
||||
Taming.SkillName=OCHOCOVANI
|
||||
Taming.Skillup=[[YELLOW]]Dovednost v ochocovani byla navysena o {0}. Celkem ({1})
|
||||
Taming.Skillup=Dovednost v ochocovani byla navysena o {0}. Celkem ({1})
|
||||
Taming.Summon.Complete=[[GREEN]]Vyvol\u00e1n\u00ed hotovo
|
||||
Taming.Summon.Fail.Ocelot=[[RED]]M\u00e1\u0161 pobl\u00ed\u0161 p\u0159\u00edli\u0161 moc, abys povolal dal\u0161\u00edho.
|
||||
Taming.Summon.Fail.Wolf=[[RED]]M\u00e1\u0161 p\u0159\u00edli\u0161 mnoho vlk\u016f v okol\u00ed k tomu, aby jsi p\u0159ivolal dal\u0161\u00ed.
|
||||
Taming.Summon.Fail.Ocelot=M\u00e1\u0161 pobl\u00ed\u0161 p\u0159\u00edli\u0161 moc, abys povolal dal\u0161\u00edho.
|
||||
Taming.Summon.Fail.Wolf=M\u00e1\u0161 p\u0159\u00edli\u0161 mnoho vlk\u016f v okol\u00ed k tomu, aby jsi p\u0159ivolal dal\u0161\u00ed.
|
||||
Taming.Summon.Name.Format={0}s {1}
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]Delka trvani Besneni: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Berserk.Length=Delka trvani Besneni: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Bonus.0=Styl \u017eelezn\u00e9 pa\u017ee
|
||||
Unarmed.Ability.Bonus.1=+{0} Zv\u00fd\u0161en\u00ed zran\u011bn\u00ed
|
||||
Unarmed.Ability.Chance.ArrowDeflect=[[RED]]\u0160ance na vych\u00edlen\u00ed \u0161\u00edpu: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=[[RED]]\u0160ance na odzbrojen\u00ed: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=[[RED]]\u0160ance na \u017delezn\u00fd stisk: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=[[RED]] Tv\u016fj soupe\u0159 m\u00e1 \u017eelezn\u00e9 sev\u0159en\u00ed!
|
||||
Unarmed.Ability.Chance.ArrowDeflect=\u0160ance na vych\u00edlen\u00ed \u0161\u00edpu: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=\u0160ance na odzbrojen\u00ed: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=\u0160ance na \u017delezn\u00fd stisk: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker= Tv\u016fj soupe\u0159 m\u00e1 \u017eelezn\u00e9 sev\u0159en\u00ed!
|
||||
Unarmed.Ability.IronGrip.Defender=[[GREEN]]Tv\u016fj \u017eelezny stisk zabr\u00e1nil tomu abys byl odzbrojen!
|
||||
Unarmed.Ability.Lower=[[GRAY]]**SKL\u00c1N\u00cd\u0160 SV\u00c9 P\u011aSTI**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**PRIPRAVIL JSI SVOJE PESTI**
|
||||
@ -308,16 +308,16 @@ Unarmed.SubSkill.IronGrip.Name=\u017delezn\u00fd stisk
|
||||
Unarmed.SubSkill.IronGrip.Description=Zabra\u0148uje va\u0161emu odzbrojen\u00ed
|
||||
Unarmed.Listener=Neozbrojeny:
|
||||
Unarmed.SkillName=NEOZBROJENY
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**Besneni bylo deaktivovano**
|
||||
Unarmed.Skills.Berserk.Off=**Besneni bylo deaktivovano**
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**BESNENI AKTIVOVANO**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]]Besneni[[GREEN]] bylo deaktivovano [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.Off=Besneni[[GREEN]] bylo deaktivovano [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] pouzil [[RED]]Besneni!
|
||||
Unarmed.Skills.Berserk.Refresh=[[GREEN]]Tvoje [[YELLOW]]schopnost B\u011bsn\u011bn\u00ed [[GREEN]]byla obnovena!
|
||||
Unarmed.Skillup=[[YELLOW]]Dovednost v boji rukou byla navy\u0161ena o {0}. Celkem ({1})
|
||||
Unarmed.Skillup=Dovednost v boji rukou byla navy\u0161ena o {0}. Celkem ({1})
|
||||
Woodcutting.Ability.0=Vyfoukavac
|
||||
Woodcutting.Ability.1=Odfoukne listi
|
||||
Woodcutting.Ability.Chance.DDrop=[[RED]]\u0160ance na dvojn\u00e1sobn\u00fd zisk: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=[[RED]]D\u00e9lka Tree felleru: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Chance.DDrop=\u0160ance na dvojn\u00e1sobn\u00fd zisk: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=D\u00e9lka Tree felleru: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Locked.0=ZAM\u010cENO DOKUD {0}+ DOVEDNOST (FOUKA\u010c LIST\u00cd)
|
||||
Woodcutting.SubSkill.TreeFeller.Name=Ni\u010ditel strom\u016f (ABILITA)
|
||||
Woodcutting.SubSkill.TreeFeller.Description=Odp\u00e1l\u00ed strom
|
||||
@ -327,124 +327,124 @@ Woodcutting.SubSkill.HarvestLumber.Name=Dvojnasobne zisky
|
||||
Woodcutting.SubSkill.HarvestLumber.Description=Zdvojnasobi normalni zisk
|
||||
Woodcutting.Listener=D\u0159evorubectv\u00ed:
|
||||
Woodcutting.SkillName=DREVORUBECTVI
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]]Valec stromu[[GREEN]] byl deaktivovan [[YELLOW]]{0} t
|
||||
Woodcutting.Skills.TreeFeller.Off=Valec stromu[[GREEN]] byl deaktivovan [[YELLOW]]{0} t
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**V\u00c1LE\u010c STROM\u016e AKTIVOV\u00c1NO**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]Schopnost [[YELLOW]]Valec stromu [[GREEN]]byla obnovena!
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]]Valec stromu[[GREEN]] byl deaktivovan [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=Valec stromu[[GREEN]] byl deaktivovan [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]] pouzil [[RED]]Valece stromu!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]TVOJE SEKERA SE ROZLETELA NA TISICE KOUSKU!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]Tento strom je p\u0159\u00edli\u0161 velk\u00fd!
|
||||
Woodcutting.Skillup=[[YELLOW]]Dovednost v dolovani byla navysena o {0}. Celkem ({1})
|
||||
Woodcutting.Skills.TreeFeller.Splinter=TVOJE SEKERA SE ROZLETELA NA TISICE KOUSKU!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=Tento strom je p\u0159\u00edli\u0161 velk\u00fd!
|
||||
Woodcutting.Skillup=Dovednost v dolovani byla navysena o {0}. Celkem ({1})
|
||||
Ability.Generic.Refresh=[[GREEN]**SCHOPNOSTI OBNOVENY!**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
Combat.ArrowDeflect=[[WHITE]]**SIP VYCHYLEN**
|
||||
Combat.BeastLore=[[GREEN]]**TRADICE SELEM**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]Zivoty ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]Vlastn\u00edk ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**PRUNIK**
|
||||
Combat.StruckByGore=[[RED]]**BYL JSI PROBODNUT**
|
||||
Combat.StruckByGore=**BYL JSI PROBODNUT**
|
||||
Combat.TargetDazed=C\u00edl byl [[DARK_RED]]Omr\u00e1\u010den
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]Nejasne dotcen. Mas zavrat.
|
||||
mcMMO.Description=[[DARK_AQUA]]O [[YELLOW]]mcMMO[[DARK_AQUA]] Projekt:,[[GOLD]]mcMMO je [[RED]]open source[[GOLD]] RPG m\u00f3d vytvo\u0159en\u00fd v \u00fanoru 2011,[[GOLD]]autorem [[BLUE]]nossr50[[GOLD]]. C\u00edl projektu je poskytnout kvalitu RPG.,[[DARK_AQUA]]Tipy:,[[GOLD]] - [[GREEN]]Pou\u017eij [[RED]]/mcmmo help[[GREEN]] pro zobrazen\u00ed dostupn\u00fdch p\u0159\u00edkaz\u016f,[[GOLD]] - [[GREEN]]Type [[RED]]/SKILLNAME[[GREEN]] pro zobrazen\u00ed detailn\u00edch informac\u00ed o skillu,[[DARK_AQUA]]V\u00fdvoj\u00e1\u0159i:,[[GOLD]] - [[GREEN]]nossr50 [[BLUE]](Majitel),[[GOLD]] - [[GREEN]]GJ [[BLUE]](Vedouc\u00ed projektu),[[GOLD]] - [[GREEN]]NuclearW [[BLUE]](V\u00fdvoj\u00e1\u0159),[[GOLD]] - [[GREEN]]bm01 [[BLUE]](V\u00fdvoj\u00e1\u0159),[[GOLD]] - [[GREEN]]TfT_02 [[BLUE]](V\u00fdvoj\u00e1\u0159),[[GOLD]] - [[GREEN]]Glitchfinder [[BLUE]](V\u00fdvoj\u00e1\u0159),[[GOLD]] - [[GREEN]]t00thpick1 [[BLUE]](V\u00fdvoj\u00e1\u0159),[[DARK_AQUA]]U\u017eite\u010dn\u00e9 odkazy:,[[GOLD]] - [[GREEN]]https://github.com/mcMMO-Dev/mcMMO/issues[[GOLD]] Nahla\u0161ov\u00e1n\u00ed Chyb,[[GOLD]] - [[GREEN]]#mcmmo @ irc.esper.net[[GOLD]] IRC Chat,
|
||||
Commands.addlevels.AwardAll.1=[[GREEN]]Bylo v\u00e1m ud\u011bleno {0} \u00farovn\u00ed ve v\u0161ech dovednostech!
|
||||
Commands.addlevels.AwardAll.2=[[RED]]V\u0161echny schopnosti byly zm\u011bn\u011bny na {0}.
|
||||
Commands.addlevels.AwardAll.2=V\u0161echny schopnosti byly zm\u011bn\u011bny na {0}.
|
||||
Commands.addlevels.AwardSkill.1=[[GREEN]]Tvoje dovednost {1} je nyn\u00ed {0}!
|
||||
Commands.addlevels.AwardSkill.2=[[RED]]{0} bylo upraveno pro {1}.
|
||||
Commands.addlevels.AwardSkill.2={0} bylo upraveno pro {1}.
|
||||
Commands.addxp.AwardAll=[[GREEN]]Bylo v\u00e1m ud\u011bleno {0} zku\u0161enost\u00ed ve v\u0161ech skillech!
|
||||
Commands.addxp.AwardSkill=[[GREEN]]Z\u00edskal si {0} zku\u0161enost\u00ed v {1}!
|
||||
Commands.Ability.Off=Pou\u017eit\u00ed schopnosti bylo [[RED]] vypnuto
|
||||
Commands.Ability.On=Pou\u017eit\u00ed schopnosti bylo [[GREEN]]zapnuto
|
||||
Commands.AdminChat.Off=Admin chat [[RED]]Vypnuty
|
||||
Commands.AdminChat.On=Admin Chat[[GREEN]]Zapnut\u00fd
|
||||
Commands.AdminToggle=[[RED]]- Prepnout admin chat
|
||||
Commands.AdminToggle=- Prepnout admin chat
|
||||
Commands.Chat.Console=*\u0158\u00edd\u00edc\u00ed panel*
|
||||
Commands.Disabled=[[RED]]Tento prikaz je vypnuty.
|
||||
Commands.DoesNotExist=[[RED]]Hrac se v databaze nenachazi!
|
||||
Commands.GodMode.Disabled=[[YELLOW]]mcMMO Godmod vypnuty
|
||||
Commands.GodMode.Enabled=[[YELLOW]]mcMMO Godmod aktivovan
|
||||
Commands.Disabled=Tento prikaz je vypnuty.
|
||||
Commands.DoesNotExist=Hrac se v databaze nenachazi!
|
||||
Commands.GodMode.Disabled=mcMMO Godmod vypnuty
|
||||
Commands.GodMode.Enabled=mcMMO Godmod aktivovan
|
||||
Commands.GodMode.Forbidden=[mcMMO] M\u00f3d B\u016fh nen\u00ed povolen v tomto sv\u011bt\u011b (pod\u00edvej se do Povolen\u00ed)
|
||||
Commands.Inspect=<player> [[RED]]- Shl\u00e9dni detailn\u00ed informace o hr\u00e1\u010di
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]Pozvanka prijata. Pridal jsi se k party {0}
|
||||
Commands.Invite.Success=[[GREEN]]Pozv\u00e1nka \u00faspesne odesl\u00e1na.
|
||||
Commands.Leaderboards=<skill> <page> [[RED]]- Tabulka nejlep\u0161\u00edch
|
||||
Commands.mcc.Header=[[RED]]---[][[YELLOW]]mcMMO P\u0159\u00edkazy[[RED]][]---
|
||||
Commands.mcgod=[[RED]]- Prepnout GodMod
|
||||
Commands.mcc.Header=---[][[YELLOW]]mcMMO P\u0159\u00edkazy[[RED]][]---
|
||||
Commands.mcgod=- Prepnout GodMod
|
||||
Commands.mchud.Invalid=Nespr\u00e1vn\u00fd typ HUD.
|
||||
Commands.mcpurge.Success=[[GREEN]]Datab\u00e1ze byla \u00fasp\u011b\u0161n\u011b vy\u010dist\u011bna!
|
||||
Commands.mcrank.Heading=[[GOLD]]-=OSOBN\u00cd HODNOCEN\u00cd=-
|
||||
Commands.mcrank.Overall=[[YELLOW]]Celkov\u00e1[[GREEN]] - [[GOLD]]Hodnost [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=[[RED]]C\u00cdL: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill=[[YELLOW]]{0}[[GREEN]] - [[GOLD]]Hodnost [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Overall=Celkov\u00e1[[GREEN]] - [[GOLD]]Hodnost [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=C\u00cdL: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill={0}[[GREEN]] - [[GOLD]]Hodnost [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Unranked=[[WHITE]]Bez hodnosti
|
||||
Commands.mcrefresh.Success=[[RED]]{0}\'\' schopnosti obnoveny.
|
||||
Commands.mcrefresh.Success={0}\'\' schopnosti obnoveny.
|
||||
Commands.mcremove.Success=[[GREEN]]{0} byl \u00fasp\u011b\u0161n\u011b vymaz\u00e1n z datab\u00e1ze!
|
||||
Commands.mctop.Tip=[[GOLD]]Tip: Pro osobn\u00ed statistiky pou\u017eij [[RED]]/mcrank[[GOLD]]!
|
||||
Commands.mmoedit=[player] <skill> <newvalue> [[RED]] - Modify target
|
||||
Commands.mmoedit.AllSkills.1=[[GREEN]]Tv\u00e1 \u00farove\u0148 ve v\u0161ech skillech byla nastavena na {0}!
|
||||
Commands.mmoedit.Modified.1=[[GREEN]]Tv\u016fj skill v {0} byl pozm\u011bn\u011bn na {1}!
|
||||
Commands.mmoedit.Modified.2=[[RED]]{0} bylo upraveno pro {1}.
|
||||
Commands.mmoshowdb=[[YELLOW]]Aktu\u00e1ln\u00ed pou\u017e\u00edvan\u00e1 datab\u00e1ze je [[GREEN]]{0}
|
||||
Commands.ModDescription=[[RED]]- Precti si strucny popis pluginu
|
||||
Commands.mmoedit.Modified.2={0} bylo upraveno pro {1}.
|
||||
Commands.mmoshowdb=Aktu\u00e1ln\u00ed pou\u017e\u00edvan\u00e1 datab\u00e1ze je [[GREEN]]{0}
|
||||
Commands.ModDescription=- Precti si strucny popis pluginu
|
||||
Commands.NoConsole=Tento prikaz nepodporuje pouziti z konzole.
|
||||
Commands.Notifications.Off=Oznamov\u00e1n\u00ed schopnost\u00ed [[RED]]vypnuto
|
||||
Commands.Notifications.On=Oznamov\u00e1n\u00ed schopnost\u00ed [[GREEN]]zapnuto
|
||||
Commands.Offline=[[RED]]Tento p\u0159\u00edkaz nefunguje pro offline hr\u00e1\u010de.
|
||||
Commands.Offline=Tento p\u0159\u00edkaz nefunguje pro offline hr\u00e1\u010de.
|
||||
Commands.Other=[[GREEN]]--OSTATNI PRIKAZY--
|
||||
Commands.Party.Header=[[RED]]-----[][[GREEN]]PARTA[[RED]][]-----
|
||||
Commands.Party.Header=-----[][[GREEN]]PARTA[[RED]][]-----
|
||||
Commands.Party.Status=[[DARK_GRAY]]JM\u00c9NO: [[WHITE]]{0} {1}
|
||||
Commands.Party.ShareMode=[[DARK_GRAY]]M\u00d3D SD\u00cdLEN\u00cd:
|
||||
Commands.Party.ItemShare=[[GRAY]]P\u0158EDM\u011aT [[DARK_AQUA]]({0})
|
||||
Commands.Party.ExpShare=[[GRAY]]EXP [[DARK_AQUA]]({0})
|
||||
Commands.Party.ItemShareCategories=[[DARK_GRAY]]Sd\u00edl\u00edm p\u0159edm\u011bty: [[GRAY]][[ITALIC]]{0}
|
||||
Commands.Party.MembersNear=[[DARK_GRAY]]BL\u00cdZKO TEBE[[DARK_AQUA]]{0}[[DARK_GRAY]]/[[DARK_AQUA]]{1}
|
||||
Commands.Party.Accept=[[RED]]- Potvrdit pozvanku do party
|
||||
Commands.Party.Accept=- Potvrdit pozvanku do party
|
||||
Commands.Party.Chat.Off=Chat jenom pro partu [[RED]]Vypnuty
|
||||
Commands.Party.Chat.On=Party chat [[RED]]Off
|
||||
Commands.Party.Commands=[[GREEN]]--P\u0158\u00cdKAZY PARTY--
|
||||
Commands.Party.Invite.0=[[RED]]VAROVANI: [[GREEN]]Obdrzel jsi pozvanku do party {0} od {1}
|
||||
Commands.Party.Invite.1=[[YELLOW]]Napi\u0161te [[GREEN]]/party accept[[YELLOW]] abyste p\u0159ijali pozv\u00e1nku
|
||||
Commands.Party.Invite=[[RED]]- Poslat pozv\u00e1nku do party
|
||||
Commands.Party.Invite.0=VAROVANI: [[GREEN]]Obdrzel jsi pozvanku do party {0} od {1}
|
||||
Commands.Party.Invite.1=Napi\u0161te [[GREEN]]/party accept[[YELLOW]] abyste p\u0159ijali pozv\u00e1nku
|
||||
Commands.Party.Invite=- Poslat pozv\u00e1nku do party
|
||||
Commands.Party.Join=[[GRAY]]P\u0159idal/a jste se do party: {0}
|
||||
Commands.Party.Create=[[GRAY]]Vytvo\u0159ena parta: {0}
|
||||
Commands.Party.Rename=[[GRAY]]Jm\u00e9no party zm\u011bn\u011bno na: [[WHITE]]{0}
|
||||
Commands.Party.SetSharing=[[GRAY]]Parta {0} sd\u00edl\u00ed nastaven\u00ed na: [[DARK_AQUA]]{1}
|
||||
Commands.Party.ToggleShareCategory=[[GRAY]]Sd\u00edlen\u00ed v\u011bc\u00ed v part\u011b pro [[GOLD]]{0} [[GRAY]]bylo [[DARK_AQUA]]{1}
|
||||
Commands.Party.AlreadyExists=[[DARK_RED]]Parta {0} u\u017e existuje!
|
||||
Commands.Party.Kick=[[RED]]Byl jsi vyhozen z party {0}!
|
||||
Commands.Party.Leave=[[RED]]Opustil jsi party
|
||||
Commands.Party.Members.Header=[[RED]]-----[][[GREEN]]\u010cLENOV\u00c9[[RED]][]-----
|
||||
Commands.Party.Kick=Byl jsi vyhozen z party {0}!
|
||||
Commands.Party.Leave=Opustil jsi party
|
||||
Commands.Party.Members.Header=-----[][[GREEN]]\u010cLENOV\u00c9[[RED]][]-----
|
||||
Commands.Party.None=[RED]]Nejsi v zadne party.
|
||||
Commands.Party.Quit=[[RED]]- Opustil jsi svoji aktualni partu
|
||||
Commands.Party.Quit=- Opustil jsi svoji aktualni partu
|
||||
Commands.Party.Teleport=<hrac> [[RED]]- Teleport ke clenovi party
|
||||
Commands.Party.Toggle=[[RED]]- Zapnout party chat
|
||||
Commands.Party.1=[[RED]]- Vytvo\u0159en\u00ed nov\u00e9 party
|
||||
Commands.Party.2=[[RED]]- P\u0159ipoj\u00ed se k hr\u00e1\u010dov\u011b part\u011b
|
||||
Commands.Party.Toggle=- Zapnout party chat
|
||||
Commands.Party.1=- Vytvo\u0159en\u00ed nov\u00e9 party
|
||||
Commands.Party.2=- P\u0159ipoj\u00ed se k hr\u00e1\u010dov\u011b part\u011b
|
||||
Commands.ptp.Enabled=Teleportace paret [[GREEN]]zapnut\u00e1
|
||||
Commands.ptp.Disabled=Teleportace paret [[RED]]vypnut\u00e1
|
||||
Commands.ptp.NoRequests=[[RED]]V tuto chv\u00edli nem\u00e1te \u017e\u00e1dne po\u017eadavky o teleport
|
||||
Commands.ptp.NoWorldPermissions=[[RED]][mcMMO] Nem\u00e1\u0161 opr\u00e1vn\u011bn\u00ed pro teleportaci do sv\u011bta {0}.
|
||||
Commands.ptp.Request1=[[YELLOW]]{0} [[GREEN]]po\u017e\u00e1dal ,aby se k v\u00e1m mohl teleportovat.
|
||||
Commands.ptp.NoRequests=V tuto chv\u00edli nem\u00e1te \u017e\u00e1dne po\u017eadavky o teleport
|
||||
Commands.ptp.NoWorldPermissions=[mcMMO] Nem\u00e1\u0161 opr\u00e1vn\u011bn\u00ed pro teleportaci do sv\u011bta {0}.
|
||||
Commands.ptp.Request1={0} [[GREEN]]po\u017e\u00e1dal ,aby se k v\u00e1m mohl teleportovat.
|
||||
Commands.ptp.Request2=[[GREEN]]K teleportu napi\u0161te [[YELLOW]]/ptp accept. [[GREEN]]Po\u017eadavek vypr\u0161\u00ed za [[RED]]{0} [[GREEN]]sekund.
|
||||
Commands.ptp.AcceptAny.Enabled=Potvrzen\u00ed teleportu party [[GREEN]]zapnut
|
||||
Commands.ptp.AcceptAny.Disabled=Potvrzen\u00ed teleportu party [[RED]]vypnuto
|
||||
Commands.ptp.RequestExpired=[[RED]]Po\u017eadavek o teleport party vypr\u0161el!
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO[[BLUE]] Rebricek [[YELLOW]]Celkovych levelu--
|
||||
Commands.ptp.RequestExpired=Po\u017eadavek o teleport party vypr\u0161el!
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO[[BLUE]] Rebricek [[YELLOW]]Celkovych levelu--
|
||||
Commands.PowerLevel.Capped=[[DARK_RED]]CELKOV\u00c1 \u00daROVE\u0147: [[GREEN]]{0} [[DARK_RED]]MAXIM\u00c1LN\u00cd \u00daROVE\u0147: [[YELLOW]]{1}
|
||||
Commands.PowerLevel=[[DARK_RED]]CELKOVY LEVEL: [[GREEN]]{0}
|
||||
Commands.Reset.All=[[GREEN]] Vsechny vase dovednosti byly uspesne resetov\u00e1ny.
|
||||
Commands.Reset.Single=[[GREEN]]Tvoje dovednost {0} byla uspesne restartovana.
|
||||
Commands.Reset=[[RED]]Resetov\u00e1n\u00ed zku\u0161enost\u00ed na level 0
|
||||
Commands.Skill.Invalid=[[RED]]Neplatny nazev dovednosti!
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--mcMMO [[BLUE]]{0}[[YELLOW]] Tabulka nejlepsich--
|
||||
Commands.SkillInfo=[[RED]]- Shl\u00e9dnout detailn\u00ed informace o dovednosti
|
||||
Commands.Reset=Resetov\u00e1n\u00ed zku\u0161enost\u00ed na level 0
|
||||
Commands.Skill.Invalid=Neplatny nazev dovednosti!
|
||||
Commands.Skill.Leaderboard=--mcMMO [[BLUE]]{0}[[YELLOW]] Tabulka nejlepsich--
|
||||
Commands.SkillInfo=- Shl\u00e9dnout detailn\u00ed informace o dovednosti
|
||||
Commands.Stats.Self=Tvoje statistiky
|
||||
Commands.Stats=[[RED]]- Shl\u00e9dnout svoje mcMMO statistiky
|
||||
Commands.ToggleAbility=[[RED]]- Aktivace schopnosti prav\u00fdm tla\u010d\u00edtkem.
|
||||
Commands.Usage.0=[[RED]]Spr\u00e1vn\u00e9 pou\u017eit\u00ed je /{0}
|
||||
Commands.Usage.1=[[RED]]Spr\u00e1vn\u00e9 pou\u017eit\u00ed je /{0} {1}
|
||||
Commands.Usage.2=[[RED]]Spr\u00e1vn\u00e9 pou\u017eit\u00ed je /{0} {1} {2}
|
||||
Commands.Usage.3=[[RED]]Spr\u00e1vn\u00e9 pou\u017eit\u00ed je /{0} {1} {2} {3}
|
||||
Commands.Stats=- Shl\u00e9dnout svoje mcMMO statistiky
|
||||
Commands.ToggleAbility=- Aktivace schopnosti prav\u00fdm tla\u010d\u00edtkem.
|
||||
Commands.Usage.0=Spr\u00e1vn\u00e9 pou\u017eit\u00ed je /{0}
|
||||
Commands.Usage.1=Spr\u00e1vn\u00e9 pou\u017eit\u00ed je /{0} {1}
|
||||
Commands.Usage.2=Spr\u00e1vn\u00e9 pou\u017eit\u00ed je /{0} {1} {2}
|
||||
Commands.Usage.3=Spr\u00e1vn\u00e9 pou\u017eit\u00ed je /{0} {1} {2} {3}
|
||||
Commands.Usage.Level=\u00darove\u0148
|
||||
Commands.Usage.Message=zprava
|
||||
Commands.Usage.Page=stranka
|
||||
@ -454,51 +454,51 @@ Commands.Usage.Player=hrac
|
||||
Commands.Usage.Rate=hodnota
|
||||
Commands.Usage.Skill=Dovednost
|
||||
Commands.Usage.XP=Zku\u0161enostn\u00ed body
|
||||
mcMMO.NoInvites=[[RED]]Momentalne nemas zadne pozvanky
|
||||
mcMMO.NoInvites=Momentalne nemas zadne pozvanky
|
||||
mcMMO.NoPermission=[[DARK_RED]]Nedostatecna prava
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]Pokud nemas pristup k schopnosti, nebude zobrazena.
|
||||
Party.Forbidden=[mcMMO] Party nejsou povoleny (pod\u00edvej se do Povolen\u00ed)
|
||||
Party.Help.0=[[RED]]Spr\u00e1vn\u00e9 pou\u017eit\u00ed je [[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=[[RED]]Pro vytvo\u0159en\u00ed party, pou\u017eij [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.2=[[RED]]Pora\u010f se s [[DARK_AQUA]]{0} [[RED]]pro v\u00edce informac\u00ed
|
||||
Party.Help.3=[[RED]]Pou\u017eij [[DARK_AQUA]]{0} <player> [password] [[RED]]pro vstup nebo [[DARK_AQUA]]{1} [[RED]]pro opu\u0161t\u011bn\u00ed
|
||||
Party.Help.4=[[RED]]Pro uzam\u010den\u00ed nebo odem\u010den\u00ed tv\u00e9 party, pou\u017eij [[DARK_AQUA]]{0}
|
||||
Party.Help.5=[[RED]]Pro ochr\u00e1n\u011bn\u00ed va\u0161\u00ed party heslem, pou\u017eij [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=[[RED]]Pro vykopnut\u00ed hr\u00e1\u010de z tv\u00e9 party, pou\u017eij [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.7=[[RED]]Pro p\u0159esunut\u00ed v\u016fdcovstv\u00ed tv\u00e9 party, pou\u017eij [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=[[RED]]Pro zru\u0161en\u00ed va\u0161\u00ed party pou\u017eij [[DARK_AQUA]]{0}
|
||||
Party.Help.9=[[RED]]Pou\u017eijte[[DARK_AQUA]]{0} [[RED]]abyste sd\u00edlel v\u011bci se \u010dleny party.
|
||||
Party.Help.10=[[RED]]Pou\u017eij [[DARK_AQUA]]{0} [[RED]]k zapnut\u00ed sd\u00edlen\u00ed zku\u0161enostn\u00edch bod\u016f se \u010dleny party
|
||||
Party.Help.0=Spr\u00e1vn\u00e9 pou\u017eit\u00ed je [[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=Pro vytvo\u0159en\u00ed party, pou\u017eij [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.2=Pora\u010f se s [[DARK_AQUA]]{0} [[RED]]pro v\u00edce informac\u00ed
|
||||
Party.Help.3=Pou\u017eij [[DARK_AQUA]]{0} <player> [password] [[RED]]pro vstup nebo [[DARK_AQUA]]{1} [[RED]]pro opu\u0161t\u011bn\u00ed
|
||||
Party.Help.4=Pro uzam\u010den\u00ed nebo odem\u010den\u00ed tv\u00e9 party, pou\u017eij [[DARK_AQUA]]{0}
|
||||
Party.Help.5=Pro ochr\u00e1n\u011bn\u00ed va\u0161\u00ed party heslem, pou\u017eij [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=Pro vykopnut\u00ed hr\u00e1\u010de z tv\u00e9 party, pou\u017eij [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.7=Pro p\u0159esunut\u00ed v\u016fdcovstv\u00ed tv\u00e9 party, pou\u017eij [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=Pro zru\u0161en\u00ed va\u0161\u00ed party pou\u017eij [[DARK_AQUA]]{0}
|
||||
Party.Help.9=Pou\u017eijte[[DARK_AQUA]]{0} [[RED]]abyste sd\u00edlel v\u011bci se \u010dleny party.
|
||||
Party.Help.10=Pou\u017eij [[DARK_AQUA]]{0} [[RED]]k zapnut\u00ed sd\u00edlen\u00ed zku\u0161enostn\u00edch bod\u016f se \u010dleny party
|
||||
Party.InformedOnJoin={0} [[GREEN]]se p\u0159idal do va\u0161\u00ed party
|
||||
Party.InformedOnQuit={0} [[GREEN]]opustil va\u0161\u00ed partu
|
||||
Party.InformedOnNameChange=[[GOLD]]{0} [[GREEN]]nastavil jm\u00e9no party na [[WHITE]]{1}
|
||||
Party.InvalidName=[[DARK_RED]]Toto nen\u00ed mo\u017en\u00e9 jm\u00e9no pro partu.
|
||||
Party.Invite.Self=[[RED]]Nem\u016f\u017ee\u0161 pozvat s\u00e1m sebe!
|
||||
Party.IsLocked=[[RED]]Tahla parta je ji\u017e uzamknuta!
|
||||
Party.IsntLocked=[[RED]]Tato parta je zamknuta!
|
||||
Party.Locked=[[RED]]Parta je zamnuta, pouze velitel party t\u011b m\u016f\u017ee p\u0159izvat.
|
||||
Party.Invite.Self=Nem\u016f\u017ee\u0161 pozvat s\u00e1m sebe!
|
||||
Party.IsLocked=Tahla parta je ji\u017e uzamknuta!
|
||||
Party.IsntLocked=Tato parta je zamknuta!
|
||||
Party.Locked=Parta je zamnuta, pouze velitel party t\u011b m\u016f\u017ee p\u0159izvat.
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} nen\u00ed ve tv\u00e9 part\u011b.
|
||||
Party.NotOwner=[[DARK_RED]]Nejste v\u016fdcem party.
|
||||
Party.Owner.New=[[GREEN]]{0} se stal v\u016fdce party.
|
||||
Party.Owner.NotLeader=[[DARK_RED]]U\u017e nejsi v\u016fdce party.
|
||||
Party.Owner.Player=[[GREEN]]Nyn\u00ed jsi v\u016fdce party.
|
||||
Party.Password.None=[[RED]]Tato parta je zaheslov\u00e1na. Pros\u00edm napi\u0161te heslo pro vstup.
|
||||
Party.Password.Incorrect=[[RED]]Heslo k part\u011b je \u0161patn\u011b!
|
||||
Party.Password.None=Tato parta je zaheslov\u00e1na. Pros\u00edm napi\u0161te heslo pro vstup.
|
||||
Party.Password.Incorrect=Heslo k part\u011b je \u0161patn\u011b!
|
||||
Party.Password.Set=[[GREEN]]Heslo do party nastaveno na {0}
|
||||
Party.Password.Removed=[[GREEN]]Heslo party bylo vy\u010di\u0161t\u011bno.
|
||||
Party.Player.Invalid=[[RED]]Tohle neni platny hrac.
|
||||
Party.Player.Invalid=Tohle neni platny hrac.
|
||||
Party.NotOnline=[[DARK_RED]]{0} nen\u00ed online!
|
||||
Party.Player.InSameParty=[[RED]]{0} u\u017e je na va\u0161\u00ed party!
|
||||
Party.Player.InSameParty={0} u\u017e je na va\u0161\u00ed party!
|
||||
Party.PlayerNotInParty=[[DARK_RED]]{0} nen\u00ed na party
|
||||
Party.Specify=[[RED]]Mus\u00ed\u0161 specifikovat partu.
|
||||
Party.Teleport.Dead=[[RED]]Nemuzes se teleportovat k mrtvemu hraci.
|
||||
Party.Teleport.Hurt=[[RED]]Byl jsi zran\u011bn v posledn\u00edch {0} sekund\u00e1ch a nem\u016f\u017ee\u0161 se teleportovat.
|
||||
Party.Specify=Mus\u00ed\u0161 specifikovat partu.
|
||||
Party.Teleport.Dead=Nemuzes se teleportovat k mrtvemu hraci.
|
||||
Party.Teleport.Hurt=Byl jsi zran\u011bn v posledn\u00edch {0} sekund\u00e1ch a nem\u016f\u017ee\u0161 se teleportovat.
|
||||
Party.Teleport.Player=[[GREEN]]Byl jsi teleportovan k {0}.
|
||||
Party.Teleport.Self=[[RED]]Nem\u016f\u017ee\u0161 se teleportovat s\u00e1m na sebe!
|
||||
Party.Teleport.Self=Nem\u016f\u017ee\u0161 se teleportovat s\u00e1m na sebe!
|
||||
Party.Teleport.Target=[[GREEN]]{0} se k tobe teleportoval.
|
||||
Party.Teleport.Disabled=[[RED]]{0} neumo\u017e\u0148uje teleportace paret
|
||||
Party.Rename.Same=[[RED]]Toto u\u017e je jm\u00e9no va\u0161\u00ed party!
|
||||
Party.Join.Self=[[RED]]Nem\u016f\u017ee\u0161 nabrat sebe!
|
||||
Party.Teleport.Disabled={0} neumo\u017e\u0148uje teleportace paret
|
||||
Party.Rename.Same=Toto u\u017e je jm\u00e9no va\u0161\u00ed party!
|
||||
Party.Join.Self=Nem\u016f\u017ee\u0161 nabrat sebe!
|
||||
Party.Unlocked=[[GRAY]]Party je odemknuta
|
||||
Party.Disband=[[GRAY]]Parta se rozpadla
|
||||
Party.Status.Locked=[[DARK_RED]](POUZE POZV\u00c1NKY)
|
||||
@ -508,8 +508,8 @@ Party.ShareType.Item=P\u0158EDM\u011aT
|
||||
Party.ShareMode.None=\u017d\u00c1DN\u00dd
|
||||
Party.ShareMode.Equal=STEJN\u00dd
|
||||
Party.ShareMode.Random=N\u00c1HODN\u00dd
|
||||
Party.XpShare.Disabled=[[RED]]Sd\u00edlen\u00ed party zku\u0161enost\u00ed je vypnuto.
|
||||
Party.ItemShare.Disabled=[[RED]]Sd\u00edlen\u00ed item\u016f v part\u011b je zak\u00e1zan\u00e9.
|
||||
Party.XpShare.Disabled=Sd\u00edlen\u00ed party zku\u0161enost\u00ed je vypnuto.
|
||||
Party.ItemShare.Disabled=Sd\u00edlen\u00ed item\u016f v part\u011b je zak\u00e1zan\u00e9.
|
||||
Party.ItemShare.Category.Loot=Ko\u0159ist
|
||||
Party.ItemShare.Category.Mining=T\u011b\u017een\u00ed
|
||||
Party.ItemShare.Category.Herbalism=Bylink\u00e1\u0159stv\u00ed
|
||||
@ -531,11 +531,11 @@ Commands.XPGain.Woodcutting=K\u00e1cen\u00ed strom\u016f
|
||||
Commands.XPGain=[[DARK_GRAY]]Zisk dovednosti: [[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]Tvuj XP bar byl uzamcen na {0}!
|
||||
Commands.xplock.unlocked=[[GOLD]]Tvuj XP bar je nyni [[GREEN]]ODEMCEN[[GOLD]]!
|
||||
Commands.xprate.modified=[[RED]]Sazba zku\u0161enostn\u00edch bod\u016f byla zm\u011bn\u011bna na {0}
|
||||
Commands.xprate.over=[[RED]]mcMMO Event na XP N\u00e1sobek ZKON\u010cIL!
|
||||
Commands.xprate.proper.0=[[RED]]Spravne pouziti prikazu pro zmenu sazby dovednosti je /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=[[RED]]Spravne pou\u017eit\u00ed k obnov\u011b urovn\u011b XP na v\u00fdchoz\u00ed hodnotu je /xprate reset
|
||||
Commands.xprate.proper.2=[[RED]]Uvedte prosim true nebo false pro rozliseni zda-li se jedna o udalost na zisk dovednosti nebo ne
|
||||
Commands.xprate.modified=Sazba zku\u0161enostn\u00edch bod\u016f byla zm\u011bn\u011bna na {0}
|
||||
Commands.xprate.over=mcMMO Event na XP N\u00e1sobek ZKON\u010cIL!
|
||||
Commands.xprate.proper.0=Spravne pouziti prikazu pro zmenu sazby dovednosti je /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=Spravne pou\u017eit\u00ed k obnov\u011b urovn\u011b XP na v\u00fdchoz\u00ed hodnotu je /xprate reset
|
||||
Commands.xprate.proper.2=Uvedte prosim true nebo false pro rozliseni zda-li se jedna o udalost na zisk dovednosti nebo ne
|
||||
Commands.xprate.started.0=[[GOLD]]XP EVENT PRO mcMMO ZA\u010cAL!
|
||||
Commands.xprate.started.1=[[GOLD]]mcMMO XP N\u00c1SOBEK JE NYN\u00cd {0}x!
|
||||
XPRate.Event=[[GOLD]]mcMMO je nyni v modu zmeneneho pomeru ziskavani dovednosti! Nasobek pomeru dovednosti je {0}x!
|
||||
@ -548,28 +548,28 @@ Guides.Available=[[GRAY]]N\u00e1vod k {0} - napi\u0161te /{1} ? [page]
|
||||
Guides.Header=[[GOLD]]-=[[GREEN]]{0} N\u00e1vod[[GOLD]]=-
|
||||
Guides.Page.Invalid=Nespr\u00e1vn\u00e9 \u010d\u00edslo str\u00e1nky!
|
||||
Guides.Page.OutOfRange=Tato str\u00e1nka neexistuje, je tu pouze {0} str\u00e1nek.
|
||||
Guides.Usage=[[RED]] Pou\u017eit\u00ed je /{0} ? [page]
|
||||
Guides.Usage= Pou\u017eit\u00ed je /{0} ? [page]
|
||||
Guides.Smelting.Section.0=Ji\u017e brzy...
|
||||
Inspect.Offline=[[RED]]Nem\u00e1\u0161 pr\u00e1va kontrolovat hr\u00e1\u010de co nejsou online!
|
||||
Inspect.Offline=Nem\u00e1\u0161 pr\u00e1va kontrolovat hr\u00e1\u010de co nejsou online!
|
||||
Inspect.OfflineStats=mcMMO Statistiky pro offline hrace [[YELLOW]]{0}
|
||||
Inspect.Stats=[[GREEN]]mcMMO Statistiky pro [[YELLOW]]{0}
|
||||
Inspect.TooFar=[[RED]]Jsi moc daleko pro prozkoum\u00e1n\u00ed tohoto hr\u00e1\u010de.
|
||||
Inspect.TooFar=Jsi moc daleko pro prozkoum\u00e1n\u00ed tohoto hr\u00e1\u010de.
|
||||
Item.ChimaeraWing.Fail=**K\u0158\u00cdDLO CHIM\u00c9RY SELHALO!**
|
||||
Item.ChimaeraWing.Pass=**KRIDLO CHIMERY**
|
||||
Item.ChimaeraWing.Name=K\u0159\u00eddlo chim\u00e9ry
|
||||
Item.ChimaeraWing.Lore=[[GRAY]]Teleportuje v\u00e1s k va\u0161\u00ed posteli.
|
||||
Item.Generic.Wait=[[RED]]Mus\u00ed\u0161 po\u010dkat ne\u017e to zas bude\u0161 moci pou\u017e\u00edt! [[YELLOW]]({0}s)
|
||||
Item.Generic.Wait=Mus\u00ed\u0161 po\u010dkat ne\u017e to zas bude\u0161 moci pou\u017e\u00edt! [[YELLOW]]({0}s)
|
||||
Item.Injured.Wait=Predchvili jsi byl zranen a musis pockat az budes moci pouzit tuto schopnost. [[YELLOW]]({0}s)
|
||||
Teleport.Commencing=[[GRAY]]Zah\u00e1jen\u00ed teleportu za[[GOLD]]({0}) [[GRAY]]sekund, pros\u00edm st\u016fj klidn\u011b...
|
||||
Teleport.Cancelled=[[DARK_RED]]Teleportace zru\u0161ena
|
||||
Skills.Child=[[GOLD]](D\u011btsk\u00e1 dovednost)
|
||||
Skills.Disarmed=[[DARK_RED]]Byl jsi odzbrojen!
|
||||
Skills.Header=[[RED]]-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.Header=-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.NeedMore=[[DARK_RED]]Potrebujes vic
|
||||
Skills.Parents=RODI\u010cE
|
||||
Skills.Stats=[[YELLOW]]{0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.TooTired=[[RED]]Si moc unaveny na pouziti teto schopnosti znovu.
|
||||
Skills.Cancelled=[[RED]]{0} zru\u0161eno!
|
||||
Skills.Stats={0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.TooTired=Si moc unaveny na pouziti teto schopnosti znovu.
|
||||
Skills.Cancelled={0} zru\u0161eno!
|
||||
Skills.ConfirmOrCancel=[[GREEN]Stiskn\u011bte znovu prav\u00e9 tla\u010d\u00edtko pro potvrzen\u00ed [[GOLD]]{0}[[GREEN]]. Lev\u00e9 tla\u010d\u00edtko ke zru\u0161en\u00ed.
|
||||
Stats.Header.Combat=[[GOLD]]-=BOJOVE DOVEDNOSTI=-
|
||||
Stats.Header.Gathering=[[GOLD]]-=SHROMAZDOVACI DOVEDNOSTI=-
|
||||
@ -589,15 +589,15 @@ Perks.ActivationTime.Bonus=[[GOLD]] ({0} s perkem V\u00fddr\u017enost)
|
||||
MOTD.Donate=[[DARK_AQUA]]Informace o p\u0159\u00edsp\u011bvc\u00edch:
|
||||
MOTD.Hardcore.DeathStatLoss.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Dovednost\u00ed penalizace kv\u016fli smrti : [[DARK_RED]]{0}%
|
||||
MOTD.Hardcore.Vampirism.Stats=[GOLD]][mcMMO] [[DARK_AQUA]]Up\u00edrsk\u00e9 Cizen\u00ed Stat\u016f: [[DARK_RED]]{0}%
|
||||
MOTD.PerksPrefix=[[RED]][mcMMO Perky]
|
||||
MOTD.PerksPrefix=[mcMMO Perky]
|
||||
MOTD.Version=[[GOLD]][mcMMO] - verze [[DARK_AQUA]]{0}
|
||||
MOTD.Website=[[GOLD]][mcMMO] [[GREEN]]{0}[[YELLOW]] - Web mcMMO
|
||||
Smelting.Ability.FluxMining=[[RED]]\u0160ANCE NA T\u011a\u017dBU VRT\u00c1KEM: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=[[RED]]N\u00e1sobi\u010d v\u00fdkonnosti paliva: [[YELLOW]]{0}x
|
||||
Smelting.Ability.FluxMining=\u0160ANCE NA T\u011a\u017dBU VRT\u00c1KEM: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=N\u00e1sobi\u010d v\u00fdkonnosti paliva: [[YELLOW]]{0}x
|
||||
Smelting.Ability.Locked.0=ZAM\u010cENO DOKU\u010e {0}+ DOVEDNOST (Z\u00c1KLADN\u00cd ZKU\u0160ENOSTN\u00cd ZES\u00cdLEN\u00cd)
|
||||
Smelting.Ability.Locked.1=UZAM\u010cENO DOKU\u010e {0}+ DOVEDNOST (T\u011b\u017eba vrt\u00e1kem)
|
||||
Smelting.Ability.SecondSmelt=[[RED]]\u0160ance na z\u00edsk\u00e1n\u00ed druh\u00e9 ztaveniny: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=[[RED]]N\u00c1SOBI\u010c ZKU\u0160ENOST\u00cd: [[YELLOW]]{0}x
|
||||
Smelting.Ability.SecondSmelt=\u0160ance na z\u00edsk\u00e1n\u00ed druh\u00e9 ztaveniny: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=N\u00c1SOBI\u010c ZKU\u0160ENOST\u00cd: [[YELLOW]]{0}x
|
||||
Smelting.SubSkill.FuelEfficiency.Name=V\u00fdkonnost paliva
|
||||
Smelting.SubSkill.FuelEfficiency.Description=Zvy\u0161uje dobu ho\u0159en\u00ed paliva v pec\u00edch p\u0159i taven\u00ed
|
||||
Smelting.SubSkill.SecondSmelt.Name=Druh\u00e1 ztavenina
|
||||
|
@ -1,6 +1,6 @@
|
||||
Acrobatics.Ability.Proc=[[GREEN]]**Graceful Landing**
|
||||
Acrobatics.Combat.Proc=[[GREEN]] **osgoi\'r**
|
||||
Acrobatics.DodgeChance=[[RED]]Dodge Chance: [[YELLOW]]{0}
|
||||
Acrobatics.DodgeChance=Dodge Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Name=Roll
|
||||
Acrobatics.SubSkill.Roll.Description=Reduces or Negates fall damage
|
||||
Acrobatics.SubSkill.GracefulRoll.Name=Graceful Roll
|
||||
@ -8,14 +8,14 @@ Acrobatics.SubSkill.GracefulRoll.Description=Twice as effective as a normal Roll
|
||||
Acrobatics.SubSkill.Dodge.Name=Dodge
|
||||
Acrobatics.SubSkill.Dodge.Description=Reduce attack damage by half
|
||||
Acrobatics.Listener=Acrobateg
|
||||
Acrobatics.SubSkill.Roll.Chance=[[RED]]Roll Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=[[RED]]Graceful Roll Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Chance=Roll Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=Graceful Roll Chance: [[YELLOW]]{0}
|
||||
Acrobatics.Roll.Text=**Rolled**
|
||||
Acrobatics.SkillName=ACROBATEG
|
||||
Acrobatics.Skillup=[[YELLOW]] Acrobateg sgil cynyddu {0}. Cyfanswm ({1})
|
||||
Archery.Combat.DazeChance=[[RED]]Chance to Daze: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=[[RED]]Chance to Retrieve Arrows: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=[[RED]]Skill Shot Bonus Damage: [[YELLOW]]{0}
|
||||
Acrobatics.Skillup= Acrobateg sgil cynyddu {0}. Cyfanswm ({1})
|
||||
Archery.Combat.DazeChance=Chance to Daze: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=Chance to Retrieve Arrows: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=Skill Shot Bonus Damage: [[YELLOW]]{0}
|
||||
Archery.SubSkill.SkillShot.Name=Skill Shot
|
||||
Archery.SubSkill.SkillShot.Description=Increases damage done with bows
|
||||
Archery.SubSkill.Daze.Name=Daze (Players)
|
||||
@ -23,7 +23,7 @@ Archery.SubSkill.ArrowRetrieval.Name=Arrow Retrieval
|
||||
Archery.SubSkill.ArrowRetrieval.Description=Chance to retrieve arrows from corpses
|
||||
Archery.Listener=Archery:
|
||||
Archery.SkillName=ARCHERY
|
||||
Archery.Skillup=[[YELLOW]] sgiliau Saethyddiaeth cynyddu {0}. Cyfanswm ({1})
|
||||
Archery.Skillup= sgiliau Saethyddiaeth cynyddu {0}. Cyfanswm ({1})
|
||||
Axes.Ability.Bonus.0=Axe Mastery
|
||||
Axes.Ability.Bonus.1=Bonus {0} damage
|
||||
Axes.Ability.Bonus.2=Impact
|
||||
@ -33,11 +33,11 @@ Axes.Ability.Bonus.5=Deal {0} Bonus DMG to unarmored foes
|
||||
Axes.Ability.Lower=[[GRAY]]**YOU LOWER YOUR AXE**
|
||||
Axes.Ability.Ready=[[GREEN]]**YOU READY YOUR AXE**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]You were CRITICALLY hit!
|
||||
Axes.Combat.CritChance=[[RED]]Chance to critically strike: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=[[RED]]CRITICAL HIT!
|
||||
Axes.Combat.CritChance=Chance to critically strike: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=CRITICAL HIT!
|
||||
Axes.Combat.GI.Proc=[[GREEN]]**STRUCK WITH GREAT FORCE**
|
||||
Axes.Combat.GI.Struck=[[RED]] ** ** BRIFO GAN EFFAITH FWYAF
|
||||
Axes.Combat.SS.Length=[[RED]]Skull Splitter Length: [[YELLOW]]{0}s
|
||||
Axes.Combat.GI.Struck= ** ** BRIFO GAN EFFAITH FWYAF
|
||||
Axes.Combat.SS.Length=Skull Splitter Length: [[YELLOW]]{0}s
|
||||
Axes.SubSkill.SkullSplitter.Name=Skull Splitter
|
||||
Axes.SubSkill.SkullSplitter.Description=Deal AoE Damage
|
||||
Axes.SubSkill.CriticalStrikes.Name=Critical Strikes
|
||||
@ -50,33 +50,33 @@ Axes.SubSkill.GreaterImpact.Name=Greater Impact
|
||||
Axes.SubSkill.GreaterImpact.Description=Deal bonus damage to unarmored foes
|
||||
Axes.Listener=Axes:
|
||||
Axes.SkillName=AXES
|
||||
Axes.Skills.SS.Off=[[RED]]**Skull Splitter has worn off**
|
||||
Axes.Skills.SS.Off=**Skull Splitter has worn off**
|
||||
Axes.Skills.SS.On=actifadu Penglog Llorweddol
|
||||
Axes.Skills.SS.Refresh=[[GREEN]] Eich [[YELLOW]] Penglog Llorweddol [[GREEN]] gallu ei hadnewyddu!
|
||||
Axes.Skills.SS.Other.Off=[[RED]]Skull Splitter[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.Off=Skull Splitter[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.On=[[GREEN]] {0} [[DARK_GREEN]] wedi defnyddio [[RED]] Llorweddol Benglog!
|
||||
Axes.Skillup=[[YELLOW]] sgiliau Echelau cynyddu {0}. Cyfanswm ({1})
|
||||
Axes.Skillup= sgiliau Echelau cynyddu {0}. Cyfanswm ({1})
|
||||
Excavation.Ability.Lower=[[GRAY]]**YOU LOWER YOUR SHOVEL**
|
||||
Excavation.Ability.Ready=[[GREEN]]**YOU READY YOUR SHOVEL**
|
||||
Excavation.SubSkill.GigaDrillBreaker.Name=Giga Drill Breaker
|
||||
Excavation.SubSkill.GigaDrillBreaker.Description=3x Drop Rate, 3x EXP, +Speed
|
||||
Excavation.SubSkill.TreasureHunter.Name=Treasure Hunter
|
||||
Excavation.SubSkill.TreasureHunter.Description=Ability to dig for treasure
|
||||
Excavation.Effect.Length=[[RED]]Giga Drill Breaker Length: [[YELLOW]]{0}s
|
||||
Excavation.Effect.Length=Giga Drill Breaker Length: [[YELLOW]]{0}s
|
||||
Excavation.Listener=Cloddio:
|
||||
Excavation.SkillName=CLODDIO
|
||||
Excavation.Skills.GigaDrillBreaker.Off=[[RED]]**Giga Drill Breaker has worn off**
|
||||
Excavation.Skills.GigaDrillBreaker.Off=**Giga Drill Breaker has worn off**
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**GIGA DRILL BREAKER ACTIVATED**
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]Your [[YELLOW]]Giga Drill Breaker [[GREEN]]ability is refreshed!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=[[RED]]Giga Drill Breaker[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=Giga Drill Breaker[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] has used [[RED]]Giga Drill Breaker!
|
||||
Excavation.Skillup=[[YELLOW]]Excavation skill increased by {0}. Total ({1})
|
||||
Fishing.Ability.Info=[[RED]]Magic Hunter: [[GRAY]] **Improves With Treasure Hunter Rank**
|
||||
Excavation.Skillup=Excavation skill increased by {0}. Total ({1})
|
||||
Fishing.Ability.Info=Magic Hunter: [[GRAY]] **Improves With Treasure Hunter Rank**
|
||||
Fishing.Ability.Locked.0=LOCKED UNTIL {0}+ SKILL (SHAKE)
|
||||
Fishing.Ability.Rank=[[RED]]Treasure Hunter Rank: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.MagicRate=[[RED]]Magic Hunter Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=[[RED]]Shake Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.FD=[[RED]]Fisherman\'\'s Diet: [[YELLOW]]Rank {0}
|
||||
Fishing.Ability.Rank=Treasure Hunter Rank: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.MagicRate=Magic Hunter Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=Shake Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.FD=Fisherman\'\'s Diet: [[YELLOW]]Rank {0}
|
||||
Fishing.SubSkill.TreasureHunter.Name=Treasure Hunter (Passive)
|
||||
Fishing.SubSkill.TreasureHunter.Description=Fish up misc. objects
|
||||
Fishing.SubSkill.MagicHunter.Name=Magic Hunter
|
||||
@ -89,13 +89,13 @@ Fishing.Chance.Raining=[[BLUE]] Rain Bonus
|
||||
Fishing.Listener=Fishing:
|
||||
Fishing.Ability.TH.MagicFound=[[GRAY]]You feel a touch of magic with this catch...
|
||||
Fishing.SkillName=FISHING
|
||||
Fishing.Skillup=[[YELLOW]]Fishing skill increased by {0}. Total ({1})
|
||||
Herbalism.Ability.DoubleDropChance=[[RED]]Double Drop Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTe.Length=[[RED]]Green Terra Length: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=[[RED]]You need more seeds to spread Green Terra.
|
||||
Herbalism.Ability.GTh.Chance=[[RED]]Green Thumb Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=[[RED]]**GREEN THUMB FAIL**
|
||||
Herbalism.Ability.GTh.Stage=[[RED]]Green Thumb Stage: [[YELLOW]] Crops grow in stage {0}
|
||||
Fishing.Skillup=Fishing skill increased by {0}. Total ({1})
|
||||
Herbalism.Ability.DoubleDropChance=Double Drop Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTe.Length=Green Terra Length: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=You need more seeds to spread Green Terra.
|
||||
Herbalism.Ability.GTh.Chance=Green Thumb Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=**GREEN THUMB FAIL**
|
||||
Herbalism.Ability.GTh.Stage=Green Thumb Stage: [[YELLOW]] Crops grow in stage {0}
|
||||
Herbalism.Ability.GTh=[[GREEN]]**GREEN THUMB**
|
||||
Herbalism.Ability.Lower=[[GRAY]]**YOU LOWER YOUR HOE**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**YOU READY YOUR HOE**
|
||||
@ -112,15 +112,15 @@ Herbalism.Listener=Meddygaeth lysieuol:
|
||||
Herbalism.SkillName=HERBALISM
|
||||
Herbalism.Skills.GTe.On=[[GREEN]]**GREEN TERRA ACTIVATED**
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]] Eich [[YELLOW]] Green Terra [[GREEN]] gallu ei hadnewyddu!
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]] Green terra [[GREEN]] wedi gwisgo i ffwrdd ar gyfer [[YELLOW]] {0}
|
||||
Herbalism.Skills.GTe.Other.Off= Green terra [[GREEN]] wedi gwisgo i ffwrdd ar gyfer [[YELLOW]] {0}
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]{0}[[DARK_GREEN]] has used [[RED]]Green Terra!
|
||||
Herbalism.Skillup=[[YELLOW]]Herbalism skill increased by {0}. Total ({1})
|
||||
Mining.Ability.Length=[[RED]] Hyd Torri\'r Super: [[YELLOW]] {0} s
|
||||
Herbalism.Skillup=Herbalism skill increased by {0}. Total ({1})
|
||||
Mining.Ability.Length= Hyd Torri\'r Super: [[YELLOW]] {0} s
|
||||
Mining.Ability.Locked.0=LOCKED UNTIL {0}+ SKILL (BLAST MINING)
|
||||
Mining.Ability.Locked.1=LOCKED UNTIL {0}+ SKILL (BIGGER BOMBS)
|
||||
Mining.Ability.Locked.2=LOCKED UNTIL {0}+ SKILL (DEMOLITIONS EXPERTISE)
|
||||
Mining.Ability.Lower=[[GRAY]]**YOU LOWER YOUR PICKAXE**
|
||||
Mining.Ability.Ready=[[GREEN]] ** CHI\'N BAROD EICH PICKAXE **
|
||||
Mining.Ability.Lower=[[GRAY]]You lower your Pickaxe.
|
||||
Mining.Ability.Ready=[[GREEN]] ** CHI'N BAROD EICH PICKAXE **
|
||||
Mining.SubSkill.SuperBreaker.Name=Super Breaker
|
||||
Mining.SubSkill.SuperBreaker.Description=Speed+, Triple Drop Chance
|
||||
Mining.SubSkill.DoubleDrops.Name=Double Drops
|
||||
@ -131,19 +131,19 @@ Mining.SubSkill.BiggerBombs.Name=Bigger Bombs
|
||||
Mining.SubSkill.BiggerBombs.Description=Increases TNT explosion radius
|
||||
Mining.SubSkill.DemolitionsExpertise.Name=Demolitions Expertise
|
||||
Mining.SubSkill.DemolitionsExpertise.Description=Decreases damage from TNT explosions
|
||||
Mining.Effect.Decrease=[[RED]]Demolitions Expert Damage Decrease: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=[[RED]]Double Drop Chance: [[YELLOW]]{0}
|
||||
Mining.Effect.Decrease=Demolitions Expert Damage Decrease: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=Double Drop Chance: [[YELLOW]]{0}
|
||||
Mining.Listener=Mwyngloddio:
|
||||
Mining.SkillName=MINING
|
||||
Mining.Skills.SuperBreaker.Off=[[RED]]**Super Breaker has worn off**
|
||||
Mining.Skills.SuperBreaker.Off=**Super Breaker has worn off**
|
||||
Mining.Skills.SuperBreaker.On=[[GREEN]]**SUPER BREAKER ACTIVATED**
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[RED]]Super Breaker[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.Off=Super Breaker[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] has used [[RED]]Super Breaker!
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]] Eich [[YELLOW]] Super Torri\'r [[GREEN]] gallu ei hadnewyddu!
|
||||
Mining.Skillup=[[YELLOW]] sgiliau Mwyngloddio cynyddu {0}. Cyfanswm ({1})
|
||||
Mining.Skillup= sgiliau Mwyngloddio cynyddu {0}. Cyfanswm ({1})
|
||||
Mining.Blast.Boom=[[GRAY]]**BOOM**
|
||||
Mining.Blast.Radius.Increase=[[RED]] Chwyth Cynnydd Radiws [[YELLOW]] {0}
|
||||
Mining.Blast.Rank=[[RED]]Blast Mining: [[YELLOW]] Rank {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Radius.Increase= Chwyth Cynnydd Radiws [[YELLOW]] {0}
|
||||
Mining.Blast.Rank=Blast Mining: [[YELLOW]] Rank {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Other.On=[[GREEN]]{0}[[DARK_GREEN]] has used [[RED]]Blast Mining!
|
||||
Mining.Blast.Refresh=[[GREEN]] Eich [[YELLOW]] Mwyngloddio Chwyth [[GREEN]] gallu ei hadnewyddu!
|
||||
Repair.SubSkill.Repair.Name=Repair
|
||||
@ -174,31 +174,31 @@ Repair.Skills.AdeptDiamond=[[DARK_RED]] Dydych chi ddim yn ddigon medrus i drwsi
|
||||
Repair.Skills.AdeptGold=[[DARK RED]] Dydych chi ddim yn ddigon medrus i drwsio Aur.
|
||||
Repair.Skills.AdeptIron=[[DARK_RED]]You\'re not skilled enough to repair Iron.
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]] Dydych chi ddim yn ddigon medrus i drwsio cerrig.
|
||||
Repair.Skills.Adept=[[RED]]You must be level [[YELLOW]]{0}[[RED]] to repair [[YELLOW]]{1}
|
||||
Repair.Skills.Adept=You must be level [[YELLOW]]{0}[[RED]] to repair [[YELLOW]]{1}
|
||||
Repair.Skills.FeltEasy=[[GRAY]]That felt easy.
|
||||
Repair.Skills.FullDurability=[[GRAY]]That is at full durability.
|
||||
Repair.Skills.SalvageSuccess=[[GRAY]]Item salvaged!
|
||||
Repair.Skills.NotFullDurability=[[DARK_RED]]You can\'t salvage damaged items.
|
||||
Repair.Skills.Mastery=[[RED]]Repair Mastery: [[YELLOW]]Extra {0} durability restored
|
||||
Repair.Skills.Mastery=Repair Mastery: [[YELLOW]]Extra {0} durability restored
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]You can\'t repair stacked items.
|
||||
Repair.Skills.Super.Chance=[[RED]]Super Repair Chance: [[YELLOW]]{0}
|
||||
Repair.Skillup=[[YELLOW]] sgiliau Atgyweirio cynyddu {0}. Cyfanswm ({1})
|
||||
Repair.Skills.Super.Chance=Super Repair Chance: [[YELLOW]]{0}
|
||||
Repair.Skillup= sgiliau Atgyweirio cynyddu {0}. Cyfanswm ({1})
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]AF Downgrade Chance: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]] Cyfradd Llwyddiant AF: [[YELLOW]] {0}%
|
||||
Repair.Arcane.Downgrade=[[RED]]Arcane power has decreased for this item.
|
||||
Repair.Arcane.Fail=[[RED]]P\u0175er dirgel wedi gadael yr eitem barhaol
|
||||
Repair.Arcane.Lost=[[RED]]You were not skilled enough to keep any enchantments.
|
||||
Repair.Arcane.Downgrade=Arcane power has decreased for this item.
|
||||
Repair.Arcane.Fail=P\u0175er dirgel wedi gadael yr eitem barhaol
|
||||
Repair.Arcane.Lost=You were not skilled enough to keep any enchantments.
|
||||
Repair.Arcane.Perfect=[[GREEN]]You have sustained the arcane energies in this item.
|
||||
Repair.Arcane.Rank=[[RED]]Arcane Forging: [[YELLOW]]Rank {0}/4
|
||||
Repair.Arcane.Rank=Arcane Forging: [[YELLOW]]Rank {0}/4
|
||||
Swords.Ability.Lower=[[GRAY]] ** I LEIHAU EICH CLEDDYF **
|
||||
Swords.Ability.Ready=[[GREEN]] ** CHI\'N BAROD EICH SWORD **
|
||||
Swords.Combat.Bleed.Chance=[[RED]]Bleed Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=[[RED]]Bleed Length: [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Chance=Bleed Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=Bleed Length: [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Note=[[GRAY]]NOTE: [[YELLOW]]1 Tick happens every 2 seconds
|
||||
Swords.Combat.Bleeding.Started=[[DARK_RED]] You\'re bleeding!
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]] y gwaedu wedi [[GREEN]] rhoi\'r gorau i [[GRAY]]!
|
||||
Swords.Combat.Bleeding=[[GREEN]]** GELYN GWAEDU\'N**
|
||||
Swords.Combat.Counter.Chance=[[RED]]Counter Attack Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Chance=Counter Attack Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Hit=[[DARK_RED]]Hit with a counter-attack!
|
||||
Swords.Combat.Countered=[[GREEN]] ** GWRTH-YMOSOD **
|
||||
Swords.Combat.SS.Struck=[[DARK_RED]] Taro gan Streiciau danheddog!
|
||||
@ -209,13 +209,13 @@ Swords.SubSkill.Bleed.Name=Bleed
|
||||
Swords.SubSkill.Bleed.Description=Apply a bleed DoT
|
||||
Swords.Listener=Swords:
|
||||
Swords.SkillName=SWORDS
|
||||
Swords.Skills.SS.Off=[[RED]]**Serrated Strikes has worn off**
|
||||
Swords.Skills.SS.Off=**Serrated Strikes has worn off**
|
||||
Swords.Skills.SS.On=[[GREEN]] ** Streiciau danheddog actifadu **
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]Your [[YELLOW]]Serrated Strikes [[GREEN]]ability is refreshed!
|
||||
Swords.Skills.SS.Other.Off=[[RED]] Streiciau danheddog [[GREEN]] wedi gwisgo i ffwrdd ar gyfer [[YELLOW]] {0}
|
||||
Swords.Skills.SS.Other.Off= Streiciau danheddog [[GREEN]] wedi gwisgo i ffwrdd ar gyfer [[YELLOW]] {0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]] {0} [[DARK_GREEN]] wedi defnyddio [[RED]] Streiciau danheddog!
|
||||
Swords.Skillup=[[YELLOW]]Swords skill increased by {0}. Total ({1})
|
||||
Swords.SS.Length=[[RED]]Serrated Strikes Length: [[YELLOW]]{0}s
|
||||
Swords.Skillup=Swords skill increased by {0}. Total ({1})
|
||||
Swords.SS.Length=Serrated Strikes Length: [[YELLOW]]{0}s
|
||||
Taming.Ability.Bonus.0=Environmentally Aware
|
||||
Taming.Ability.Bonus.1=Wolves avoid danger
|
||||
Taming.Ability.Bonus.2=Ffwr Trwchus
|
||||
@ -228,7 +228,7 @@ Taming.Ability.Locked.1=LOCKED UNTIL {0}+ SKILL (THICK FUR)
|
||||
Taming.Ability.Locked.2=LOCKED UNTIL {0}+ SKILL (SHOCK PROOF)
|
||||
Taming.Ability.Locked.3=LOCKED UNTIL {0}+ SKILL (SHARPENED CLAWS)
|
||||
Taming.Ability.Locked.4=LOCKED UNTIL {0}+ SKILL (FAST FOOD SERVICE)
|
||||
Taming.Combat.Chance.Gore=[[RED]]Gore Chance: [[YELLOW]]{0}
|
||||
Taming.Combat.Chance.Gore=Gore Chance: [[YELLOW]]{0}
|
||||
Taming.SubSkill.BeastLore.Name=Beast Lore
|
||||
Taming.SubSkill.BeastLore.Description=Bone-whacking inspects wolves & ocelots
|
||||
Taming.SubSkill.ShockProof.Name=Shock Proof
|
||||
@ -250,16 +250,16 @@ Taming.SubSkill.ThickFur.Description=DMG Reduction, Fire Resistance
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]] Eich sgrialu i blaidd yn \u00f4l i chi ...
|
||||
Taming.Listener=Taming:
|
||||
Taming.SkillName=TAMING
|
||||
Taming.Skillup=[[YELLOW]] sgiliau Ddofi cynyddu {0}.\u00a0Cyfanswm ({1})
|
||||
Taming.Skillup= sgiliau Ddofi cynyddu {0}.\u00a0Cyfanswm ({1})
|
||||
Taming.Summon.Complete=[[GREEN]]Summoning complete
|
||||
Taming.Summon.Fail.Ocelot=[[RED]]You have too many ocelots nearby to summon any more.
|
||||
Taming.Summon.Fail.Wolf=[[RED]]You have too many wolves nearby to summon any more.
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]Berserk Length: [[YELLOW]]{0}s
|
||||
Taming.Summon.Fail.Ocelot=You have too many ocelots nearby to summon any more.
|
||||
Taming.Summon.Fail.Wolf=You have too many wolves nearby to summon any more.
|
||||
Unarmed.Ability.Berserk.Length=Berserk Length: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Bonus.0=Iron Arm Style
|
||||
Unarmed.Ability.Bonus.1=+{0} DMG Upgrade
|
||||
Unarmed.Ability.Chance.ArrowDeflect=[[RED]] Saeth wyro cyfle: [[YELLOW]] {0}
|
||||
Unarmed.Ability.Chance.Disarm=[[RED]]Disarm Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=[[RED]]Your opponent has an iron grip!
|
||||
Unarmed.Ability.Chance.ArrowDeflect= Saeth wyro cyfle: [[YELLOW]] {0}
|
||||
Unarmed.Ability.Chance.Disarm=Disarm Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=Your opponent has an iron grip!
|
||||
Unarmed.Ability.IronGrip.Defender=[[GREEN]]Your iron grip kept you from being disarmed!
|
||||
Unarmed.Ability.Lower=[[GRAY]]**YOU LOWER YOUR FISTS**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**YOU READY YOUR FISTS**
|
||||
@ -273,16 +273,16 @@ Unarmed.SubSkill.ArrowDeflect.Name=Arrow Deflect
|
||||
Unarmed.SubSkill.ArrowDeflect.Description=Deflect arrows
|
||||
Unarmed.Listener=Dim Arfau:
|
||||
Unarmed.SkillName=UNARMED
|
||||
Unarmed.Skills.Berserk.Off=[[RED]] ** arno\\\'i hun wedi gwisgo i ffwrdd **
|
||||
Unarmed.Skills.Berserk.Off= ** arno\\\'i hun wedi gwisgo i ffwrdd **
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**BERSERK ACTIVATED**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]] arno\'i hun [[GREEN]] wedi gwisgo i ffwrdd ar gyfer [[YELLOW]] {0}
|
||||
Unarmed.Skills.Berserk.Other.Off= arno\'i hun [[GREEN]] wedi gwisgo i ffwrdd ar gyfer [[YELLOW]] {0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]] {0} [[DARK_GREEN]] wedi defnyddio [[RED]] arno\'i hun!
|
||||
Unarmed.Skills.Berserk.Refresh=[[GREEN]]Your [[YELLOW]]Berserk [[GREEN]]ability is refreshed!
|
||||
Unarmed.Skillup=[[YELLOW]]Unarmed skill increased by {0}. Total ({1})
|
||||
Unarmed.Skillup=Unarmed skill increased by {0}. Total ({1})
|
||||
Woodcutting.Ability.0=Chwythwr o ddail
|
||||
Woodcutting.Ability.1=Chwythu i ffwrdd yn gadael
|
||||
Woodcutting.Ability.Chance.DDrop=[[RED]]Double Drop Chance: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=[[RED]]Tree Feller Length: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Chance.DDrop=Double Drop Chance: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=Tree Feller Length: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Locked.0=LOCKED UNTIL {0}+ SKILL (LEAF BLOWER)
|
||||
Woodcutting.SubSkill.TreeFeller.Name=Tree Feller
|
||||
Woodcutting.SubSkill.TreeFeller.Description=Make trees explode
|
||||
@ -292,112 +292,112 @@ Woodcutting.SubSkill.HarvestLumber.Name=Double Drops
|
||||
Woodcutting.SubSkill.HarvestLumber.Description=Double the normal loot
|
||||
Woodcutting.Listener=Woodcutting:
|
||||
Woodcutting.SkillName=Torri coed
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]]**Tree Feller has worn off**
|
||||
Woodcutting.Skills.TreeFeller.Off=**Tree Feller has worn off**
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**TREE FELLER ACTIVATED**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]] Eich [[YELLOW]] Feller Coed [[GREEN]] gallu ei hadnewyddu!
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]] Feller Coed [[GREEN]] wedi gwisgo i ffwrdd ar gyfer [[YELLOW]] {0}
|
||||
Woodcutting.Skills.TreeFeller.Other.Off= Feller Coed [[GREEN]] wedi gwisgo i ffwrdd ar gyfer [[YELLOW]] {0}
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]] has used [[RED]]Tree Feller!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]] EICH AXE GWAHANU I DDWSINAU O DARNAU!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]That tree is too large!
|
||||
Woodcutting.Skillup=[[YELLOW]]Woodcutting skill increased by {0}. Total ({1})
|
||||
Woodcutting.Skills.TreeFeller.Splinter= EICH AXE GWAHANU I DDWSINAU O DARNAU!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=That tree is too large!
|
||||
Woodcutting.Skillup=Woodcutting skill increased by {0}. Total ({1})
|
||||
Ability.Generic.Refresh=[[GREEN]]**ABILITIES REFRESHED!**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
Combat.ArrowDeflect=[[WHITE]]**ARROW DEFLECT**
|
||||
Combat.BeastLore=[[GREEN]] ** bwystfil ll\u00ean **
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]] Iechyd ([[GREEN]] {0} [[DARK_AQUA]] / {1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]Owner ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**GORED**
|
||||
Combat.StruckByGore=[[RED]]**YOU HAVE BEEN GORED**
|
||||
Combat.StruckByGore=**YOU HAVE BEEN GORED**
|
||||
Combat.TargetDazed=Target was [[DARK_RED]]Dazed
|
||||
Combat.TouchedFuzzy=[[DARK_RED]] cyffwrdd Fuzzy. Teimlo benysgafn.
|
||||
Commands.addlevels.AwardAll.1=[[GREEN]]You were awarded {0} levels in all skills!
|
||||
Commands.addlevels.AwardAll.2=[[RED]]All skills have been modified for {0}.
|
||||
Commands.addlevels.AwardAll.2=All skills have been modified for {0}.
|
||||
Commands.addlevels.AwardSkill.1=[[GREEN]]You were awarded {0} levels in {1}!
|
||||
Commands.addlevels.AwardSkill.2=[[RED]]{0} has been modified for {1}.
|
||||
Commands.addlevels.AwardSkill.2={0} has been modified for {1}.
|
||||
Commands.addxp.AwardAll=[[GREEN]]You were awarded {0} experience in all skills!
|
||||
Commands.addxp.AwardSkill=[[GREEN]]You were awarded {0} experience in {1}!
|
||||
Commands.Ability.Off=Ability use toggled [[RED]]off
|
||||
Commands.Ability.On=Ability use toggled [[GREEN]]on
|
||||
Commands.AdminChat.Off=Admin Sgwrs unig [[RED]] Oddi ar
|
||||
Commands.AdminChat.On=Admin Chat only [[GREEN]]On
|
||||
Commands.AdminToggle=[[RED]] - sgwrs gweinyddol Toggle
|
||||
Commands.AdminToggle= - sgwrs gweinyddol Toggle
|
||||
Commands.Chat.Console=*Console*
|
||||
Commands.Disabled=[[RED]] Mae\'r gorchymyn yn anabl.
|
||||
Commands.DoesNotExist=[[RED]] nid Chwaraewr yn bodoli yn y gronfa ddata!
|
||||
Commands.GodMode.Disabled=[[YELLOW]]mcMMO Godmode Disabled
|
||||
Commands.GodMode.Enabled=[[YELLOW]]mcMMO Godmode Enabled
|
||||
Commands.Disabled= Mae\'r gorchymyn yn anabl.
|
||||
Commands.DoesNotExist= nid Chwaraewr yn bodoli yn y gronfa ddata!
|
||||
Commands.GodMode.Disabled=mcMMO Godmode Disabled
|
||||
Commands.GodMode.Enabled=mcMMO Godmode Enabled
|
||||
Commands.GodMode.Forbidden=[mcMMO] God Mode not permitted on this world (See Permissions)
|
||||
Commands.Inspect=<player> [[RED]]- View detailed player info
|
||||
Commands.Party.Invite.Accepted=[[GREEN]] Gwahodd Derbyniwyd. Yr ydych wedi ymuno parti {0}
|
||||
Commands.Invite.Success=[[GREEN]]Invite sent successfully.
|
||||
Commands.Leaderboards=<skill> <page> [[RED]]- Leaderboards
|
||||
Commands.mcc.Header=[[RED]]---[][[YELLOW]]mcMMO Commands[[RED]][]---
|
||||
Commands.mcgod=[[RED]]- Toggle GodMode
|
||||
Commands.mchud.Invalid=[[RED]]That is not a valid HUD type.
|
||||
Commands.mcc.Header=---[][[YELLOW]]mcMMO Commands[[RED]][]---
|
||||
Commands.mcgod=- Toggle GodMode
|
||||
Commands.mchud.Invalid=That is not a valid HUD type.
|
||||
Commands.mcpurge.Success=[[GREEN]]The database was successfully purged!
|
||||
Commands.mcrank.Heading=[[GOLD]]-=PERSONAL RANKINGS=-
|
||||
Commands.mcrank.Overall=[[YELLOW]]Overall[[GREEN]] - [[GOLD]]Rank [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=[[RED]]TARGET: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill=[[YELLOW]]{0}[[GREEN]] - [[GOLD]]Rank [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Overall=Overall[[GREEN]] - [[GOLD]]Rank [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=TARGET: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill={0}[[GREEN]] - [[GOLD]]Rank [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Unranked=[[WHITE]]Unranked
|
||||
Commands.mcremove.Success=[[GREEN]]{0} was successfully removed from the database!
|
||||
Commands.mctop.Tip=[[GOLD]]Tip: Use [[RED]]/mcrank[[GOLD]] to view all of your personal rankings!
|
||||
Commands.mmoedit=[chwaraewr] <skill> <newvalue> [[RED]] - Targed addasu
|
||||
Commands.mmoedit.Modified.1=[[GREEN]]Your level in {0} was set to {1}!
|
||||
Commands.mmoedit.Modified.2=[[RED]]{0} has been modified for {1}.
|
||||
Commands.ModDescription=[[RED]]- Read brief mod description
|
||||
Commands.mmoedit.Modified.2={0} has been modified for {1}.
|
||||
Commands.ModDescription=- Read brief mod description
|
||||
Commands.NoConsole=This command does not support console usage.
|
||||
Commands.Other=[[GREEN]]--OTHER COMMANDS--
|
||||
Commands.Party.Accept=[[RED]]- Accept party invite
|
||||
Commands.Party.Accept=- Accept party invite
|
||||
Commands.Party.Chat.Off=Party Chat only [[RED]]Off
|
||||
Commands.Party.Chat.On=Party Chat only [[GREEN]]On
|
||||
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
||||
Commands.Party.Invite.0=[[RED]] RHYBUDD: [[GREEN]] fod wedi derbyn gwahoddiad i barti {0} o {1}
|
||||
Commands.Party.Kick=[[RED]] oeddech yn cicio o blaid {0}!
|
||||
Commands.Party.Leave=[[RED]] Yr ydych wedi gadael y blaid honno
|
||||
Commands.Party.None=[[RED]]You are not in a party.
|
||||
Commands.Party.Quit=[[RED]]- Leave your current party
|
||||
Commands.Party.Invite.0= RHYBUDD: [[GREEN]] fod wedi derbyn gwahoddiad i barti {0} o {1}
|
||||
Commands.Party.Kick= oeddech yn cicio o blaid {0}!
|
||||
Commands.Party.Leave= Yr ydych wedi gadael y blaid honno
|
||||
Commands.Party.None=You are not in a party.
|
||||
Commands.Party.Quit=- Leave your current party
|
||||
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
||||
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO [[BLUE]]{0}[[YELLOW]] Leaderboard--
|
||||
Commands.Party.Toggle=- Toggle Party Chat
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO [[BLUE]]{0}[[YELLOW]] Leaderboard--
|
||||
Commands.PowerLevel=[[DARK_RED]]POWER LEVEL: [[GREEN]]{0}
|
||||
Commands.Reset.All=[[GREEN]]All of your skill levels have been reset successfully.
|
||||
Commands.Reset.Single=[[GREEN]]Your {0} skill level has been reset successfully.
|
||||
Commands.Reset=[[RED]]Reset a skill\'s level to 0
|
||||
Commands.Skill.Invalid=[[RED]]That is not a valid skillname!
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--mcMMO [[BLUE]]{0}[[YELLOW]] Leaderboard--
|
||||
Commands.Reset=Reset a skill\'s level to 0
|
||||
Commands.Skill.Invalid=That is not a valid skillname!
|
||||
Commands.Skill.Leaderboard=--mcMMO [[BLUE]]{0}[[YELLOW]] Leaderboard--
|
||||
Commands.Stats.Self=YOUR STATS
|
||||
Commands.Stats=[[RED]]- View your mcMMO stats
|
||||
Commands.ToggleAbility=[[RED]]- Toggle ability activation with right click
|
||||
Commands.Usage.1=[[RED]]Proper usage is /{0} {1}
|
||||
Commands.Usage.2=[[RED]]Proper usage is /{0} {1} {2}
|
||||
Commands.Usage.3=[[RED]]Proper usage is /{0} {1} {2} {3}
|
||||
Commands.Stats=- View your mcMMO stats
|
||||
Commands.ToggleAbility=- Toggle ability activation with right click
|
||||
Commands.Usage.1=Proper usage is /{0} {1}
|
||||
Commands.Usage.2=Proper usage is /{0} {1} {2}
|
||||
Commands.Usage.3=Proper usage is /{0} {1} {2} {3}
|
||||
Commands.Usage.Level=level
|
||||
Commands.Usage.Message=message
|
||||
Commands.Usage.Page=page
|
||||
Commands.Usage.Player=player
|
||||
Commands.Usage.Skill=skill
|
||||
Commands.Usage.XP=xp
|
||||
mcMMO.NoInvites=[[RED]]You have no invites at this time
|
||||
mcMMO.NoInvites=You have no invites at this time
|
||||
mcMMO.NoPermission=[[DARK_RED]]Insufficient permissions.
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]If you don\'t have access to a skill it will not be shown here.
|
||||
Party.Forbidden=[mcMMO] Parties not permitted on this world (See Permissions)
|
||||
Party.InvalidName=[[DARK_RED]]That is not a valid party name.
|
||||
Party.IsLocked=[[RED]]This party is already locked!
|
||||
Party.IsntLocked=[[RED]]This party is not locked!
|
||||
Party.Locked=[[RED]]Party is locked, only party leader may invite.
|
||||
Party.IsLocked=This party is already locked!
|
||||
Party.IsntLocked=This party is not locked!
|
||||
Party.Locked=Party is locked, only party leader may invite.
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} is not in your party
|
||||
Party.NotOwner=[[DARK_RED]]You are not the party owner
|
||||
Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||
Party.Password.Incorrect=Party password is incorrect.
|
||||
Party.Password.Set=[[GREEN]] Blaid cyfrinair wedi ei osod i {0}
|
||||
Party.Player.Invalid=[[RED]] Nid yw hynny\'n chwaraewr ddilys.
|
||||
Party.Teleport.Dead=[[RED]] Ni allwch teleport y chwaraewr yn farw.
|
||||
Party.Player.Invalid= Nid yw hynny\'n chwaraewr ddilys.
|
||||
Party.Teleport.Dead= Ni allwch teleport y chwaraewr yn farw.
|
||||
Party.Teleport.Player=[[GREEN]]You have teleported to {0}.
|
||||
Party.Teleport.Self=[[RED]]You can\'t teleport to yourself!
|
||||
Party.Teleport.Self=You can\'t teleport to yourself!
|
||||
Party.Teleport.Target=[[GREEN]] {0} wedi teleported i chi.
|
||||
Party.Unlocked=[[GRAY]] Blaid yn cael ei gloi
|
||||
Commands.XPGain.Acrobatics=Falling
|
||||
@ -415,11 +415,11 @@ Commands.XPGain.Woodcutting=Chopping down trees
|
||||
Commands.XPGain=[[DARK_GRAY]] Cael Profiad: [[WHITE]] {0}
|
||||
Commands.xplock.locked=[[GOLD]]Your XP BAR is now locked to {0}!
|
||||
Commands.xplock.unlocked=[[GOLD]]Your XP BAR is now [[GREEN]]UNLOCKED[[GOLD]]!
|
||||
Commands.xprate.modified=[[RED]]The XP RATE was modified to {0}
|
||||
Commands.xprate.over=[[RED]]mcMMO XP Rate Event is OVER!!
|
||||
Commands.xprate.proper.0=[[RED]]Proper usage to change the XP rate is /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=[[RED]]Proper usage to restore the XP rate to default is /xprate reset
|
||||
Commands.xprate.proper.2=[[RED]]Please specify true or false to indicate if this is an xp event or not
|
||||
Commands.xprate.modified=The XP RATE was modified to {0}
|
||||
Commands.xprate.over=mcMMO XP Rate Event is OVER!!
|
||||
Commands.xprate.proper.0=Proper usage to change the XP rate is /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=Proper usage to restore the XP rate to default is /xprate reset
|
||||
Commands.xprate.proper.2=Please specify true or false to indicate if this is an xp event or not
|
||||
Commands.xprate.started.0=[[GOLD]]XP EVENT FOR mcMMO HAS STARTED!
|
||||
Commands.xprate.started.1=[[GOLD]]mcMMO XP RATE IS NOW {0}x!
|
||||
XPRate.Event=[[GOLD]] mcMMO ar hyn o bryd mewn digwyddiad gyfradd XP! Gyfradd yn XP {0} x!
|
||||
@ -429,19 +429,19 @@ Effects.Template=[[DARK_AQUA]]{0}: [[GREEN]]{1}
|
||||
Guides.Available=[[GRAY]]Guide for {0} available - type /{1} ? [page]
|
||||
Guides.Header=[[GOLD]]-=[[GREEN]]{0} Guide[[GOLD]]=-
|
||||
Guides.Page.Invalid=Not a valid page number!
|
||||
Guides.Usage=[[RED]] Usage is /{0} ? [page]
|
||||
Inspect.Offline=[[RED]]You do not have permission to inspect offline players!
|
||||
Guides.Usage= Usage is /{0} ? [page]
|
||||
Inspect.Offline=You do not have permission to inspect offline players!
|
||||
Inspect.OfflineStats=mcMMO Stats for Offline Player [[YELLOW]]{0}
|
||||
Inspect.Stats=[[GREEN]]mcMMO Stats for [[YELLOW]]{0}
|
||||
Inspect.TooFar=[[RED]]You are too far away to inspect that player!
|
||||
Inspect.TooFar=You are too far away to inspect that player!
|
||||
Item.ChimaeraWing.Fail=**CHIMAERA WING FAILED!**
|
||||
Item.ChimaeraWing.Pass=**CHIMAERA ADAIN**
|
||||
Item.Injured.Wait=You were injured recently and must wait to use this. [[YELLOW]]({0}s)
|
||||
Skills.Disarmed=[[DARK_RED]] Rydych wedi cael eich diarfogi!
|
||||
Skills.Header=[[RED]]-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.Header=-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.NeedMore=[[DARK_RED]] y bydd angen mwy o [[GRAY]]{0}
|
||||
Skills.Stats=[[YELLOW]]{0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.TooTired=[[RED]] Yr ydych yn rhy flinedig i ddefnyddio\'r gallu eto. [[YELLOW]]({0}s)
|
||||
Skills.Stats={0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.TooTired= Yr ydych yn rhy flinedig i ddefnyddio\'r gallu eto. [[YELLOW]]({0}s)
|
||||
Stats.Header.Combat=[GOLD]] - = GWRTHSEFYLL SGILIAU = -
|
||||
Stats.Header.Gathering=[[GOLD]] -= CASGLU SGILIAU = = -
|
||||
Stats.Header.Misc=[[GOLD]]-=MISC SKILLS=-
|
||||
@ -460,6 +460,6 @@ Perks.ActivationTime.Bonus=[[GOLD]] ({0}s with Endurance Perk)
|
||||
MOTD.Donate=[[DARK_AQUA]]Donation Info:
|
||||
MOTD.Hardcore.DeathStatLoss.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Skill Death Penalty: [[DARK_RED]]{0}%
|
||||
MOTD.Hardcore.Vampirism.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Vampirism Stat Leech: [[DARK_RED]]{0}%
|
||||
MOTD.PerksPrefix=[[RED]][mcMMO Perks]
|
||||
MOTD.PerksPrefix=[mcMMO Perks]
|
||||
MOTD.Version=[[GOLD]][mcMMO] Running version [[DARK_AQUA]]{0}
|
||||
MOTD.Website=[[GOLD]][mcMMO] [[GREEN]]{0}[[YELLOW]] - mcMMO Website
|
||||
|
@ -1,6 +1,6 @@
|
||||
Acrobatics.Ability.Proc=[[GREEN]]**Yndefuld Landing**
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**Undviget**
|
||||
Acrobatics.DodgeChance=[[RED]]Afv\u00e6rgnings Chance: [[YELLOW]]{0}
|
||||
Acrobatics.DodgeChance=Afv\u00e6rgnings Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Name=Rul
|
||||
Acrobatics.SubSkill.Roll.Description=Reducerer eller omvender Fald skade
|
||||
Acrobatics.SubSkill.GracefulRoll.Name=Yndefuldt Rul
|
||||
@ -8,14 +8,14 @@ Acrobatics.SubSkill.GracefulRoll.Description=Dobbelt s\u00e5 effektiv som en nor
|
||||
Acrobatics.SubSkill.Dodge.Name=Afv\u00e6rg
|
||||
Acrobatics.SubSkill.Dodge.Description=Reducer angrebs skade med halvdelen
|
||||
Acrobatics.Listener=Akrobatik:
|
||||
Acrobatics.SubSkill.Roll.Chance=[[RED]]Rulle Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=[[RED]]Yndefuldt Rul Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Chance=Rulle Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=Yndefuldt Rul Chance: [[YELLOW]]{0}
|
||||
Acrobatics.Roll.Text=**Rullede**
|
||||
Acrobatics.SkillName=AKROBATIK
|
||||
Acrobatics.Skillup=[[YELLOW]]Akrobatik evne for\u00f8get med {0}. Total ({1})
|
||||
Archery.Combat.DazeChance=[[RED]]Chance for at blive forvirret: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=[[RED]]Chance for at Genbruge Pile: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=[[RED]]Skyde Evne Bonus Skade: [[YELLOW]]{0}
|
||||
Acrobatics.Skillup=Akrobatik evne for\u00f8get med {0}. Total ({1})
|
||||
Archery.Combat.DazeChance=Chance for at blive forvirret: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=Chance for at Genbruge Pile: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=Skyde Evne Bonus Skade: [[YELLOW]]{0}
|
||||
Archery.SubSkill.SkillShot.Name=Evne Skud
|
||||
Archery.SubSkill.SkillShot.Description=For\u00f8ger skade for\u00e5rsaget med buer
|
||||
Archery.SubSkill.Daze.Name=Lam (Spillere)
|
||||
@ -23,7 +23,7 @@ Archery.SubSkill.ArrowRetrieval.Name=Genbrug Pile
|
||||
Archery.SubSkill.ArrowRetrieval.Description=Chance for at tage pile ud af lig
|
||||
Archery.Listener=Bueskydning:
|
||||
Archery.SkillName=BUESKYDNING
|
||||
Archery.Skillup=[[YELLOW]]Bueskydnings evne for\u00f8get med {0}. Total ({1})
|
||||
Archery.Skillup=Bueskydnings evne for\u00f8get med {0}. Total ({1})
|
||||
Axes.Ability.Bonus.0=\u00d8kse Mestring
|
||||
Axes.Ability.Bonus.1=Bonus {0} skade
|
||||
Axes.Ability.Bonus.2=Rustnings Effekt
|
||||
@ -33,11 +33,11 @@ Axes.Ability.Bonus.5=P\u00e5f\u00f8r {0} Bonus Skade til ubev\u00e6bnede fjender
|
||||
Axes.Ability.Lower=[[GRAY]]**DU S\u00c6NKER DIN \u00d8KSE**
|
||||
Axes.Ability.Ready=[[GREEN]]**DU G\u00d8R DIN \u00d8KSE KLAR**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]Du er blevet KRITISK ramt!
|
||||
Axes.Combat.CritChance=[[RED]]Chance for at ramme kritisk: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=[[RED]]KRITISK SLAG!
|
||||
Axes.Combat.CritChance=Chance for at ramme kritisk: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=KRITISK SLAG!
|
||||
Axes.Combat.GI.Proc=[[GREEN]]**RAMT AF STOR KRAFT**
|
||||
Axes.Combat.GI.Struck=[[RED]]**RAMT AF ST\u00d8RRE SLAG**
|
||||
Axes.Combat.SS.Length=[[RED]]Kranie Splitter L\u00e6ngde: [[YELLOW]]{0}s
|
||||
Axes.Combat.GI.Struck=**RAMT AF ST\u00d8RRE SLAG**
|
||||
Axes.Combat.SS.Length=Kranie Splitter L\u00e6ngde: [[YELLOW]]{0}s
|
||||
Axes.SubSkill.SkullSplitter.Name=Kranie Splitter (Evne)
|
||||
Axes.SubSkill.SkullSplitter.Description=For\u00e5rsag Omr\u00e5de Skade
|
||||
Axes.SubSkill.CriticalStrikes.Name=Kritiske Slag
|
||||
@ -50,33 +50,33 @@ Axes.SubSkill.GreaterImpact.Name=St\u00f8rre Slag
|
||||
Axes.SubSkill.GreaterImpact.Description=Giv bonus skade til ubev\u00e6bnede fjender
|
||||
Axes.Listener=\u00d8kser:
|
||||
Axes.SkillName=\u00d8KSER
|
||||
Axes.Skills.SS.Off=[[RED]]**Berserker er aftaget**
|
||||
Axes.Skills.SS.Off=**Berserker er aftaget**
|
||||
Axes.Skills.SS.On=[[GREEN]]**Kranie Knuser AKTIVERET**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]Din [[YELLOW]]Kranie Splitter [[GREEN]]evne er genindl\u00e6st!
|
||||
Axes.Skills.SS.Other.Off=[[RED]]Kranie Knuser[[GREEN]] er aftaget i [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.Off=Kranie Knuser[[GREEN]] er aftaget i [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] har brugt [[RED]]Kranie Splitter!
|
||||
Axes.Skillup=[[YELLOW]]\u00d8kse evner forbedret med {0}. Ialt ({1})
|
||||
Axes.Skillup=\u00d8kse evner forbedret med {0}. Ialt ({1})
|
||||
Excavation.Ability.Lower=[[GRAY]]**DU S\u00c6NKER DIN SKOVL**
|
||||
Excavation.Ability.Ready=[[GREEN]]**DU G\u00d8R DIN SKOVL KLAR**
|
||||
Excavation.SubSkill.GigaDrillBreaker.Name=Giga Borer (EVNE)
|
||||
Excavation.SubSkill.GigaDrillBreaker.Description=3x Tabs ratio for blokke, 3x EXP, +Fart
|
||||
Excavation.SubSkill.TreasureHunter.Name=Skatte J\u00e6ger
|
||||
Excavation.SubSkill.TreasureHunter.Description=Evne til at grave efter skatte
|
||||
Excavation.Effect.Length=[[RED]]Giga Borer L\u00e6ngde: [[YELLOW]]{0}s
|
||||
Excavation.Effect.Length=Giga Borer L\u00e6ngde: [[YELLOW]]{0}s
|
||||
Excavation.Listener=Udgravning:
|
||||
Excavation.SkillName=UDVINDING
|
||||
Excavation.Skills.GigaDrillBreaker.Off=[[RED]]**Giga Borer er aftaget**
|
||||
Excavation.Skills.GigaDrillBreaker.Off=**Giga Borer er aftaget**
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**Super Bor AKTIVERET**
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]Din [[YELLOW]]Giga Borer [[GREEN]]evne er genindl\u00e6st!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=[[RED]]Giga Borer[[GREEN]] er aftaget i [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=Giga Borer[[GREEN]] er aftaget i [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] har brugt [[RED]]Giga Borer!
|
||||
Excavation.Skillup=[[YELLOW]]Udgravningsevne for\u00f8get med {0}. Total ({1})
|
||||
Fishing.Ability.Info=[[RED]]Magisk J\u00e6ger: [[GRAY]] **Forbedres med skattejagts ranken**
|
||||
Excavation.Skillup=Udgravningsevne for\u00f8get med {0}. Total ({1})
|
||||
Fishing.Ability.Info=Magisk J\u00e6ger: [[GRAY]] **Forbedres med skattejagts ranken**
|
||||
Fishing.Ability.Locked.0=L\u00c5ST INDTIL {0}+ EVNE (RYST)
|
||||
Fishing.Ability.Rank=[[RED]]Skatte J\u00e6ger Rank: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.MagicRate=[[RED]]Magi J\u00e6ger Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=[[RED]]Ryste Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.FD=[[RED]]Fiskers Diet: [[YELLOW]]Rank {0}
|
||||
Fishing.Ability.Rank=Skatte J\u00e6ger Rank: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.MagicRate=Magi J\u00e6ger Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=Ryste Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.FD=Fiskers Diet: [[YELLOW]]Rank {0}
|
||||
Fishing.SubSkill.TreasureHunter.Name=Skatte J\u00e6ger (Passiv)
|
||||
Fishing.SubSkill.TreasureHunter.Description=Fisk diverse objekter op.
|
||||
Fishing.SubSkill.MagicHunter.Name=Magi J\u00e6ger
|
||||
@ -89,13 +89,13 @@ Fishing.Chance.Raining=[[BLUE]] Regn Bonus
|
||||
Fishing.Listener=Fiskeri:
|
||||
Fishing.Ability.TH.MagicFound=[[GRAY]]Du f\u00f8ler et strejf a magi med denne fangst...
|
||||
Fishing.SkillName=FISKER
|
||||
Fishing.Skillup=[[YELLOW]]Fisker evne for\u00f8get med {0}. Total ({1})
|
||||
Herbalism.Ability.DoubleDropChance=[[RED]]2x Tabs Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTe.Length=[[RED]]Gr\u00f8n Terra L\u00e6ngde: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=[[RED]]Du mangler flere fr\u00f8 for at sprede Gr\u00f8n Terra.
|
||||
Herbalism.Ability.GTh.Chance=[[RED]]Gr\u00f8nne Fingre Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=[[RED]]**GR\u00d8NNE FINGRE MISLYKKEDES**
|
||||
Herbalism.Ability.GTh.Stage=[[RED]]Gr\u00f8nne Fingre Stadie: [[YELLOW]] Planter gror i stadie {0}
|
||||
Fishing.Skillup=Fisker evne for\u00f8get med {0}. Total ({1})
|
||||
Herbalism.Ability.DoubleDropChance=2x Tabs Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTe.Length=Gr\u00f8n Terra L\u00e6ngde: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=Du mangler flere fr\u00f8 for at sprede Gr\u00f8n Terra.
|
||||
Herbalism.Ability.GTh.Chance=Gr\u00f8nne Fingre Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=**GR\u00d8NNE FINGRE MISLYKKEDES**
|
||||
Herbalism.Ability.GTh.Stage=Gr\u00f8nne Fingre Stadie: [[YELLOW]] Planter gror i stadie {0}
|
||||
Herbalism.Ability.GTh=[[GREEN]]**GR\u00d8NNE FINGRE**
|
||||
Herbalism.Ability.Lower=[[GRAY]]**DU S\u00c6NKER DIt LUGEJERN**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**DU G\u00d8R DIT LUGEJERN KLAR**
|
||||
@ -112,10 +112,10 @@ Herbalism.Listener=Urtekundskab
|
||||
Herbalism.SkillName=NATURMEDICIN
|
||||
Herbalism.Skills.GTe.On=[[GREEN]]**GR\u00d8N TERRA AKTIVERET**
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]Din [[YELLOW]]Gr\u00f8nne Terra [[GREEN]]evne er genindl\u00e6st!
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]]Gr\u00f8n Terra[[GREEN]] er aftaget i [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.Off=Gr\u00f8n Terra[[GREEN]] er aftaget i [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]{0}[[DARK_GREEN]] har brugt [[RED]]Gr\u00f8n Terra!
|
||||
Herbalism.Skillup=[[YELLOW]]Naturens Evne forbedret med {0}. Total ({1})
|
||||
Mining.Ability.Length=[[RED]]Super \u00d8del\u00e6gger L\u00e6ngde: [[YELLOW]]{0}s
|
||||
Herbalism.Skillup=Naturens Evne forbedret med {0}. Total ({1})
|
||||
Mining.Ability.Length=Super \u00d8del\u00e6gger L\u00e6ngde: [[YELLOW]]{0}s
|
||||
Mining.Ability.Locked.0=L\u00c5ST INDTIL {0}+ EVNE (BLAST MINING)
|
||||
Mining.Ability.Locked.1=L\u00c5ST INDTIL {0}+ EVNE (ST\u00d8RRE BOMBER)
|
||||
Mining.Ability.Locked.2=L\u00c5ST INDTIL {0}+ EVNE (NEDRIVNINGS EXPERTISE)
|
||||
@ -131,19 +131,19 @@ Mining.SubSkill.BiggerBombs.Name=St\u00f8rre Bomber
|
||||
Mining.SubSkill.BiggerBombs.Description=Forbedrer TNT explosions radius
|
||||
Mining.SubSkill.DemolitionsExpertise.Name=Nedrivnings Expertise
|
||||
Mining.SubSkill.DemolitionsExpertise.Description=Formindsker skade fra TNT explotioner
|
||||
Mining.Effect.Decrease=[[RED]]Nedrivingings Expert Skade neds\u00e6ttelse: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=[[RED]]2x Tabs Chance: [[YELLOW]]{0}
|
||||
Mining.Effect.Decrease=Nedrivingings Expert Skade neds\u00e6ttelse: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=2x Tabs Chance: [[YELLOW]]{0}
|
||||
Mining.Listener=Minedrift:
|
||||
Mining.SkillName=MINER
|
||||
Mining.Skills.SuperBreaker.Off=[[RED]]**Super \u00d8del\u00e6gger er aftaget**
|
||||
Mining.Skills.SuperBreaker.Off=**Super \u00d8del\u00e6gger er aftaget**
|
||||
Mining.Skills.SuperBreaker.On=[[GREEN]]**SUPER \u00d8DEL\u00c6GGER AKTIVERET**
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[RED]]Super \u00d8del\u00e6gger[[GREEN]] er aftaget i [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.Off=Super \u00d8del\u00e6gger[[GREEN]] er aftaget i [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] har brugt [[RED]]Super \u00d8del\u00e6gger!
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]Din [[YELLOW]]Super Smadrer [[GREEN]]evne er genindl\u00e6st!
|
||||
Mining.Skillup=[[YELLOW]]Minedriftsevne for\u00f8get med {0}. Total ({1})
|
||||
Mining.Skillup=Minedriftsevne for\u00f8get med {0}. Total ({1})
|
||||
Mining.Blast.Boom=[[GRAY]]**BOOM**
|
||||
Mining.Blast.Radius.Increase=[[RED]]Eksplosions Radius For\u00f8gelse: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=[[RED]]Blast Mining: [[YELLOW]] Rank {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Radius.Increase=Eksplosions Radius For\u00f8gelse: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=Blast Mining: [[YELLOW]] Rank {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Other.On=[[GREEN]]{0}[[DARK_GREEN]] her brugt [[RED]]Blast Mining!
|
||||
Mining.Blast.Refresh=[[GREEN]]Din [[YELLOW]]Spring Mining [[GREEN]]evne er genindl\u00e6st!
|
||||
Repair.SubSkill.Repair.Name=Reparer
|
||||
@ -174,31 +174,31 @@ Repair.Skills.AdeptDiamond=[[DARK_RED]]Du er ikke kvalificeret nok til at repare
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]Du er ikke kvalificeret nok til at reparere guld.
|
||||
Repair.Skills.AdeptIron=[[DARK_RED]]Du har ikke evner nok til at reparere Jern.
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]Du er ikke kvalificeret nok til at reparere sten.
|
||||
Repair.Skills.Adept=[[RED]]Du skal v\u00e6re level [[YELLOW]]{0}[[RED]] for at reparere [[YELLOW]]{1}
|
||||
Repair.Skills.Adept=Du skal v\u00e6re level [[YELLOW]]{0}[[RED]] for at reparere [[YELLOW]]{1}
|
||||
Repair.Skills.FeltEasy=[[GRAY]]Det var nemt.
|
||||
Repair.Skills.FullDurability=[[GRAY]]Det er p\u00e5 fuld holdbarhed
|
||||
Repair.Skills.SalvageSuccess=[[GRAY]]Genstand genbrugt!
|
||||
Repair.Skills.NotFullDurability=[[DARK_RED]]Du kan ikke genbruge \u00f8delagte v\u00e6rkt\u00f8jer og rustninger.
|
||||
Repair.Skills.Mastery=[[RED]]Reperations Beherskelse: [[YELLOW]]Extra {0} Modstand gendannet
|
||||
Repair.Skills.Mastery=Reperations Beherskelse: [[YELLOW]]Extra {0} Modstand gendannet
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]Du kan ikke reparere ting i stabler.
|
||||
Repair.Skills.Super.Chance=[[RED]]Super Reparerings Chance: [[YELLOW]]{0}
|
||||
Repair.Skillup=[[YELLOW]]Reperations skill forbedret med {0}. Total ({1})
|
||||
Repair.Skills.Super.Chance=Super Reparerings Chance: [[YELLOW]]{0}
|
||||
Repair.Skillup=Reperations skill forbedret med {0}. Total ({1})
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]AF Degraderings Chance: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]AF Success Ratio: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Downgrade=[[RED]]Magisk magt er nedsat for dette objekt.
|
||||
Repair.Arcane.Fail=[[RED]]Magisk energi har forladt genstanden for altid.
|
||||
Repair.Arcane.Lost=[[RED]]Du har ikke evner nok til at beholde nogle fortryllelser.
|
||||
Repair.Arcane.Downgrade=Magisk magt er nedsat for dette objekt.
|
||||
Repair.Arcane.Fail=Magisk energi har forladt genstanden for altid.
|
||||
Repair.Arcane.Lost=Du har ikke evner nok til at beholde nogle fortryllelser.
|
||||
Repair.Arcane.Perfect=[[GREEN]]Du har vedligeholdt de magiske energier i dette objekt.
|
||||
Repair.Arcane.Rank=[[RED]]Magisk Smedning: [[YELLOW]]Rank {0}/4
|
||||
Repair.Arcane.Rank=Magisk Smedning: [[YELLOW]]Rank {0}/4
|
||||
Swords.Ability.Lower=[[GRAY]]**DU S\u00c6NKER DIT SV\u00c6RD**
|
||||
Swords.Ability.Ready=[[GREEN]]**DU HAR FORBEREDT DIT SV\u00c6RD**
|
||||
Swords.Combat.Bleed.Chance=[[RED]]Bl\u00f8de Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=[[RED]]Bl\u00f8dnings L\u00e6ngde: [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Chance=Bl\u00f8de Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=Bl\u00f8dnings L\u00e6ngde: [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Note=[[GRAY]]NOTER: [[YELLOW]]1 Tick sker hver 2 sekund
|
||||
Swords.Combat.Bleeding.Started=[[DARK_RED]] Du Bl\u00f8der!
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]Bl\u00f8dningen er [[GREEN]]stoppet[[GRAY]]!
|
||||
Swords.Combat.Bleeding=[[GREEN]]**MODSTANDEREN BL\u00d8DER**
|
||||
Swords.Combat.Counter.Chance=[[RED]]Modangrebs Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Chance=Modangrebs Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Hit=[[DARK_RED]]Angrib med et modangreb!
|
||||
Swords.Combat.Countered=[[GREEN]]**MODANGREBET**
|
||||
Swords.Combat.SS.Struck=[[DARK_RED]]Ramt af F\u00e6gtekunstens S\u00e5r!
|
||||
@ -209,13 +209,13 @@ Swords.SubSkill.Bleed.Name=Bl\u00f8de
|
||||
Swords.SubSkill.Bleed.Description=S\u00e6t en Bl\u00f8dning med skade over tid (DoT=Skade over tid)
|
||||
Swords.Listener=Sv\u00e6rd:
|
||||
Swords.SkillName=SV\u00c6RD
|
||||
Swords.Skills.SS.Off=[[RED]]**Fokuseret F\u00e6gtekunst er aftaget**
|
||||
Swords.Skills.SS.Off=**Fokuseret F\u00e6gtekunst er aftaget**
|
||||
Swords.Skills.SS.On=[[GREEN]]**F\u00c6GTEKUNST AKTIVERET**
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]Din [[YELLOW]]F\u00e6gtekunst [[GREEN]]evne er genindl\u00e6st!
|
||||
Swords.Skills.SS.Other.Off=[[RED]]F\u00e6gtekunst[[GREEN]] er aftaget i [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.Off=F\u00e6gtekunst[[GREEN]] er aftaget i [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] har brugt [[RED]]F\u00c6GTEKUNST!
|
||||
Swords.Skillup=[[YELLOW]]Sv\u00e6rd evne for\u00f8get med {0}. Total ({1})
|
||||
Swords.SS.Length=[[RED]]F\u00e6gtekunstens L\u00e6ngde: [[YELLOW]]{0}s
|
||||
Swords.Skillup=Sv\u00e6rd evne for\u00f8get med {0}. Total ({1})
|
||||
Swords.SS.Length=F\u00e6gtekunstens L\u00e6ngde: [[YELLOW]]{0}s
|
||||
Taming.Ability.Bonus.0=Omgivelses bevidst
|
||||
Taming.Ability.Bonus.1=Ulve undviger fare
|
||||
Taming.Ability.Bonus.2=Tyk Pels
|
||||
@ -249,16 +249,16 @@ Taming.SubSkill.ThickFur.Description=Skades Reduktion, Ild Modstand
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]Din ulv smutter tilbage til dig...
|
||||
Taming.Listener=T\u00e6mning:
|
||||
Taming.SkillName=T\u00c6MMER
|
||||
Taming.Skillup=[[YELLOW]]T\u00e6mningsevne for\u00f8get med {0}. Total ({1})
|
||||
Taming.Skillup=T\u00e6mningsevne for\u00f8get med {0}. Total ({1})
|
||||
Taming.Summon.Complete=[[GREEN]]Skabelse Komplet
|
||||
Taming.Summon.Fail.Ocelot=[[RED]]Der er for mange Ocelotter i n\u00e6rheden af dig til at du kan spawne flere.
|
||||
Taming.Summon.Fail.Wolf=[[RED]]Der er for mange Ulve i n\u00e6rheden af dig til at du kan spawne flere.
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]Berserker L\u00e6ngde: [[YELLOW]]{0}s
|
||||
Taming.Summon.Fail.Ocelot=Der er for mange Ocelotter i n\u00e6rheden af dig til at du kan spawne flere.
|
||||
Taming.Summon.Fail.Wolf=Der er for mange Ulve i n\u00e6rheden af dig til at du kan spawne flere.
|
||||
Unarmed.Ability.Berserk.Length=Berserker L\u00e6ngde: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Bonus.0=Jern Arm Stil
|
||||
Unarmed.Ability.Bonus.1=+{0} DMG Upgradering
|
||||
Unarmed.Ability.Chance.ArrowDeflect=[[RED]]Pile Undvignings Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=[[RED]]Afv\u00e6bnings Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=[[RED]]Din modstander har et Jerngreb!
|
||||
Unarmed.Ability.Chance.ArrowDeflect=Pile Undvignings Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=Afv\u00e6bnings Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=Din modstander har et Jerngreb!
|
||||
Unarmed.Ability.IronGrip.Defender=[[GREEN]]Dit Jerngreb lod dig modst\u00e5 afv\u00e6bning!
|
||||
Unarmed.Ability.Lower=[[GRAY]]**DU S\u00c6NKER DINE N\u00c6VER**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**DU KLARG\u00d8R DIN N\u00c6VE**
|
||||
@ -272,16 +272,16 @@ Unarmed.SubSkill.ArrowDeflect.Name=Pile Undvigning
|
||||
Unarmed.SubSkill.ArrowDeflect.Description=Undvig Pile
|
||||
Unarmed.Listener=Ubev\u00e6bnet:
|
||||
Unarmed.SkillName=UBEV\u00c6BNET
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**Berserker er nu aftaget**
|
||||
Unarmed.Skills.Berserk.Off=**Berserker er nu aftaget**
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**BERSERKER AKTIVERET**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]]Berserker[[GREEN]] er aftaget i [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.Off=Berserker[[GREEN]] er aftaget i [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] har brugt [[RED]]Berserker!
|
||||
Unarmed.Skills.Berserk.Refresh=[[GREEN]]Dine [[YELLOW]]Berserker [[GREEN]]evner er genindl\u00e6st!
|
||||
Unarmed.Skillup=[[YELLOW]]Ubev\u00e6bnet evne for\u00f8get med {0}. Total ({1})
|
||||
Unarmed.Skillup=Ubev\u00e6bnet evne for\u00f8get med {0}. Total ({1})
|
||||
Woodcutting.Ability.0=Blad Bl\u00e6ser
|
||||
Woodcutting.Ability.1=Bl\u00e6s blade v\u00e6k
|
||||
Woodcutting.Ability.Chance.DDrop=[[RED]]2x Tabs Chance: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=[[RED]]Tr\u00e6 Hugger L\u00e6ngde: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Chance.DDrop=2x Tabs Chance: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=Tr\u00e6 Hugger L\u00e6ngde: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Locked.0=L\u00c5ST INDTIL {0}+ EVNE (BLAD BL\u00c6SER)
|
||||
Woodcutting.SubSkill.TreeFeller.Name=Tr\u00e6 Hugger (EVNE)
|
||||
Woodcutting.SubSkill.TreeFeller.Description=F\u00e5r tr\u00e6er til at explodere
|
||||
@ -291,114 +291,114 @@ Woodcutting.SubSkill.HarvestLumber.Name=Dobbel tab
|
||||
Woodcutting.SubSkill.HarvestLumber.Description=Dobbel det normale udbytte
|
||||
Woodcutting.Listener=Tr\u00e6f\u00e6ldning:
|
||||
Woodcutting.SkillName=TR\u00c6F\u00c6LDNING
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]]**Tr\u00e6 Hugger er nu aftaget**
|
||||
Woodcutting.Skills.TreeFeller.Off=**Tr\u00e6 Hugger er nu aftaget**
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**TR\u00c6 HUGGER AKTIVERET**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]Din [[YELLOW]]Tr\u00e6 Hugger [[GREEN]]evne er genindl\u00e6st!
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]]Tr\u00e6 hugger[[GREEN]] er aftaget i [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=Tr\u00e6 hugger[[GREEN]] er aftaget i [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]] har brugt [[RED]]Tr\u00e6 hugger!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]DIN \u00d8KSE SPLINTRER I TUSINDER AF STYKKER!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]Det tr\u00e6 er for stort!
|
||||
Woodcutting.Skillup=[[YELLOW]]Tr\u00e6hugningsevne for\u00f8get med {0}. Total ({1})
|
||||
Woodcutting.Skills.TreeFeller.Splinter=DIN \u00d8KSE SPLINTRER I TUSINDER AF STYKKER!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=Det tr\u00e6 er for stort!
|
||||
Woodcutting.Skillup=Tr\u00e6hugningsevne for\u00f8get med {0}. Total ({1})
|
||||
Ability.Generic.Refresh=[[GREEN]]**EVNER GENINDL\u00c6ST!**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
Combat.ArrowDeflect=[[WHITE]]**UNDVIGER PIL**
|
||||
Combat.BeastLore=[[GREEN]]**TIGGENDE MONSTER**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]Liv ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]Ejer ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**SPIDDET**
|
||||
Combat.StruckByGore=[[RED]]**DU ER BLEVET SPIDDET**
|
||||
Combat.StruckByGore=**DU ER BLEVET SPIDDET**
|
||||
Combat.TargetDazed=M\u00e5let er nu [[DARK_RED]]Bed\u00f8vet
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]R\u00f8rte Plysse. F\u00f8lte mig svimmel.
|
||||
Commands.addlevels.AwardAll.1=[[GREEN]]Du har f\u00e5et {0} Exp i alle evner!
|
||||
Commands.addlevels.AwardAll.2=[[RED]]Alle evner er blevet \u00e6ndret til {0}.
|
||||
Commands.addlevels.AwardAll.2=Alle evner er blevet \u00e6ndret til {0}.
|
||||
Commands.addlevels.AwardSkill.1=[[GREEN]]Du har f\u00e5et{0} levels i {1}!
|
||||
Commands.addlevels.AwardSkill.2=[[RED]]{0} er blevet \u00e6ndret for {1}.
|
||||
Commands.addlevels.AwardSkill.2={0} er blevet \u00e6ndret for {1}.
|
||||
Commands.addxp.AwardAll=[[GREEN]]Du har f\u00e5et {0} Exp i alle evner!
|
||||
Commands.addxp.AwardSkill=[[GREEN]]Du har f\u00e5et {0} Exp i {1}!
|
||||
Commands.Ability.Off=Evne brug sat til [[GREEN]]Sand
|
||||
Commands.Ability.On=Evne brug sat til [[GREEN]]Sand
|
||||
Commands.AdminChat.Off=Admin Chat kun [[RED]]Slukket
|
||||
Commands.AdminChat.On=Kun Admin Chat [[GREEN]]Rigtigt
|
||||
Commands.AdminToggle=[[RED]]- Skift admin chatten
|
||||
Commands.AdminToggle=- Skift admin chatten
|
||||
Commands.Chat.Console=*Konsol*
|
||||
Commands.Disabled=[[RED]]Denne kommando er sl\u00e5et fra.
|
||||
Commands.DoesNotExist=[[RED]]Spiller eksisterer ikke i databasen!
|
||||
Commands.GodMode.Disabled=[[YELLOW]]mcMMO GudeTilstand Slukket
|
||||
Commands.GodMode.Enabled=[[YELLOW]]mcMMO GudeTilstand Aktiveret
|
||||
Commands.Disabled=Denne kommando er sl\u00e5et fra.
|
||||
Commands.DoesNotExist=Spiller eksisterer ikke i databasen!
|
||||
Commands.GodMode.Disabled=mcMMO GudeTilstand Slukket
|
||||
Commands.GodMode.Enabled=mcMMO GudeTilstand Aktiveret
|
||||
Commands.GodMode.Forbidden=[mcMMO] Gude Tilstand er ikke tilladt i denne verden (Se Tilladelser)
|
||||
Commands.Inspect=<player> [[RED]]- Se detaljeret spiller Info
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]Invitation Accepteret. Du har sluttet dig til en gruppe {0}
|
||||
Commands.Invite.Success=[[GREEN]]Invitation sendt successfuldt
|
||||
Commands.Leaderboards=<skill> <page> [[RED]]- Ranglister
|
||||
Commands.mcc.Header=[[RED]]---[][[YELLOW]]mcMMO Kommandoer[[RED]][]---
|
||||
Commands.mcgod=[[RED]]- Skift GudeTilstand
|
||||
Commands.mchud.Invalid=[[RED]]Det er ikke en tilladt HUD type.
|
||||
Commands.mcc.Header=---[][[YELLOW]]mcMMO Kommandoer[[RED]][]---
|
||||
Commands.mcgod=- Skift GudeTilstand
|
||||
Commands.mchud.Invalid=Det er ikke en tilladt HUD type.
|
||||
Commands.mcpurge.Success=[[GREEN]]Databasen er blevet succesfuldt renset!
|
||||
Commands.mcrank.Heading=[[GOLD]]-=PERSONLIGE RANGLISTER=-
|
||||
Commands.mcrank.Overall=[[YELLOW]]Overall[[GREEN]] - [[GOLD]]Rang [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=[[RED]]M\u00c5L: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill=[[YELLOW]]{0}[[GREEN]] - [[GOLD]]Rang [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Overall=Overall[[GREEN]] - [[GOLD]]Rang [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=M\u00c5L: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill={0}[[GREEN]] - [[GOLD]]Rang [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Unranked=[[WHITE]]Degraderet
|
||||
Commands.mcrefresh.Success=[[RED]]{0}\'\'s nedk\u00f8ling er blevet genindl\u00e6st.
|
||||
Commands.mcrefresh.Success={0}\'\'s nedk\u00f8ling er blevet genindl\u00e6st.
|
||||
Commands.mcremove.Success=[[GREEN]]{0} er succesfuldt fjernet fra databasen!
|
||||
Commands.mctop.Tip=[[GOLD]]Tip: Brug [[RED]]/mcrank[[GOLD]] for at se all dine personlige rangs!
|
||||
Commands.mmoedit=[player] <skill> <newvalue> [[RED]] - \u00c6ndrer m\u00e5let
|
||||
Commands.mmoedit.Modified.1=[[GREEN]]Dit level i {0} er sat til {1}!
|
||||
Commands.mmoedit.Modified.2=[[RED]]{0} er blevet \u00e6ndret for {1}.
|
||||
Commands.ModDescription=[[RED]]- L\u00e6s den korte mod beskrivelse
|
||||
Commands.mmoedit.Modified.2={0} er blevet \u00e6ndret for {1}.
|
||||
Commands.ModDescription=- L\u00e6s den korte mod beskrivelse
|
||||
Commands.NoConsole=Denne kommando er ikke supported af konsollen.
|
||||
Commands.Other=[[GREEN]]--ANDRE KOMMANDOER--
|
||||
Commands.Party.Accept=[[RED]]- Accepter gruppe invitation
|
||||
Commands.Party.Accept=- Accepter gruppe invitation
|
||||
Commands.Party.Chat.Off=Gruppe Chat kun [[RED]]Slukket
|
||||
Commands.Party.Chat.On=Kun Gruppe Chat [[GREEN]]Rigtigt
|
||||
Commands.Party.Commands=[[GREEN]]--GRUPPE KOMMANDOER--
|
||||
Commands.Party.Invite.0=[[RED]]INFORMATION: [[GREEN]]Du har modtaget en gruppe invitation for {0} from {1}
|
||||
Commands.Party.Kick=[[RED]]Du er blevet fjernet fra gruppen {0}!
|
||||
Commands.Party.Leave=[[RED]]Du har forladt denne gruppe
|
||||
Commands.Party.None=[[RED]]Du er ikke i en gruppe.
|
||||
Commands.Party.Quit=[[RED]]- Forlad din nuv\u00e6rende Gruppe
|
||||
Commands.Party.Invite.0=INFORMATION: [[GREEN]]Du har modtaget en gruppe invitation for {0} from {1}
|
||||
Commands.Party.Kick=Du er blevet fjernet fra gruppen {0}!
|
||||
Commands.Party.Leave=Du har forladt denne gruppe
|
||||
Commands.Party.None=Du er ikke i en gruppe.
|
||||
Commands.Party.Quit=- Forlad din nuv\u00e6rende Gruppe
|
||||
Commands.Party.Teleport=<player> [[RED]]- Teleporter til gruppe medlem
|
||||
Commands.Party.Toggle=[[RED]]- Skift Gruppe Chat
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO[[BLUE]] Kraft Level [[YELLOW]]Rangliste--
|
||||
Commands.Party.Toggle=- Skift Gruppe Chat
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO[[BLUE]] Kraft Level [[YELLOW]]Rangliste--
|
||||
Commands.PowerLevel.Capped=[[DARK_RED]]KRAFT LEVEL: [[GREEN]]{0} [[DARK_RED]]MAX LEVEL: [[YELLOW]]{1}
|
||||
Commands.PowerLevel=[[DARK_RED]]Kraft level: [[GREEN]]{0}
|
||||
Commands.Reset.All=[[GREEN]]Dine {0} Evne levels er blevet gendannet succesfuldt
|
||||
Commands.Reset.Single=[[GREEN]]Dine {0} Evne levels er blevet gendannet succesfuldt
|
||||
Commands.Reset=[[RED]]Genindl\u00e6s en evnes level til 0
|
||||
Commands.Skill.Invalid=[[RED]]Det er ikke et brugbart evnenavn!
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--mcMMO [[BLUE]]{0}[[YELLOW]] Rangliste--
|
||||
Commands.Reset=Genindl\u00e6s en evnes level til 0
|
||||
Commands.Skill.Invalid=Det er ikke et brugbart evnenavn!
|
||||
Commands.Skill.Leaderboard=--mcMMO [[BLUE]]{0}[[YELLOW]] Rangliste--
|
||||
Commands.Stats.Self=DINE STATS
|
||||
Commands.Stats=[[RED]]- Se dine mcMMO statistikker.
|
||||
Commands.ToggleAbility=[[RED]]- Skift evne aktivering med h\u00f8jre-click
|
||||
Commands.Usage.1=[[RED]]Korrekt brug er /{0} {1}
|
||||
Commands.Usage.2=[[RED]]Korrekt brug er /{0} {1} {2}
|
||||
Commands.Usage.3=[[RED]]Korrekt brug er /{0} {1} {2} {3}
|
||||
Commands.Stats=- Se dine mcMMO statistikker.
|
||||
Commands.ToggleAbility=- Skift evne aktivering med h\u00f8jre-click
|
||||
Commands.Usage.1=Korrekt brug er /{0} {1}
|
||||
Commands.Usage.2=Korrekt brug er /{0} {1} {2}
|
||||
Commands.Usage.3=Korrekt brug er /{0} {1} {2} {3}
|
||||
Commands.Usage.Level=Level
|
||||
Commands.Usage.Message=besked
|
||||
Commands.Usage.Page=side
|
||||
Commands.Usage.Player=spiller
|
||||
Commands.Usage.Skill=Evne
|
||||
Commands.Usage.XP=xp
|
||||
mcMMO.NoInvites=[[RED]] Du har ingen invitationer p\u00e5 nuv\u00e6rende tidspunkt
|
||||
mcMMO.NoInvites= Du har ingen invitationer p\u00e5 nuv\u00e6rende tidspunkt
|
||||
mcMMO.NoPermission=[[DARK_RED]]Ikke nok Tilladelser.
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]Hvis du ikke har adgang til en evne, vil den evne ikke blive vist her.
|
||||
Party.Forbidden=[mcMMO] grupper er ikke tilladt i denne verden (Se Tilladelser)
|
||||
Party.InvalidName=[[DARK_RED]]Dette er ikke et gruppe navn.
|
||||
Party.IsLocked=[[RED]]Denne gruppe er allerede l\u00e5st!
|
||||
Party.IsntLocked=[[RED]]Denne gruppe er ikke l\u00e5st!
|
||||
Party.Locked=[[RED]]Festen er l\u00e5st, kun gruppe lederen kan invitere.
|
||||
Party.IsLocked=Denne gruppe er allerede l\u00e5st!
|
||||
Party.IsntLocked=Denne gruppe er ikke l\u00e5st!
|
||||
Party.Locked=Festen er l\u00e5st, kun gruppe lederen kan invitere.
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} er ikke i din gruppe
|
||||
Party.NotOwner=[[DARK_RED]]Du er ikke gruppe lederen.
|
||||
Party.Owner.New=[[GREEN]]{0} er den nye gruppe leder.
|
||||
Party.Owner.NotLeader=[[DARK_RED]]Du er ikke l\u00e6ngere gruppens leder.
|
||||
Party.Owner.Player=[[GREEN]]Du er nu gruppe lederen.
|
||||
Party.Password.Incorrect=[[RED]]Gruppe kodeord er forkert.
|
||||
Party.Password.Incorrect=Gruppe kodeord er forkert.
|
||||
Party.Password.Set=[[GREEN]]Gruppe adgangskode sat til {0}
|
||||
Party.Player.Invalid=[[RED]]Dette er ikke en rigtig spiller.
|
||||
Party.Teleport.Dead=[[RED]]Du kan ikke teleportere til en d\u00f8d spiller.
|
||||
Party.Player.Invalid=Dette er ikke en rigtig spiller.
|
||||
Party.Teleport.Dead=Du kan ikke teleportere til en d\u00f8d spiller.
|
||||
Party.Teleport.Player=[[GREEN]]Du har teleporteret til {0}.
|
||||
Party.Teleport.Self=[[RED]]Du kan ikke teleportere dig selv!
|
||||
Party.Teleport.Self=Du kan ikke teleportere dig selv!
|
||||
Party.Teleport.Target=[[GREEN]]{0} har teleporteret til dig.
|
||||
Party.Unlocked=[[GRAY]]Gruppe er \u00e5ben
|
||||
Commands.XPGain.Acrobatics=Falder
|
||||
@ -416,11 +416,11 @@ Commands.XPGain.Woodcutting=Hugger tr\u00e6er ned
|
||||
Commands.XPGain=[[DARK_GRAY]]XP FORTJENST: [[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]Din XP BAR er nu l\u00e5st til {0}!
|
||||
Commands.xplock.unlocked=[[GOLD]]Din XP BAR er nu [[GREEN]]\u00c5BEN[[GOLD]]!
|
||||
Commands.xprate.modified=[[RED]]The XP er blevet \u00e6ndret til {0}
|
||||
Commands.xprate.over=[[RED]]mcMMO XP bed\u00f8mnings begivenhed er SLUT!!
|
||||
Commands.xprate.proper.0=[[RED]]Den rigtige m\u00e5de at \u00e6ndre XP ratio er /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=[[RED]]Rigtig brug for at s\u00e6tte XP level til 0 er /xprate reset
|
||||
Commands.xprate.proper.2=[[RED]]V\u00e6lg sandt eller falsk for at vise om dette er en XP begivenhed eller ikke
|
||||
Commands.xprate.modified=The XP er blevet \u00e6ndret til {0}
|
||||
Commands.xprate.over=mcMMO XP bed\u00f8mnings begivenhed er SLUT!!
|
||||
Commands.xprate.proper.0=Den rigtige m\u00e5de at \u00e6ndre XP ratio er /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=Rigtig brug for at s\u00e6tte XP level til 0 er /xprate reset
|
||||
Commands.xprate.proper.2=V\u00e6lg sandt eller falsk for at vise om dette er en XP begivenhed eller ikke
|
||||
Commands.xprate.started.0=[[GOLD]]XP BEGIVENHEDER FOR mcMMO ER STARTET!
|
||||
Commands.xprate.started.1=[[GOLD]]mcMMO XP BED\u00d8MMELSE ER NU {0}x!
|
||||
XPRate.Event=[[GOLD]]mcMMO er lige nu i gang med et XP bed\u00f8mnings begivenhed! XP bed\u00f8mning er {0}x!
|
||||
@ -430,19 +430,19 @@ Effects.Template=[[DARK_AQUA]]{0}: [[GREEN]]{1}
|
||||
Guides.Available=[[GRAY]]Guide for {0} tilg\u00e6ngelige - skriv /{1} ? [page]
|
||||
Guides.Header=[[GOLD]]-=[[GREEN]]{0} Guide[[GOLD]]=-
|
||||
Guides.Page.Invalid=Ikke et gyldigt side nummer!
|
||||
Guides.Usage=[[RED]] Korrekt brug er /{0} ? [page]
|
||||
Inspect.Offline=[[RED]] Du har ikke tilladelse til at inspicere offline spillere!
|
||||
Guides.Usage= Korrekt brug er /{0} ? [page]
|
||||
Inspect.Offline= Du har ikke tilladelse til at inspicere offline spillere!
|
||||
Inspect.OfflineStats=mcMMO Stats for Offline Spillere [[YELLOW]]{0}
|
||||
Inspect.Stats=[[GREEN]]mcMMO F\u00e6rdigheder for [[YELLOW]]{0}
|
||||
Inspect.TooFar=[[RED]]Du er for langt v\u00e6k til at inspicere denne spiller!
|
||||
Inspect.TooFar=Du er for langt v\u00e6k til at inspicere denne spiller!
|
||||
Item.ChimaeraWing.Fail=**KIM\u00c6RE VINGE FEJLEDE!**
|
||||
Item.ChimaeraWing.Pass=**KIM\u00c6RE VINGE**
|
||||
Item.Injured.Wait=Du var for nylig skadet og m\u00e5 derfor vente med at bruge dette. [[YELLOW]]({0}s)
|
||||
Skills.Disarmed=[[DARK_RED]]Du er blevet afv\u00e6bnet!
|
||||
Skills.Header=[[RED]]-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.Header=-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.NeedMore=[[DARK_RED]]Du mangler mere
|
||||
Skills.Stats=[[YELLOW]]{0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.TooTired=[[RED]]Du er for udmattet til at bruge denne evne igen.
|
||||
Skills.Stats={0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.TooTired=Du er for udmattet til at bruge denne evne igen.
|
||||
Stats.Header.Combat=[[GOLD]]-=KAMP EVNER=-
|
||||
Stats.Header.Gathering=[[GOLD]]-=INDSAMLINGS EVNER=-
|
||||
Stats.Header.Misc=[[GOLD]]-=MISC SKILLS=-
|
||||
@ -461,6 +461,6 @@ Perks.ActivationTime.Bonus=[[GOLD]] ({0}s med Udholdenheds Frynsegode)
|
||||
MOTD.Donate=[[DARK_AQUA]]Donations Info:
|
||||
MOTD.Hardcore.DeathStatLoss.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Evne d\u00f8ds straf: [[DARK_RED]]{0}%
|
||||
MOTD.Hardcore.Vampirism.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]Vampyr Statistik Igle: [[DARK_RED]]{0}%
|
||||
MOTD.PerksPrefix=[[RED]][mcMMO Frynsegoder]
|
||||
MOTD.PerksPrefix=[mcMMO Frynsegoder]
|
||||
MOTD.Version=[[GOLD]][mcMMO] K\u00f8rer version [[DARK_AQUA]]{0}
|
||||
MOTD.Website=[[GOLD]][mcMMO] [[GREEN]]{0}[[YELLOW]] - mcMMO Hjemmeside
|
||||
|
@ -34,7 +34,7 @@
|
||||
#ACROBATICS
|
||||
Acrobatics.Ability.Proc=[[GREEN]]**Grazi\u00f6s Abgerollt**
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**Ausgewichen**
|
||||
Acrobatics.DodgeChance=[[RED]]Ausweich-Chance: [[YELLOW]]{0}
|
||||
Acrobatics.DodgeChance=Ausweich-Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Name=Rolle
|
||||
Acrobatics.SubSkill.Roll.Description=Reduziert oder negiert Fall-Schaden
|
||||
Acrobatics.SubSkill.GracefulRoll.Name=Grazi\u00f6se Rolle
|
||||
@ -42,11 +42,11 @@ Acrobatics.SubSkill.GracefulRoll.Description=Doppelte Effektivit\u00e4t der Roll
|
||||
Acrobatics.SubSkill.Dodge.Name=Ausweichen
|
||||
Acrobatics.SubSkill.Dodge.Description=Halbiert Angriffschaden
|
||||
Acrobatics.Listener=Akrobatik:
|
||||
Acrobatics.SubSkill.Roll.Chance=[[RED]]Rolle-Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=[[RED]]Grazi\u00f6se Rolle-Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Chance=Rolle-Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=Grazi\u00f6se Rolle-Chance: [[YELLOW]]{0}
|
||||
Acrobatics.Roll.Text=**Abgerollt**
|
||||
Acrobatics.SkillName=AKROBATIK
|
||||
Acrobatics.Skillup=[[YELLOW]]Akrobatik Skill um {0} gestiegen. Gesamt ({1})
|
||||
Acrobatics.Skillup=Akrobatik Skill um {0} gestiegen. Gesamt ({1})
|
||||
|
||||
#ALCHEMY
|
||||
Alchemy.SubSkill.Catalysis.Name=Katalyse
|
||||
@ -55,16 +55,16 @@ Alchemy.SubSkill.Concoctions.Name=Braukunst
|
||||
Alchemy.SubSkill.Concoctions.Description=Braue Tr\u00E4nke mit mehr Zutaten
|
||||
Alchemy.Listener=Alchemie:
|
||||
Alchemy.Ability.Locked.0=GESPERRT bis Skill {0}+ (KATALYSE)
|
||||
Alchemy.Catalysis.Speed=[[RED]]Braugeschwindigkeit: [[YELLOW]]{0}
|
||||
Alchemy.Concoctions.Rank=[[RED]]Braukunst Rang: [[YELLOW]]{0}/{1}
|
||||
Alchemy.Concoctions.Ingredients=[[RED]]Zutaten [[[YELLOW]]{0}[[RED]]]: [[YELLOW]]{1}
|
||||
Alchemy.Catalysis.Speed=Braugeschwindigkeit: [[YELLOW]]{0}
|
||||
Alchemy.Concoctions.Rank=Braukunst Rang: [[YELLOW]]{0}/{1}
|
||||
Alchemy.Concoctions.Ingredients=Zutaten [[[YELLOW]]{0}[[RED]]]: [[YELLOW]]{1}
|
||||
Alchemy.SkillName=ALCHEMIE
|
||||
Alchemy.Skillup=[[YELLOW]]Alchemie Skill um {0} gestiegen. Gesamt ({1})
|
||||
Alchemy.Skillup=Alchemie Skill um {0} gestiegen. Gesamt ({1})
|
||||
|
||||
#ARCHERY
|
||||
Archery.Combat.DazeChance=[[RED]]Chance auf Bet\u00e4ubung: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=[[RED]]Chance auf Pfeil-R\u00fcckgewinnung: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=[[RED]]Kunstschuss Zusatzschaden: [[YELLOW]]{0}
|
||||
Archery.Combat.DazeChance=Chance auf Bet\u00e4ubung: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=Chance auf Pfeil-R\u00fcckgewinnung: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=Kunstschuss Zusatzschaden: [[YELLOW]]{0}
|
||||
Archery.SubSkill.SkillShot.Name=Kunstschuss
|
||||
Archery.SubSkill.SkillShot.Description=Erh\u00f6ht Schaden vom Bogen
|
||||
Archery.SubSkill.Daze.Name=Bet\u00e4ubung (Spieler)
|
||||
@ -73,7 +73,7 @@ Archery.SubSkill.ArrowRetrieval.Name=Pfeil-R\u00fcckgewinnung
|
||||
Archery.SubSkill.ArrowRetrieval.Description=Chance auf Pfeil-R\u00fcckgewinnung von Leichen
|
||||
Archery.Listener=Bogen:
|
||||
Archery.SkillName=BOGEN
|
||||
Archery.Skillup=[[YELLOW]]Bogenschie\u00DFen Fertigkeit ist um {0} gestiegen. Gesamt ({1})
|
||||
Archery.Skillup=Bogenschie\u00DFen Fertigkeit ist um {0} gestiegen. Gesamt ({1})
|
||||
|
||||
#AXES
|
||||
Axes.Ability.Bonus.0=Axt-Beherrschung
|
||||
@ -85,12 +85,12 @@ Axes.Ability.Bonus.5=Verursacht {0} Zusatz-Schaden gegen ungepanzerte Feinde
|
||||
Axes.Ability.Lower=[[GRAY]]**Du senkst deine Axt**
|
||||
Axes.Ability.Ready=[[GREEN]]**Deine Axt ist bereit**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]Du wurdest KRITISCH getroffen!
|
||||
Axes.Combat.CritChance=[[RED]]Chance auf kritischen Treffer: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=[[RED]]KRITISCHER TREFFER!
|
||||
Axes.Combat.CritChance=Chance auf kritischen Treffer: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=KRITISCHER TREFFER!
|
||||
Axes.Combat.GI.Proc=[[GREEN]]**AUSGESCHALTET durch GEWALT SCHLAG**
|
||||
Axes.Combat.GI.Struck=[[RED]]**Von WUCHT-SCHLAG getroffen**
|
||||
Axes.Combat.GI.Struck=**Von WUCHT-SCHLAG getroffen**
|
||||
Axes.Combat.SS.Struck=[[DARK_RED]]vom Sch\u00E4delspalter getroffen!
|
||||
Axes.Combat.SS.Length=[[RED]]Sch\u00e4del-Spalter Dauer: [[YELLOW]]{0}s
|
||||
Axes.Combat.SS.Length=Sch\u00e4del-Spalter Dauer: [[YELLOW]]{0}s
|
||||
Axes.SubSkill.SkullSplitter.Name=Sch\u00e4del-Spalter (F\u00e4higkeit)
|
||||
Axes.SubSkill.SkullSplitter.Description=Verursacht Umgebungsschaden
|
||||
Axes.SubSkill.CriticalStrikes.Name=Kritische Treffer
|
||||
@ -103,12 +103,12 @@ Axes.SubSkill.GreaterImpact.Name=Wucht-Schlag
|
||||
Axes.SubSkill.GreaterImpact.Description=Zusatz-Schaden gegen ungepanzerte Feinde
|
||||
Axes.Listener=Axt:
|
||||
Axes.SkillName=AXT
|
||||
Axes.Skills.SS.Off=[[RED]]**Sch\u00e4del-Spalter abgenutzt**
|
||||
Axes.Skills.SS.Off=**Sch\u00e4del-Spalter abgenutzt**
|
||||
Axes.Skills.SS.On=[[GREEN]]**Sch\u00e4del-Spalter AKTIVIERT**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]Dein [[YELLOW]]Sch\u00e4del-Spalter [[GREEN]]ist wieder bereit!
|
||||
Axes.Skills.SS.Other.Off=[[YELLOW]]{0}s [[RED]]Sch\u00e4del-Spalter[[GREEN]] ist [[GREEN]]abgenutzt
|
||||
Axes.Skills.SS.Other.Off={0}s [[RED]]Sch\u00e4del-Spalter[[GREEN]] ist [[GREEN]]abgenutzt
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] benutzte [[RED]]Sch\u00e4del-Spalter!
|
||||
Axes.Skillup=[[YELLOW]]Axt Skill um {0} gestiegen. Gesamt ({1})
|
||||
Axes.Skillup=Axt Skill um {0} gestiegen. Gesamt ({1})
|
||||
|
||||
#EXCAVATION
|
||||
Excavation.Ability.Lower=[[GRAY]]**Du senkst deine SCHAUFEL**
|
||||
@ -117,28 +117,28 @@ Excavation.SubSkill.GigaDrillBreaker.Name=Giga Bohrhammer (F\u00e4higkeit)
|
||||
Excavation.SubSkill.GigaDrillBreaker.Description=3x Drop Rate, 3x EXP, +Geschwindigkeit
|
||||
Excavation.SubSkill.TreasureHunter.Name=Schatz-J\u00e4ger
|
||||
Excavation.SubSkill.TreasureHunter.Description=F\u00e4higkeit nach Sch\u00e4tzen zu graben
|
||||
Excavation.Effect.Length=[[RED]]Giga Bohrhammer Dauer: [[YELLOW]]{0}s
|
||||
Excavation.Effect.Length=Giga Bohrhammer Dauer: [[YELLOW]]{0}s
|
||||
Excavation.Listener=Graben:
|
||||
Excavation.SkillName=GRABEN
|
||||
Excavation.Skills.GigaDrillBreaker.Off=[[RED]]**Giga Bohrer ausgelaufen**
|
||||
Excavation.Skills.GigaDrillBreaker.Off=**Giga Bohrer ausgelaufen**
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**Giga Bohrer AKTIVIERT**
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]Dein [[YELLOW]]Giga Bohrer [[GREEN]]ist wieder bereit!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=[[YELLOW]]{0}s [[RED]]Giga Bohrer[[GREEN]] ist [[GREEN]]ausgelaufen
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off={0}s [[RED]]Giga Bohrer[[GREEN]] ist [[GREEN]]ausgelaufen
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] benutzte [[RED]]Giga Bohrer!
|
||||
Excavation.Skillup=[[YELLOW]]Graben Skill um {0} gestiegen. Gesamt ({1})
|
||||
Excavation.Skillup=Graben Skill um {0} gestiegen. Gesamt ({1})
|
||||
|
||||
#FISHING
|
||||
Fishing.Ability.Chance=[[RED]]Anbei\u00DFwahrscheinlichkeit: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=[[RED]]Zauber-J\u00e4ger: [[GRAY]] **Verbessert sich mit Schatz-J\u00e4ger Rang**
|
||||
Fishing.Ability.Chance=Anbei\u00DFwahrscheinlichkeit: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=Zauber-J\u00e4ger: [[GRAY]] **Verbessert sich mit Schatz-J\u00e4ger Rang**
|
||||
Fishing.Ability.Locked.0=GESPERRT bis Skill {0}+ (Rei\u00DFen)
|
||||
Fishing.Ability.Locked.1=GESPERRT bis Skill {0}+ (Eisangeln)
|
||||
Fishing.Ability.Locked.2=GESPERRT bis Skill {0}+ (Profiangel)
|
||||
Fishing.Ability.Rank=[[RED]]Schatz-J\u00e4ger Rang: [[YELLOW]]{0}/{1}
|
||||
Fishing.Ability.TH.DropRate=[[RED]] Drop Rate: [[DARK_RED]]Falle: [[YELLOW]]{0} [[GRAY]]Oft: [[YELLOW]]{1} [[GREEN]]Gelegentlich: [[YELLOW]]{2}\n[[BLUE]]Au\u00DFergew\u00F6hnlich: [[YELLOW]]{3} [[LIGHT_PURPLE]]Selten: [[YELLOW]]{4} [[GOLD]]Schatz: [[YELLOW]]{5} [[AQUA]]Schallplatte: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=[[RED]]Zauber-J\u00e4ger Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=[[RED]]Rei\u00DFen-Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=[[RED]]Eisangeln: Angeln im Eis
|
||||
Fishing.Ability.FD=[[RED]]Fischer-Mahlzeit Rang: [[YELLOW]]{0}
|
||||
Fishing.Ability.Rank=Schatz-J\u00e4ger Rang: [[YELLOW]]{0}/{1}
|
||||
Fishing.Ability.TH.DropRate= Drop Rate: [[DARK_RED]]Falle: [[YELLOW]]{0} [[GRAY]]Oft: [[YELLOW]]{1} [[GREEN]]Gelegentlich: [[YELLOW]]{2}\n[[BLUE]]Au\u00DFergew\u00F6hnlich: [[YELLOW]]{3} [[LIGHT_PURPLE]]Selten: [[YELLOW]]{4} [[GOLD]]Schatz: [[YELLOW]]{5} [[AQUA]]Schallplatte: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=Zauber-J\u00e4ger Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=Rei\u00DFen-Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=Eisangeln: Angeln im Eis
|
||||
Fishing.Ability.FD=Fischer-Mahlzeit Rang: [[YELLOW]]{0}
|
||||
Fishing.SubSkill.TreasureHunter.Name=Schatz-J\u00e4ger (Passiv)
|
||||
Fishing.SubSkill.TreasureHunter.Description=Angle verschiedene Objekte
|
||||
Fishing.SubSkill.MagicHunter.Name=Zauber-J\u00e4ger
|
||||
@ -157,22 +157,22 @@ Fishing.Ability.TH.MagicFound=[[AQUA]]Dich ber\u00fchrt ein leichter Zauber bei
|
||||
Fishing.Ability.TH.Boom=[[GRAY]]KARPADOR SETZT PLATSCHER EIN!!!
|
||||
Fishing.Ability.TH.Poison=[[GRAY]]Hier stinkt etwas...
|
||||
Fishing.SkillName=ANGELN
|
||||
Fishing.Skillup=[[YELLOW]]Angel Skill um {0} gestiegen. Gesamt ({1})
|
||||
Fishing.Skillup=Angel Skill um {0} gestiegen. Gesamt ({1})
|
||||
|
||||
#HERBALISM
|
||||
Herbalism.Ability.DoubleDropChance=[[RED]]Chance auf Doppel-Drops: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=[[RED]]Bauernfr\u00fchst\u00fcck: [[YELLOW]]Stufe {0}
|
||||
Herbalism.Ability.GTe.Length=[[RED]]Gr\u00fcnes Land Dauer: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=[[RED]]Du brauchst mehr Samen um Gr\u00FCnes Land zu verbreiten.
|
||||
Herbalism.Ability.GTh.Chance=[[RED]]Gr\u00fcner Daumen Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=[[RED]]**Gr\u00fcner Daumen GESCHEITERT**
|
||||
Herbalism.Ability.GTh.Stage=[[RED]]Gr\u00fcner Daumen Stufe: [[YELLOW]] Weizen w\u00e4chst auf Stufe {0}
|
||||
Herbalism.Ability.DoubleDropChance=Chance auf Doppel-Drops: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=Bauernfr\u00fchst\u00fcck: [[YELLOW]]Stufe {0}
|
||||
Herbalism.Ability.GTe.Length=Gr\u00fcnes Land Dauer: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=Du brauchst mehr Samen um Gr\u00FCnes Land zu verbreiten.
|
||||
Herbalism.Ability.GTh.Chance=Gr\u00fcner Daumen Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=**Gr\u00fcner Daumen GESCHEITERT**
|
||||
Herbalism.Ability.GTh.Stage=Gr\u00fcner Daumen Stufe: [[YELLOW]] Weizen w\u00e4chst auf Stufe {0}
|
||||
Herbalism.Ability.GTh=[[GREEN]]**GR\u00dcNER DAUMEN**
|
||||
Herbalism.Ability.HylianLuck=[[RED]]Hylians Gl\u00fccks Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.HylianLuck=Hylians Gl\u00fccks Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.Lower=[[GRAY]]**Du senkst deine HARKE**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**Deine HARKE ist bereit**
|
||||
Herbalism.Ability.ShroomThumb.Chance=[[RED]]Gr\u00FCne Zehe Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=[[RED]]**GR\u00DCNE ZEHE GESCHEITERT**
|
||||
Herbalism.Ability.ShroomThumb.Chance=Gr\u00FCne Zehe Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=**GR\u00DCNE ZEHE GESCHEITERT**
|
||||
Herbalism.SubSkill.GreenTerra.Name=Gr\u00fcnes Land (F\u00e4higkeit)
|
||||
Herbalism.SubSkill.GreenTerra.Description=Erte das Land ab, 3x Drops
|
||||
Herbalism.SubSkill.GreenThumb.Name=Gr\u00fcner Daumen (Weizen)
|
||||
@ -189,15 +189,15 @@ Herbalism.SubSkill.ShroomThumb.Description=Verbreite Myzel auf Gras und Erde
|
||||
Herbalism.HylianLuck=[[GREEN]]Heute ist das Gl\u00fcck von Hyrule mit dir!
|
||||
Herbalism.Listener=Pflanzenkunde:
|
||||
Herbalism.SkillName=PFLANZENKUNDE
|
||||
Herbalism.Skills.GTe.Off=[[RED]]**Gr\u00fcnes Land ist ausgelaufen**
|
||||
Herbalism.Skills.GTe.Off=**Gr\u00fcnes Land ist ausgelaufen**
|
||||
Herbalism.Skills.GTe.On=[[GREEN]]**Gr\u00fcnes Land AKTIVIERT**
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]Deine [[YELLOW]]Gr\u00fcnes Land [[GREEN]]F\u00e4higkeit ist wieder bereit!
|
||||
Herbalism.Skills.GTe.Other.Off=[[YELLOW]]{0}s [[RED]]Gr\u00fcnes Land[[GREEN]] ist [[GREEN]]ausgelaufen.
|
||||
Herbalism.Skills.GTe.Other.Off={0}s [[RED]]Gr\u00fcnes Land[[GREEN]] ist [[GREEN]]ausgelaufen.
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]{0}[[DARK_GREEN]] benutzte [[RED]]Gr\u00fcnes Land!
|
||||
Herbalism.Skillup=[[YELLOW]]Pflanzenkunde Skill um {0} gestiegen. Gesamt ({1})
|
||||
Herbalism.Skillup=Pflanzenkunde Skill um {0} gestiegen. Gesamt ({1})
|
||||
|
||||
#MINING
|
||||
Mining.Ability.Length=[[RED]]Super-Brecher Dauer: [[YELLOW]]{0}s
|
||||
Mining.Ability.Length=Super-Brecher Dauer: [[YELLOW]]{0}s
|
||||
Mining.Ability.Locked.0=GESPERRT bis Skill {0}+ (Z\u00fcndstoff)
|
||||
Mining.Ability.Locked.1=GESPERRT bis Skill {0}+ (Sprengmeister)
|
||||
Mining.Ability.Locked.2=GESPERRT bis Skill {0}+ (Explosions-Experte)
|
||||
@ -213,22 +213,22 @@ Mining.SubSkill.BiggerBombs.Name=Sprengmeister
|
||||
Mining.SubSkill.BiggerBombs.Description=Erh\u00f6ht den Explosions-Radius
|
||||
Mining.SubSkill.DemolitionsExpertise.Name=Explosions-Experte
|
||||
Mining.SubSkill.DemolitionsExpertise.Description=Reduziert die Verletzung durch TNT Explosionen
|
||||
Mining.Effect.Decrease=[[RED]]Explosions-Experte Schadensreduzierung: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=[[RED]]Doppel Drop Chance: [[YELLOW]]{0}
|
||||
Mining.Effect.Decrease=Explosions-Experte Schadensreduzierung: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=Doppel Drop Chance: [[YELLOW]]{0}
|
||||
Mining.Listener=Bergbau:
|
||||
Mining.SkillName=BERGBAU
|
||||
Mining.Skills.SuperBreaker.Off=[[RED]]**Super-Brecher ist ausgelaufen**
|
||||
Mining.Skills.SuperBreaker.Off=**Super-Brecher ist ausgelaufen**
|
||||
Mining.Skills.SuperBreaker.On=[[GREEN]]**Super-Brecher AKTIVIERT**
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[YELLOW]]{0}s [[RED]]Super-Brecher[[GREEN]] ist [[GREEN]]ausgelaufen.
|
||||
Mining.Skills.SuperBreaker.Other.Off={0}s [[RED]]Super-Brecher[[GREEN]] ist [[GREEN]]ausgelaufen.
|
||||
Mining.Skills.SuperBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] benutzte [[RED]]Super-Brecher!
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]Dein [[YELLOW]]Super-Brecher [[GREEN]]ist wieder bereit!
|
||||
Mining.Skillup=[[YELLOW]]Bergbau Fertigkeit ist um {0} gestiegen. Gesamt ({1})
|
||||
Mining.Skillup=Bergbau Fertigkeit ist um {0} gestiegen. Gesamt ({1})
|
||||
|
||||
#Blast Mining
|
||||
Mining.Blast.Boom=[[GRAY]]**BOOM**
|
||||
Mining.Blast.Effect=+{0} Erze -{1} Schutt, {2}x Drops
|
||||
Mining.Blast.Radius.Increase=[[RED]]Z\u00fcndstoff Radius Erh\u00f6hung: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=[[RED]]Z\u00fcndstoff Rang:[[YELLOW]] {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Radius.Increase=Z\u00fcndstoff Radius Erh\u00f6hung: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=Z\u00fcndstoff Rang:[[YELLOW]] {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Other.On=[[GREEN]]{0}[[DARK_GREEN]] benutzte [[RED]]Z\u00fcndstoff!
|
||||
Mining.Blast.Refresh=[[GREEN]]Dein [[YELLOW]]Z\u00fcndstoff [[GREEN]]ist wieder bereit!
|
||||
|
||||
@ -257,23 +257,23 @@ Repair.Skills.AdeptDiamond=[[DARK_RED]]Du hast nicht gen\u00fcgend Level um Diam
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]Du hast nicht gen\u00fcgend Level um Gold zu reparieren.
|
||||
Repair.Skills.AdeptIron=[[DARK_RED]]Du hast nicht gen\u00fcgend Level um Eisen zu reparieren
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]Du hast nicht gen\u00fcgend Level um Stein zu reparieren
|
||||
Repair.Skills.Adept=[[RED]]Du ben\u00f6tigst Level [[YELLOW]]{0}[[RED]] um [[YELLOW]]{1} zu reparieren.
|
||||
Repair.Skills.Adept=Du ben\u00f6tigst Level [[YELLOW]]{0}[[RED]] um [[YELLOW]]{1} zu reparieren.
|
||||
Repair.Skills.FeltEasy=[[GRAY]]Das f\u00fchlte sich einfach an.
|
||||
Repair.Skills.FullDurability=[[GRAY]]Dieser Gegenstand hat volle Haltbarkeit.
|
||||
Repair.Skills.Mastery=[[RED]]Reparatur-Meister: [[YELLOW]]{0} Zusatz-Haltbarkeit.
|
||||
Repair.Skills.Mastery=Reparatur-Meister: [[YELLOW]]{0} Zusatz-Haltbarkeit.
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]Du kannst keine gestapelten Gegenst\u00e4nde reparieren.
|
||||
Repair.Skills.Super.Chance=[[RED]]Super-Reparatur Chance: [[YELLOW]]{0}
|
||||
Repair.Skillup=[[YELLOW]]Reparatur Skill um {0} gestiegen. Gesamt ({1})
|
||||
Repair.Skills.Super.Chance=Super-Reparatur Chance: [[YELLOW]]{0}
|
||||
Repair.Skillup=Reparatur Skill um {0} gestiegen. Gesamt ({1})
|
||||
Repair.Pretty.Name=Reparatur
|
||||
|
||||
#Arcane Forging
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]AS Verminderungs Chance: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]AS Erfolgs-Rate: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Downgrade=[[RED]]Zauber-Wert des Gegenstands vermindert.
|
||||
Repair.Arcane.Fail=[[RED]]Der Gegenstands wurde entzaubert.
|
||||
Repair.Arcane.Lost=[[RED]]Du hast nicht gen\u00fcgend Skill um Verzauberungen zu erhalten.
|
||||
Repair.Arcane.Downgrade=Zauber-Wert des Gegenstands vermindert.
|
||||
Repair.Arcane.Fail=Der Gegenstands wurde entzaubert.
|
||||
Repair.Arcane.Lost=Du hast nicht gen\u00fcgend Skill um Verzauberungen zu erhalten.
|
||||
Repair.Arcane.Perfect=[[GREEN]]Du hast den Zauber-Wert des Gegenstands erhalten.
|
||||
Repair.Arcane.Rank=[[RED]]Arkanes Schmieden Rang: [[YELLOW]]{0}/{1}
|
||||
Repair.Arcane.Rank=Arkanes Schmieden Rang: [[YELLOW]]{0}/{1}
|
||||
|
||||
#SALVAGE
|
||||
Salvage.Pretty.Name=Verwerten
|
||||
@ -284,15 +284,15 @@ Salvage.SubSkill.ArcaneSalvaging.Description=Extra Verzauberung aus Items
|
||||
Salvage.Ability.Locked.0=GESPERRT bis Skill {0}+ (Fortgeschrittenes Verwerten)
|
||||
Salvage.Ability.Bonus.0=Fortgeschrittenes Verwerten
|
||||
Salvage.Ability.Bonus.1=Max Ertrag {0} Item zerst\u00F6rt
|
||||
Salvage.Arcane.Rank=[[RED]]Arkanes Verwerten: [[YELLOW]]Rang {0}/{1}
|
||||
Salvage.Arcane.Rank=Arkanes Verwerten: [[YELLOW]]Rang {0}/{1}
|
||||
Salvage.Arcane.ExtractFull=[[GRAY]]Verwerten: Gesamte Verzauberung Wahrscheinlichkeit
|
||||
Salvage.Arcane.ExtractPartial=[[GRAY]]Verwerten: Teil-Verzauberung Wahrscheinlichkeit
|
||||
Salvage.Skills.Success=[[GREEN]]Item verwertet!
|
||||
Salvage.Skills.Adept.Damaged=[[DARK_RED]]Deine F\u00E4higkeit ist nicht hoch genug um besch\u00E4digte Items zu verwerten.
|
||||
Salvage.Skills.Adept.Level=[[RED]]Du musst Level [[YELLOW]]{0}[[RED]] sein um [[YELLOW]]{1} [[RED]] zu verwerten.
|
||||
Salvage.Skills.Adept.Level=Du musst Level [[YELLOW]]{0}[[RED]] sein um [[YELLOW]]{1} [[RED]] zu verwerten.
|
||||
Salvage.Skills.TooDamaged=[[DARK_RED]]Das Item ist zu besch\u00E4digt um verwertet zu werden.
|
||||
Salvage.Skills.ArcaneFailed=[[RED]]Es ist dir nicht gelungen das Wissen aus diesem Item zu extrahieren.
|
||||
Salvage.Skills.ArcanePartial=[[YELLOW]]Es ist dir gelungen ein bisschen Wissen zu extrahieren.
|
||||
Salvage.Skills.ArcaneFailed=Es ist dir nicht gelungen das Wissen aus diesem Item zu extrahieren.
|
||||
Salvage.Skills.ArcanePartial=Es ist dir gelungen ein bisschen Wissen zu extrahieren.
|
||||
Salvage.Skills.ArcaneSuccess=[[GREEN]]Du konntest alles Wissen aus diesem Item extrahieren!
|
||||
Salvage.Listener.Anvil=[[DARK_RED]]Du hast einen Verwertungs-Amboss platziert, benutze ihn um Werkzeuge und R\u00FCstung zu verwerten.
|
||||
Salvage.Listener=Verwerten:
|
||||
@ -301,13 +301,13 @@ Salvage.SkillName=VERWERTEN
|
||||
#SWORDS
|
||||
Swords.Ability.Lower=[[GRAY]]**Du senkst dein SCHWERT**
|
||||
Swords.Ability.Ready=[[GREEN]]**Dein SCHWERT ist bereit**
|
||||
Swords.Combat.Bleed.Chance=[[RED]]Blutungs Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=[[RED]]Blutungs Dauer: [[YELLOW]]{0} Ticks
|
||||
Swords.Combat.Bleed.Chance=Blutungs Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=Blutungs Dauer: [[YELLOW]]{0} Ticks
|
||||
Swords.Combat.Bleed.Note=[[GRAY]]Info: [[YELLOW]]1 Tick tritt alle 2 Sekunden ein.
|
||||
Swords.Combat.Bleeding.Started=[[DARK_RED]] Du blutest!
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]Das Bluten hat [[GREEN]]aufgeh\u00f6rt[[GRAY]]!
|
||||
Swords.Combat.Bleeding=[[GREEN]]**GEGNER BLUTET**
|
||||
Swords.Combat.Counter.Chance=[[RED]]Gegenangriff Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Chance=Gegenangriff Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Hit=[[DARK_RED]]Treffer durch Gegenangriff!
|
||||
Swords.Combat.Countered=[[GREEN]]**GEGENANGRIFF**
|
||||
Swords.Combat.SS.Struck=[[DARK_RED]]Getroffen von S\u00c4GEZAHNSCHLAG!
|
||||
@ -321,13 +321,13 @@ Swords.SubSkill.Bleed.Name=Blutung
|
||||
Swords.SubSkill.Bleed.Description=Verursacht Blutungsschaden \u00fcber Zeit
|
||||
Swords.Listener=Schwert:
|
||||
Swords.SkillName=SCHWERT
|
||||
Swords.Skills.SS.Off=[[RED]]**S\u00e4gezahnschlag abgenutzt**
|
||||
Swords.Skills.SS.Off=**S\u00e4gezahnschlag abgenutzt**
|
||||
Swords.Skills.SS.On=[[GREEN]]**S\u00e4gezahnschlag AKTIVIERT**
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]Dein [[YELLOW]]S\u00e4gezahnschlag [[GREEN]]ist wieder bereit!
|
||||
Swords.Skills.SS.Other.Off=[[YELLOW]]{0}s [[RED]]S\u00e4gezahnschlag[[GREEN]] ist [[GREEN]]abgenutzt.
|
||||
Swords.Skills.SS.Other.Off={0}s [[RED]]S\u00e4gezahnschlag[[GREEN]] ist [[GREEN]]abgenutzt.
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] benutzte [[RED]]S\u00e4gezahnschlag!
|
||||
Swords.Skillup=[[YELLOW]]Schwert Skill um {0} gestiegen. Gesamt ({1})
|
||||
Swords.SS.Length=[[RED]]S\u00e4gezahnschlag Dauer: [[YELLOW]]{0}s
|
||||
Swords.Skillup=Schwert Skill um {0} gestiegen. Gesamt ({1})
|
||||
Swords.SS.Length=S\u00e4gezahnschlag Dauer: [[YELLOW]]{0}s
|
||||
|
||||
#TAMING
|
||||
Taming.Ability.Bonus.0=Umweltbewusst
|
||||
@ -348,7 +348,7 @@ Taming.Ability.Locked.2=GESPERRT bis Skill {0}+ (Schock-Sicher)
|
||||
Taming.Ability.Locked.3=GESPERRT bis Skill {0}+ (Gesch\u00e4rfte Krallen)
|
||||
Taming.Ability.Locked.4=GESPERRT bis Skill {0}+ (Schnell-Imbiss)
|
||||
Taming.Ability.Locked.5=GESPERRT bis Skill {0}+ (Heiliger Hund)
|
||||
Taming.Combat.Chance.Gore=[[RED]]Aufschlitzen Chance: [[YELLOW]]{0}
|
||||
Taming.Combat.Chance.Gore=Aufschlitzen Chance: [[YELLOW]]{0}
|
||||
Taming.SubSkill.BeastLore.Name=Bestienkunde
|
||||
Taming.SubSkill.BeastLore.Description=Knochenschlag inspiziert W\u00f6lfe und Ozelots
|
||||
Taming.SubSkill.ShockProof.Name=Schock-Sicher
|
||||
@ -371,23 +371,23 @@ Taming.SubSkill.ThickFur.Description=Verminderter Schaden, Feuer-Resistent
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]Dein Wolf hastet zu dir zur\u00fcck...
|
||||
Taming.Listener=Z\u00e4hmen:
|
||||
Taming.SkillName=Z\u00c4HMEN
|
||||
Taming.Skillup=[[YELLOW]]Z\u00e4hhmen Skill um {0} gestiegen. Gesamt ({1})
|
||||
Taming.Skillup=Z\u00e4hhmen Skill um {0} gestiegen. Gesamt ({1})
|
||||
Taming.Summon.Complete=[[GREEN]]Beschw\u00f6rung abgeschlossen
|
||||
Taming.Summon.Lifespan=[[YELLOW]] (Lebenszeit: {0}s)
|
||||
Taming.Summon.Fail.Ocelot=[[RED]]Du hast zu viele Ozelots um dich, um weitere zu beschw\u00f6ren.
|
||||
Taming.Summon.Fail.Wolf=[[RED]]Du hast zu viele W\u00f6lfe um dich, um weitere zu beschw\u00f6ren.
|
||||
Taming.Summon.Fail.Horse=[[RED]]Du hast zu viele Pferde um dich, um weitere zu beschw\u00f6ren.
|
||||
Taming.Summon.Fail.TooMany=[[RED]]Du hast das Maximum an beschworenen Tieren erreicht [[YELLOW]]({0})
|
||||
Taming.Summon.Lifespan= (Lebenszeit: {0}s)
|
||||
Taming.Summon.Fail.Ocelot=Du hast zu viele Ozelots um dich, um weitere zu beschw\u00f6ren.
|
||||
Taming.Summon.Fail.Wolf=Du hast zu viele W\u00f6lfe um dich, um weitere zu beschw\u00f6ren.
|
||||
Taming.Summon.Fail.Horse=Du hast zu viele Pferde um dich, um weitere zu beschw\u00f6ren.
|
||||
Taming.Summon.Fail.TooMany=Du hast das Maximum an beschworenen Tieren erreicht [[YELLOW]]({0})
|
||||
Taming.Summon.Name.Format={0}''s {1}
|
||||
|
||||
#UNARMED
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]Berserker Dauer: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Berserk.Length=Berserker Dauer: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Bonus.0=Eiserner Arm
|
||||
Unarmed.Ability.Bonus.1=+{0} Schadens-Bonus
|
||||
Unarmed.Ability.Chance.ArrowDeflect=[[RED]]Pfeile ablenken Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=[[RED]]Entwaffnen Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=[[RED]]Eisen Griff Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=[[RED]]Dein Gegner hat einen eisernen Griff!
|
||||
Unarmed.Ability.Chance.ArrowDeflect=Pfeile ablenken Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=Entwaffnen Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=Eisen Griff Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=Dein Gegner hat einen eisernen Griff!
|
||||
Unarmed.Ability.IronGrip.Defender=[[GREEN]]Dein eiserner Griff hat dich vor Entwaffnung gesch\u00FCtzt!
|
||||
Unarmed.Ability.Lower=[[GRAY]]**Du senkst deine F\u00c4USTE**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**Deine F\u00c4USTE sind bereit**
|
||||
@ -403,18 +403,18 @@ Unarmed.SubSkill.IronGrip.Name=Eisen Griff
|
||||
Unarmed.SubSkill.IronGrip.Description=Sch\u00FCtzt dich davor, entwaffnet zu werden
|
||||
Unarmed.Listener=Unbewaffnet:
|
||||
Unarmed.SkillName=UNBEWAFFNET
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**Berserker ausgelaufen**
|
||||
Unarmed.Skills.Berserk.Off=**Berserker ausgelaufen**
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**Berserker AKTIVIERT**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[YELLOW]]{0}s [[RED]]Berserker[[GREEN]] ist [[GREEN]]ausgelaufen
|
||||
Unarmed.Skills.Berserk.Other.Off={0}s [[RED]]Berserker[[GREEN]] ist [[GREEN]]ausgelaufen
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] benutzte [[RED]]Berserker!
|
||||
Unarmed.Skills.Berserk.Refresh=[[GREEN]]Dein [[YELLOW]]Berserker [[GREEN]]ist wieder bereit!
|
||||
Unarmed.Skillup=[[YELLOW]]Unbewaffnet Skill um {0} gestiegen. Gesamt ({1})
|
||||
Unarmed.Skillup=Unbewaffnet Skill um {0} gestiegen. Gesamt ({1})
|
||||
|
||||
#WOODCUTTING
|
||||
Woodcutting.Ability.0=Bl\u00e4ttersturm
|
||||
Woodcutting.Ability.1=Bl\u00e4st Bl\u00e4tter davon
|
||||
Woodcutting.Ability.Chance.DDrop=[[RED]]Doppel Drop Chance: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=[[RED]]Baumf\u00e4ller Dauer: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Chance.DDrop=Doppel Drop Chance: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=Baumf\u00e4ller Dauer: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Locked.0=GESPERRT bis Skill {0}+ (Bl\u00e4ttersturm)
|
||||
Woodcutting.SubSkill.TreeFeller.Name=Baumf\u00e4ller (F\u00e4higkeit)
|
||||
Woodcutting.SubSkill.TreeFeller.Description=L\u00e4sst B\u00e4ume explodieren
|
||||
@ -424,20 +424,20 @@ Woodcutting.SubSkill.HarvestLumber.Name=Doppel Drops
|
||||
Woodcutting.SubSkill.HarvestLumber.Description=Verdoppelt die Ausbeute
|
||||
Woodcutting.Listener=Holzf\u00e4ller:
|
||||
Woodcutting.SkillName=HOLZF\u00c4LLER
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]]**Baumf\u00e4ller abgelaufen**
|
||||
Woodcutting.Skills.TreeFeller.Off=**Baumf\u00e4ller abgelaufen**
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**Baumf\u00e4ller AKTIVIERT**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]Dein [[YELLOW]]Baumf\u00e4ller [[GREEN]]ist wieder bereit!
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[YELLOW]]{0}s [[RED]]Baumf\u00e4ller[[GREEN]] ist [[GREEN]]abgelaufen
|
||||
Woodcutting.Skills.TreeFeller.Other.Off={0}s [[RED]]Baumf\u00e4ller[[GREEN]] ist [[GREEN]]abgelaufen
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]] benutzte [[RED]]Baumf\u00e4ller!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]Deine Axt zersplittert in tausend kleine Teile!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]Dieser Baum ist zu gro\u00DF!
|
||||
Woodcutting.Skillup=[[YELLOW]]Holzf\u00e4ller Skill um {0} gestiegen. Gesamt ({1})
|
||||
Woodcutting.Skills.TreeFeller.Splinter=Deine Axt zersplittert in tausend kleine Teile!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=Dieser Baum ist zu gro\u00DF!
|
||||
Woodcutting.Skillup=Holzf\u00e4ller Skill um {0} gestiegen. Gesamt ({1})
|
||||
|
||||
#ABILITIY
|
||||
##generic
|
||||
Ability.Generic.Refresh=[[GREEN]]**F\u00e4higkeit wieder BEREIT!**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
|
||||
#COMBAT
|
||||
Combat.ArrowDeflect=[[WHITE]]**Pfeil ABGELENKT**
|
||||
@ -445,7 +445,7 @@ Combat.BeastLore=[[GREEN]]**BESTIENKUNDE**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]Gesundheit ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]Besitzer ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**AUFGESCHLITZT**
|
||||
Combat.StruckByGore=[[RED]]**du wurdest AUFGESCHLITZT**
|
||||
Combat.StruckByGore=**du wurdest AUFGESCHLITZT**
|
||||
Combat.TargetDazed=Ziel wurde [[DARK_RED]]BET\u00c4UBT
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]Ungl\u00fccklich ber\u00fchrt. Schwindelgef\u00fchl.
|
||||
|
||||
@ -453,9 +453,9 @@ Combat.TouchedFuzzy=[[DARK_RED]]Ungl\u00fccklich ber\u00fchrt. Schwindelgef\u00f
|
||||
##generic
|
||||
mcMMO.Description=[[DARK_AQUA]]\u00DCber das [[YELLOW]]mcMMO[[DARK_AQUA]] Projekt: [[GOLD]]mcMMO ist ein [[RED]]open source[[GOLD]] RPG mod der im Februar 2011,[[GOLD]]von [[BLUE]]nossr50[[GOLD]] erstellt wurde. Ziel ist es eine gute RPG Erfahrung zu vermitteln.,[[DARK_AQUA]]Tipps:,[[GOLD]] - [[GREEN]]Benutz [[RED]]/mcmmo help[[GREEN]] um Befehle zu sehen,[[GOLD]] - [[GREEN]]Tippe [[RED]]/SKILLNAME[[GREEN]] um detaillierte Skillinformationen zu sehen,[[DARK_AQUA]]Entwickler:,[[GOLD]] - [[GREEN]]nossr50 [[BLUE]](Gr\u00FCnder),[[GOLD]] - [[GREEN]]GJ [[BLUE]](Projektleitung),[[GOLD]] - [[GREEN]]NuclearW [[BLUE]](Entwickler),[[GOLD]] - [[GREEN]]bm01 [[BLUE]](Entwickler),[[GOLD]] - [[GREEN]]TfT_02 [[BLUE]](Entwickler),[[GOLD]] - [[GREEN]]Glitchfinder [[BLUE]](Entwickler),[[GOLD]] - [[GREEN]]t00thpick1 [[BLUE]](Entwickler),[[GOLD]] - [[GREEN]]lumis31 [[BLUE]](Deutsche \u00DCbersetzung), [[DARK_AQUA]]N\u00FCtzliche Links:,[[GOLD]] - [[GREEN]]https://github.com/mcMMO-Dev/mcMMO/issues[[GOLD]] Bug Reporting,[[GOLD]] - [[GREEN]]#mcmmo @ irc.esper.net[[GOLD]] IRC Chat,
|
||||
Commands.addlevels.AwardAll.1=[[GREEN]]Dir wurden {0} Level in allen Skills gutgeschrieben!
|
||||
Commands.addlevels.AwardAll.2=[[RED]]Alle Skills wurden um {0} ge\u00E4ndert.
|
||||
Commands.addlevels.AwardAll.2=Alle Skills wurden um {0} ge\u00E4ndert.
|
||||
Commands.addlevels.AwardSkill.1=[[GREEN]]Dir wurden {0} Level in {1} gutgeschrieben!
|
||||
Commands.addlevels.AwardSkill.2=[[RED]]{0} wurde um {1} ge\u00E4ndert.
|
||||
Commands.addlevels.AwardSkill.2={0} wurde um {1} ge\u00E4ndert.
|
||||
Commands.addxp.AwardAll=[[GREEN]]Dir wurden {0} Erfahrungspunkte in Skills gutgeschrieben!
|
||||
Commands.addxp.AwardSkill=[[GREEN]Dir wurde {0} Erfahrung in {1} gutgeschrieben!
|
||||
Commands.Ability.Off=F\u00e4higkeiten [[RED]]deaktiviert
|
||||
@ -468,12 +468,12 @@ Commands.Chat.Console=*Konsole*
|
||||
Commands.Cooldowns.Header=[[GOLD]]--= [[GREEN]]mcMMO F\u00E4higkeiten Abk\u00FChlzeit[[GOLD]] =--
|
||||
Commands.Cooldowns.Row.N=\ [[RED]]{0}[[WHITE]] - [[GOLD]]{1} Sekunden verbleiben
|
||||
Commands.Cooldowns.Row.Y=\ [[AQUA]]{0}[[WHITE]] - [[DARK_GREEN]]Bereit!
|
||||
Commands.Database.Cooldown=[[RED]]Du musst 1 Sekunde warten bevor du diesen Befehl erneut verwenden darfst.
|
||||
Commands.Database.Processing=[[RED]]Dein vorheriger Befehl wird noch verarbeitet. Bitte warten.
|
||||
Commands.Disabled=[[RED]]Dieser Befehl ist deaktiviert.
|
||||
Commands.Database.Cooldown=Du musst 1 Sekunde warten bevor du diesen Befehl erneut verwenden darfst.
|
||||
Commands.Database.Processing=Dein vorheriger Befehl wird noch verarbeitet. Bitte warten.
|
||||
Commands.Disabled=Dieser Befehl ist deaktiviert.
|
||||
Commands.DoesNotExist= [[RED]]Spieler in Datenbank nicht vorhanden!
|
||||
Commands.GodMode.Disabled=[[YELLOW]]mcMMO Godmode deaktiviert
|
||||
Commands.GodMode.Enabled=[[YELLOW]]mcMMO Godmode aktiviert
|
||||
Commands.GodMode.Disabled=mcMMO Godmode deaktiviert
|
||||
Commands.GodMode.Enabled=mcMMO Godmode aktiviert
|
||||
Commands.GodMode.Forbidden=[mcMMO] Der Godmode ist in dieser Welt nicht erlaubt(Siehe Permissions)
|
||||
Commands.GodMode.Toggle=Godmode wurde f\u00FCr [[YELLOW]]{0} aktiviert
|
||||
Commands.Healthbars.Changed.HEARTS=[mcMMO]Deine Lebensanzeige wurde zu [[RED]]Herzen[[WHITE]] ge\u00E4ndert.
|
||||
@ -483,40 +483,40 @@ Commands.Healthbars.Invalid=Ung\u00FCltiger Lebensanzeige Typ!
|
||||
Commands.Inspect=<player> [[GREEN]]- Siehe detaillierte Spielerinformationen
|
||||
Commands.Invite.Success=[[GREEN]]Einladung erfolgreich gesendet.
|
||||
Commands.Leaderboards=<skill> <page> [[GREEN]]- Bestenlisten
|
||||
Commands.mcc.Header=[[RED]]---[][[GREEN]]mcMMO Befehle[[RED]][]---
|
||||
Commands.mcc.Header=---[][[GREEN]]mcMMO Befehle[[RED]][]---
|
||||
Commands.mcgod=[[GREEN]]- Schalte Godmode um
|
||||
Commands.mchud.Invalid=[[RED]]Das ist kein g\u00FCltiger HUD Typ.
|
||||
Commands.mchud.Invalid=Das ist kein g\u00FCltiger HUD Typ.
|
||||
Commands.mcpurge.Success=[[GREEN]]Die Datenbank wurde erfolgreich ges\u00E4ubert!
|
||||
Commands.mcrank.Heading=[[GOLD]]-=PERS\u00D6NLICHE STATISTIKEN=-
|
||||
Commands.mcrank.Overall=[[YELLOW]]Insgesamt[[GREEN]] - [[GOLD]]Rang [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=[[RED]]ZIEL: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill=[[YELLOW]]{0}[[GREEN]] - [[GOLD]]Rang [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Overall=Insgesamt[[GREEN]] - [[GOLD]]Rang [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=ZIEL: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill={0}[[GREEN]] - [[GOLD]]Rang [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Unranked=[[WHITE]]Ohne Rang
|
||||
Commands.mcrefresh.Success=[[RED]]{0}''s Abk\u00FChlzeiten wurden erneuert.
|
||||
Commands.mcrefresh.Success={0}''s Abk\u00FChlzeiten wurden erneuert.
|
||||
Commands.mcremove.Success=[[GREEN]]{0} wurde erfolgreich von der Datenbank entfernt!
|
||||
Commands.mctop.Tip=[[GOLD]]Tipp: Benutze [[RED]]/mcrank[[GOLD]] um deine pers\u00F6nlichen Statistiken zu sehen!
|
||||
Commands.mmoedit=[player] <skill> <newvalue> [[GREEN]] - Ziel modifizieren
|
||||
Commands.mmoedit.AllSkills.1=[[GREEN]]Dein Level wurde in allen F\u00E4higkeiten zu {0} gesetzt!
|
||||
Commands.mmoedit.Modified.1=[[GREEN]]Dein Level in {0} wurde zu {1} gesetzt!
|
||||
Commands.mmoedit.Modified.2=[[RED]]{0} wurde bei {1} modifiziert.
|
||||
Commands.mcconvert.Database.Same=[[RED]]Du benutzt bereits die {0} Datenbank!
|
||||
Commands.mcconvert.Database.InvalidType=[[RED]]{0} ist kein g\u00FCltiger Datenbanktyp.
|
||||
Commands.mmoedit.Modified.2={0} wurde bei {1} modifiziert.
|
||||
Commands.mcconvert.Database.Same=Du benutzt bereits die {0} Datenbank!
|
||||
Commands.mcconvert.Database.InvalidType={0} ist kein g\u00FCltiger Datenbanktyp.
|
||||
Commands.mcconvert.Database.Start=[[GRAY]]Beginne Konvertierung von {0} zu {1}...
|
||||
Commands.mcconvert.Database.Finish=[[GRAY]]Datenbanken Migration vollendet; die {1} Datenbank hat nun alle Daten von der {0} Datenbank.
|
||||
Commands.mmoshowdb=[[YELLOW]]Die zurzeit verwendete Datenbank ist [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=[[RED]]Unbekannter Formeltyp! G\u00FCltige Typen sind: [[GREEN]]LINEAR [[RED]]und [[GREEN]]EXPONENTIAL.
|
||||
Commands.mcconvert.Experience.Same=[[RED]]Formeltyp {0} wird bereits verwendet
|
||||
Commands.mmoshowdb=Die zurzeit verwendete Datenbank ist [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=Unbekannter Formeltyp! G\u00FCltige Typen sind: [[GREEN]]LINEAR [[RED]]und [[GREEN]]EXPONENTIAL.
|
||||
Commands.mcconvert.Experience.Same=Formeltyp {0} wird bereits verwendet
|
||||
Commands.mcconvert.Experience.Start=[[GRAY]]Beginne Konvertierung von Kurve {0} zu Kurve {1}
|
||||
Commands.mcconvert.Experience.Finish=[[GRAY]]Konvertierung vollendet; jetzt wird die {0} XP Kurve verwendet.
|
||||
Commands.ModDescription=[[GREEN]]- Kurze Modbeschreibung
|
||||
Commands.NoConsole=Dieser Befehl kann nicht aus der Konsole verwendet werden.
|
||||
Commands.Notifications.Off=F\u00E4higkeiten Hinweise wurden [[RED]]deaktiviert
|
||||
Commands.Notifications.On=F\u00E4higkeiten Hinweise wurden [[GREEN]]aktiviert
|
||||
Commands.Offline=[[RED]]Dieser Befehl funktioniert nur bei eingeloggten Spielern.
|
||||
Commands.NotLoaded=[[RED]]Spielerprofil wurde noch nicht geladen.
|
||||
Commands.Other=[[RED]]---[][[GREEN]]ANDERE BEFEHLE[[RED]][]---
|
||||
Commands.Party.Header=[[RED]]-----[][[GREEN]]PARTY[[RED]][]-----
|
||||
Commands.Party.Features.Header=[[RED]]-----[][[GREEN]]FEATURES[[RED]][]-----
|
||||
Commands.Offline=Dieser Befehl funktioniert nur bei eingeloggten Spielern.
|
||||
Commands.NotLoaded=Spielerprofil wurde noch nicht geladen.
|
||||
Commands.Other=---[][[GREEN]]ANDERE BEFEHLE[[RED]][]---
|
||||
Commands.Party.Header=-----[][[GREEN]]PARTY[[RED]][]-----
|
||||
Commands.Party.Features.Header=-----[][[GREEN]]FEATURES[[RED]][]-----
|
||||
Commands.Party.Status=[[DARK_GRAY]]NAME: [[WHITE]]{0} {1} [[DARK_GRAY]]LEVEL: [[DARK_AQUA]]{2}
|
||||
Commands.Party.Status.Alliance=[[DARK_GRAY]]ALLY: [[WHITE]]{0}
|
||||
Commands.Party.UnlockedFeatures=[[DARK_GRAY]]Freigeschaltete Features: [[GRAY]][[ITALIC]]{0}
|
||||
@ -528,9 +528,9 @@ Commands.Party.MembersNear=[[DARK_GRAY]]IN DER N\u00C4HE [[DARK_AQUA]]{0}[[DARK_
|
||||
Commands.Party.Accept=[[GREEN]]- Nimm Party-Einladung an
|
||||
Commands.Party.Chat.Off=Nur Party Chat [[RED]]Aus
|
||||
Commands.Party.Chat.On=Nur Party Chat [[GREEN]]AN
|
||||
Commands.Party.Commands=[[RED]]---[][[GREEN]]PARTY BEFEHLE[[RED]][]---
|
||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]Du hast eine Party Einladung f\u00FCr {0} von {1} erhalten.
|
||||
Commands.Party.Invite.1=[[YELLOW]]Benutze [[GREEN]]/party accept[[YELLOW]] um die Einladung anzunehmen
|
||||
Commands.Party.Commands=---[][[GREEN]]PARTY BEFEHLE[[RED]][]---
|
||||
Commands.Party.Invite.0=ALERT: [[GREEN]]Du hast eine Party Einladung f\u00FCr {0} von {1} erhalten.
|
||||
Commands.Party.Invite.1=Benutze [[GREEN]]/party accept[[YELLOW]] um die Einladung anzunehmen
|
||||
Commands.Party.Invite=[[GREEN]]- Sende eine Party Einladung
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]Einladung angenommen. Du bist der {0} Party beigetreten.
|
||||
Commands.Party.Join=[[GRAY]]Beigetretene Party: {0}
|
||||
@ -539,42 +539,42 @@ Commands.Party.Rename=[[GRAY]]Party Name wurde zu: [[WHITE]]{0} [[GRAY]]ge\u00E4
|
||||
Commands.Party.SetSharing=[[GRAY]]Party {0} teilen: [[DARK_AQUA]]{1}
|
||||
Commands.Party.ToggleShareCategory=[[GRAY]]Party item Teilen f\u00FCr[[GOLD]]{0} [[GRAY]]wurde [[DARK_AQUA]]{1}
|
||||
Commands.Party.AlreadyExists=[[DARK_RED]]Party {0} ist bereits vorhanden!
|
||||
Commands.Party.Kick=[[RED]]Du wurdest von {0} Party entfernt!
|
||||
Commands.Party.Leave=[[RED]]Du hast die Party verlassen
|
||||
Commands.Party.Members.Header=[[RED]]-----[][[GREEN]]MITGLIEDER[[RED]][]-----
|
||||
Commands.Party.None=[[RED]]Du bist in keiner Party.
|
||||
Commands.Party.Kick=Du wurdest von {0} Party entfernt!
|
||||
Commands.Party.Leave=Du hast die Party verlassen
|
||||
Commands.Party.Members.Header=-----[][[GREEN]]MITGLIEDER[[RED]][]-----
|
||||
Commands.Party.None=Du bist in keiner Party.
|
||||
Commands.Party.Quit=[[GREEN]]- Verlasse deine aktuelle Party.
|
||||
Commands.Party.Teleport=[[GREEN]]- Teleportiere dich zu Partymitgliedern.
|
||||
Commands.Party.Toggle=[[GREEN]]- Schalte den Party Chat.
|
||||
Commands.Party1=[[GREEN]]- Erstelle eine neue Party
|
||||
Commands.Party2=[[GREEN]]- Tritt der Party eines Spielers bei.
|
||||
Commands.Party.Alliance.Header=[[RED]]-----[][[GREEN]]PARTY ALLIANZEN[[RED]][]-----
|
||||
Commands.Party.Alliance.Header=-----[][[GREEN]]PARTY ALLIANZEN[[RED]][]-----
|
||||
Commands.Party.Alliance.Ally=[[WHITE]]{0} [[DARK_GRAY]]IS MIT FOLGENDEN VERB\u00DCNDET: [[WHITE]]{1}
|
||||
Commands.Party.Alliance.Members.Header=[[RED]]-----[][[GREEN]]ALLIANZEN MITGLIEDER[[RED]][]-----
|
||||
Commands.Party.Alliance.Invite.0=[[RED]]ALERT: [[GREEN]]Du hast eine B\u00FCndnis Anfrage f\u00FCr {0} von {1} erhalten
|
||||
Commands.Party.Alliance.Invite.1=[[YELLOW]]Tippe [[GREEN]]/party alliance accept[[YELLOW]] um die Anfrage anzunehmen
|
||||
Commands.Party.Alliance.Members.Header=-----[][[GREEN]]ALLIANZEN MITGLIEDER[[RED]][]-----
|
||||
Commands.Party.Alliance.Invite.0=ALERT: [[GREEN]]Du hast eine B\u00FCndnis Anfrage f\u00FCr {0} von {1} erhalten
|
||||
Commands.Party.Alliance.Invite.1=Tippe [[GREEN]]/party alliance accept[[YELLOW]] um die Anfrage anzunehmen
|
||||
Commands.Party.Alliance.Invite.Accepted=[[GREEN]]B\u00FCndnis Anfrage angenommen
|
||||
Commands.Party.Alliance.None=[[RED]]Deine Party hat keine Verb\u00FCndeten.
|
||||
Commands.Party.Alliance.AlreadyAllies=[[RED]]Deine Party ist bereits in einem B\u00FCndnis. Trenne mit[[DARK_AQUA]]/party alliance disband
|
||||
Commands.Party.Alliance.Help.0=[[RED]]Diese Party ist in keinem B\u00FCndnis. Lade einen Party Anf\u00FChrer an.
|
||||
Commands.Party.Alliance.Help.1=[[RED]] um zu verb\u00FCnden [[DARK_AQUA]]/party alliance invite <Spieler>[[RED]].
|
||||
Commands.Party.Alliance.None=Deine Party hat keine Verb\u00FCndeten.
|
||||
Commands.Party.Alliance.AlreadyAllies=Deine Party ist bereits in einem B\u00FCndnis. Trenne mit[[DARK_AQUA]]/party alliance disband
|
||||
Commands.Party.Alliance.Help.0=Diese Party ist in keinem B\u00FCndnis. Lade einen Party Anf\u00FChrer an.
|
||||
Commands.Party.Alliance.Help.1= um zu verb\u00FCnden [[DARK_AQUA]]/party alliance invite <Spieler>[[RED]].
|
||||
Commands.ptp.Enabled=Party Teleport [[GREEN]]aktiviert
|
||||
Commands.ptp.Disabled=Party Teleport [[RED]]deaktiviert
|
||||
Commands.ptp.NoRequests=[[RED]]Du hast aktuell keine teleportanfragen.
|
||||
Commands.ptp.NoWorldPermissions=[[RED]][mcMMO] Du hast nicht die Rechte um in die Welt {0} zu teleportieren.
|
||||
Commands.ptp.Request1=[[YELLOW]]{0} [[GREEN]]m\u00F6chte sich zu dir teleportieren.
|
||||
Commands.ptp.NoRequests=Du hast aktuell keine teleportanfragen.
|
||||
Commands.ptp.NoWorldPermissions=[mcMMO] Du hast nicht die Rechte um in die Welt {0} zu teleportieren.
|
||||
Commands.ptp.Request1={0} [[GREEN]]m\u00F6chte sich zu dir teleportieren.
|
||||
Commands.ptp.Request2=[[GREEN]]Um zu teleportieren tippe[[YELLOW]]/ptp accept[[GREEN]]. Die Anfrage l\u00E4uft in[[RED]]{0} [[GREEN]]Sekunden aus.
|
||||
Commands.ptp.AcceptAny.Enabled=Party Teleport Anfragenbest\u00E4tigung[[GREEN]]aktiviert
|
||||
Commands.ptp.AcceptAny.Disabled=Party Teleport Anfragenbest\u00E4tigung[[RED]]deaktiviert
|
||||
Commands.ptp.RequestExpired=[[RED]]Party Teleport Anfrage ist ausgelaufen.
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO[[BLUE]] Power Level [[YELLOW]]Bestenliste--
|
||||
Commands.ptp.RequestExpired=Party Teleport Anfrage ist ausgelaufen.
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO[[BLUE]] Power Level [[YELLOW]]Bestenliste--
|
||||
Commands.PowerLevel.Capped=[[DARK_RED]]GESAMT LEVEL: [[GREEN]]{0} [[DARK_RED]]MAX LEVEL: [[YELLOW]]{1}
|
||||
Commands.PowerLevel=[[DARK_RED]]GESAMT LEVEL: [[GREEN]]{0}
|
||||
Commands.Reset.All=[[GREEN]]Alles Skilllevel wurden erfolgreich zur\u00FCckgesetzt.
|
||||
Commands.Reset.Single=[[GREEN]]Dein {0} Skilllevel wurde erfolgreich zur\u00FCckgesetzt.
|
||||
Commands.Reset=[[GREEN]]- Setze ein Skilllevel auf 0
|
||||
Commands.Scoreboard.Clear=[[DARK_AQUA]]Die Stats \u00DCbersicht wurde ausgeblendet.
|
||||
Commands.Scoreboard.NoBoard=[[RED]]Die Stats Anzeige ist nicht sichtbar.
|
||||
Commands.Scoreboard.NoBoard=Die Stats Anzeige ist nicht sichtbar.
|
||||
Commands.Scoreboard.Keep=[[DARK_AQUA]]Die Stats \u00DCbersicht bleibt sichtbar bis du [[GREEN]]/mcscoreboard clear[[DARK_AQUA]] verwendest.
|
||||
Commands.Scoreboard.Timer=[[DARK_AQUA]]Die Stats \u00DCbersicht wird nach [[GOLD]]{0}[[DARK_AQUA]] Sekunden verschwinden.
|
||||
Commands.Scoreboard.Help.0=[[GOLD]] == [[GREEN]]Hilfe f\u00FCr[[RED]]/mcscoreboard[[GOLD]] ==
|
||||
@ -583,16 +583,16 @@ Commands.Scoreboard.Help.2=[[DARK_AQUA]]/mcscoreboard[[AQUA]] keep [[WHITE]] - b
|
||||
Commands.Scoreboard.Help.3=[[DARK_AQUA]]/mcscoreboard[[AQUA]] time [n] [[WHITE]] - blende die \u00DCbersicht nach [[LIGHT_PURPLE]]n[[WHITE]] Sekunden aus
|
||||
Commands.Scoreboard.Tip.Keep=[[GOLD]]Tipp: Benutze [[RED]]/mcscoreboard keep[[GOLD]] um deine Stats sichtbar zu lassen
|
||||
Commands.Scoreboard.Tip.Clear=[[GOLD]]Tipp: Benutze [[RED]]/mcscoreboard clear[[GOLD]] um die \u00DCbersicht auszublenden
|
||||
Commands.Skill.Invalid=[[RED]]Das ist kein g\u00FCltiger Skillname!
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--mcMMO [[BLUE]]{0}[[YELLOW]] Bestenliste--
|
||||
Commands.Skill.Invalid=Das ist kein g\u00FCltiger Skillname!
|
||||
Commands.Skill.Leaderboard=--mcMMO [[BLUE]]{0}[[YELLOW]] Bestenliste--
|
||||
Commands.SkillInfo=[[GREEN]]-Detaillierte Informationen zu einem Skill
|
||||
Commands.Stats.Self=DEINE STATS
|
||||
Commands.Stats=[[GREEN]]- Sieh deine McMMO Stats
|
||||
Commands.ToggleAbility=[[GREEN]]- Schalte auf F\u00E4higkeiten Aktivierung mit Rechtsklick
|
||||
Commands.Usage.0=[[RED]]Korrekte Verwendung ist /{0}
|
||||
Commands.Usage.1=[[RED]]Korrekte Verwendung ist /{0} {1}
|
||||
Commands.Usage.2=[[RED]]Korrekte Verwendung ist /{0} {1} {2}
|
||||
Commands.Usage.3=[[RED]]Korrekte Verwendung ist /{0} {1} {2} {3}
|
||||
Commands.Usage.0=Korrekte Verwendung ist /{0}
|
||||
Commands.Usage.1=Korrekte Verwendung ist /{0} {1}
|
||||
Commands.Usage.2=Korrekte Verwendung ist /{0} {1} {2}
|
||||
Commands.Usage.3=Korrekte Verwendung ist /{0} {1} {2} {3}
|
||||
Commands.Usage.FullClassName=classname
|
||||
Commands.Usage.Level=Level
|
||||
Commands.Usage.Message=Message
|
||||
@ -603,61 +603,61 @@ Commands.Usage.Player=Spieler
|
||||
Commands.Usage.Rate=Eate
|
||||
Commands.Usage.Skill=Skill
|
||||
Commands.Usage.XP=xp
|
||||
mcMMO.NoInvites=[[RED]]Du hast zurzeit keine Einladungen
|
||||
mcMMO.NoInvites=Du hast zurzeit keine Einladungen
|
||||
mcMMO.NoPermission=[[DARK_RED]]Unzureichende Berechtigungen.
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]Wenn du keinen Zugriff auf einen Skill hast wird er hier nicht angezeigt.
|
||||
|
||||
##party
|
||||
Party.Forbidden=[mcMMO] Parties not permitted on this world (See Permissions)
|
||||
Party.Help.0=[[RED]]Proper usage is [[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=[[RED]]To create a party, use [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.2=[[RED]]Consult [[DARK_AQUA]]{0} [[RED]]for more information
|
||||
Party.Help.3=[[RED]]Use [[DARK_AQUA]]{0} <player> [password] [[RED]]to join or [[DARK_AQUA]]{1} [[RED]]to quit
|
||||
Party.Help.4=[[RED]]To lock or unlock your party, use [[DARK_AQUA]]{0}
|
||||
Party.Help.5=[[RED]]To password protect your party, use [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=[[RED]]To kick a player from your party, use [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.7=[[RED]]To transfer ownership of your party, use [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=[[RED]]To disband your party, use [[DARK_AQUA]]{0}
|
||||
Party.Help.9=[[RED]]Use [[DARK_AQUA]]{0} [[RED]]to share items with party members
|
||||
Party.Help.10=[[RED]]Use [[DARK_AQUA]]{0} [[RED]]to enable XP sharing with party members
|
||||
Party.Help.0=Proper usage is [[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=To create a party, use [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.2=Consult [[DARK_AQUA]]{0} [[RED]]for more information
|
||||
Party.Help.3=Use [[DARK_AQUA]]{0} <player> [password] [[RED]]to join or [[DARK_AQUA]]{1} [[RED]]to quit
|
||||
Party.Help.4=To lock or unlock your party, use [[DARK_AQUA]]{0}
|
||||
Party.Help.5=To password protect your party, use [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=To kick a player from your party, use [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.7=To transfer ownership of your party, use [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=To disband your party, use [[DARK_AQUA]]{0}
|
||||
Party.Help.9=Use [[DARK_AQUA]]{0} [[RED]]to share items with party members
|
||||
Party.Help.10=Use [[DARK_AQUA]]{0} [[RED]]to enable XP sharing with party members
|
||||
Party.InformedOnJoin={0} [[GREEN]]has joined your party
|
||||
Party.InformedOnQuit={0} [[GREEN]]has left your party
|
||||
Party.InformedOnNameChange=[[GOLD]]{0} [[GREEN]]has set the party name to [[WHITE]]{1}
|
||||
Party.InvalidName=[[DARK_RED]]That is not a valid party name.
|
||||
Party.Invite.Self=[[RED]]You can't invite yourself!
|
||||
Party.IsLocked=[[RED]]This party is already locked!
|
||||
Party.IsntLocked=[[RED]]This party is not locked!
|
||||
Party.Locked=[[RED]]Party is locked, only party leader may invite.
|
||||
Party.Invite.Self=You can't invite yourself!
|
||||
Party.IsLocked=This party is already locked!
|
||||
Party.IsntLocked=This party is not locked!
|
||||
Party.Locked=Party is locked, only party leader may invite.
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} is not in your party
|
||||
Party.NotOwner=[[DARK_RED]]You are not the party leader.
|
||||
Party.Target.NotOwner=[[DARK_RED]]{0} is not the party leader.
|
||||
Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||
Party.Owner.Player =[[GREEN]]You are now the party leader.
|
||||
Party.Password.None=[[RED]]This party is password protected. Please provide a password to join.
|
||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||
Party.Password.None=This party is password protected. Please provide a password to join.
|
||||
Party.Password.Incorrect=Party password is incorrect.
|
||||
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||
Party.Player.Invalid=[[RED]]That is not a valid player.
|
||||
Party.Player.Invalid=That is not a valid player.
|
||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||
Party.Player.InSameParty={0} already is in your party!
|
||||
Party.PlayerNotInParty=[[DARK_RED]]{0} is not in a party
|
||||
Party.Specify=[[RED]]You must specify a party.
|
||||
Party.Teleport.Dead=[[RED]]You can't teleport to a dead player.
|
||||
Party.Teleport.Hurt=[[RED]]You have been hurt in the last {0} seconds and cannot teleport.
|
||||
Party.Specify=You must specify a party.
|
||||
Party.Teleport.Dead=You can't teleport to a dead player.
|
||||
Party.Teleport.Hurt=You have been hurt in the last {0} seconds and cannot teleport.
|
||||
Party.Teleport.Player=[[GREEN]]You have teleported to {0}.
|
||||
Party.Teleport.Self=[[RED]]You can't teleport to yourself!
|
||||
Party.Teleport.Self=You can't teleport to yourself!
|
||||
Party.Teleport.Target=[[GREEN]]{0} has teleported to you.
|
||||
Party.Teleport.Disabled=[[RED]]{0} doesn't allow party teleportation.
|
||||
Party.Rename.Same=[[RED]]That is already the name of your party!
|
||||
Party.Join.Self=[[RED]]You can't join yourself!
|
||||
Party.Teleport.Disabled={0} doesn't allow party teleportation.
|
||||
Party.Rename.Same=That is already the name of your party!
|
||||
Party.Join.Self=You can't join yourself!
|
||||
Party.Unlocked=[[GRAY]]Party is unlocked
|
||||
Party.Disband=[[GRAY]]The party has been disbanded
|
||||
Party.Alliance.Formed=[[GRAY]]Your party is now allies with [[GREEN]]{0}
|
||||
Party.Alliance.Disband=[[GRAY]]Your party is no longer allies with [[RED]]{0}
|
||||
Party.Status.Locked=[[DARK_RED]](INVITE-ONLY)
|
||||
Party.Status.Unlocked=[[DARK_GREEN]](OPEN)
|
||||
Party.LevelUp=[[YELLOW]]Party level increased by {0}. Total ({1})
|
||||
Party.LevelUp=Party level increased by {0}. Total ({1})
|
||||
Party.Feature.Chat=Party Chat
|
||||
Party.Feature.Teleport=Party Teleport
|
||||
Party.Feature.Alliance=Alliances
|
||||
@ -668,11 +668,11 @@ Party.Feature.Locked.Teleport=LOCKED UNTIL {0}+ (PARTY TELEPORT)
|
||||
Party.Feature.Locked.Alliance=LOCKED UNTIL {0}+ (ALLIANCES)
|
||||
Party.Feature.Locked.ItemShare=LOCKED UNTIL {0}+ (ITEM SHARING)
|
||||
Party.Feature.Locked.XpShare=LOCKED UNTIL {0}+ (XP SHARING)
|
||||
Party.Feature.Disabled.1=[[RED]]Party chat is not unlocked yet.
|
||||
Party.Feature.Disabled.2=[[RED]]Party teleport is not unlocked yet.
|
||||
Party.Feature.Disabled.3=[[RED]]Party alliances are not unlocked yet.
|
||||
Party.Feature.Disabled.4=[[RED]]Party item sharing is not unlocked yet.
|
||||
Party.Feature.Disabled.5=[[RED]]Party XP sharing is not unlocked yet.
|
||||
Party.Feature.Disabled.1=Party chat is not unlocked yet.
|
||||
Party.Feature.Disabled.2=Party teleport is not unlocked yet.
|
||||
Party.Feature.Disabled.3=Party alliances are not unlocked yet.
|
||||
Party.Feature.Disabled.4=Party item sharing is not unlocked yet.
|
||||
Party.Feature.Disabled.5=Party XP sharing is not unlocked yet.
|
||||
Party.ShareType.Xp=XP
|
||||
Party.ShareType.Item=ITEM
|
||||
Party.ShareMode.None=NONE
|
||||
@ -702,11 +702,11 @@ Commands.XPGain.Woodcutting=B\u00E4ume f\u00E4llen
|
||||
Commands.XPGain=[[DARK_GRAY]]XP ZUWACHS: [[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]Deine XP Anzeige ist nun auf {0} festgesetzt!
|
||||
Commands.xplock.unlocked=[[GOLD]]Deine XP Anzeige ist nun wieder [[GREEN]]FREIGEGEBEN[[GOLD]]!
|
||||
Commands.xprate.modified=[[RED]]The XP RATE wurde auf {0} gesetzt!
|
||||
Commands.xprate.over=[[RED]]Das mcMMO XP Rate Event ist vor\u00fcber!!
|
||||
Commands.xprate.proper.0=[[RED]]Korrekte Eingabe f\u00fcr XP Rate Wechsel: /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=[[RED]]Korrekte Eingabe f\u00fcr R\u00fccksetzung auf Standard XP Rate: /xprate reset
|
||||
Commands.xprate.proper.2=[[RED]]Bitte spezifiziere mit true/false ob dies ein XP-Event ist oder nicht.
|
||||
Commands.xprate.modified=The XP RATE wurde auf {0} gesetzt!
|
||||
Commands.xprate.over=Das mcMMO XP Rate Event ist vor\u00fcber!!
|
||||
Commands.xprate.proper.0=Korrekte Eingabe f\u00fcr XP Rate Wechsel: /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=Korrekte Eingabe f\u00fcr R\u00fccksetzung auf Standard XP Rate: /xprate reset
|
||||
Commands.xprate.proper.2=Bitte spezifiziere mit true/false ob dies ein XP-Event ist oder nicht.
|
||||
Commands.xprate.started.0=[[GOLD]]Das XP EVENT f\u00fcr mcMMO hat BEGONNEN!
|
||||
Commands.xprate.started.1=[[GOLD]]Die mcMMO XP RATE liegt nun bei {0}x!
|
||||
XPRate.Event=[[GOLD]]mcMMO hat gerade ein XP-RATE Event. Derzeitige XP Rate: {0}x!
|
||||
@ -716,7 +716,7 @@ XPRate.Event=[[GOLD]]mcMMO hat gerade ein XP-RATE Event. Derzeitige XP Rate: {0}
|
||||
Effects.Effects=EFFEKTE
|
||||
Effects.Child=[[DARK_GRAY]]LVL: [[GREEN]]{0}
|
||||
Effects.Level=[[DARK_GRAY]]LVL: [[GREEN]]{0} [[DARK_AQUA]]XP[[YELLOW]]([[GOLD]]{1}[[YELLOW]]/[[GOLD]]{2}[[YELLOW]])
|
||||
Effects.Parent = [[GOLD]]{0} -
|
||||
Effects.Parent= [[GOLD]]{0} -
|
||||
Effects.Template=[[DARK_AQUA]]{0}: [[GREEN]]{1}
|
||||
|
||||
#GUIDES
|
||||
@ -724,7 +724,7 @@ Guides.Available=[[GRAY]]Anleitung f\u00FCr {0} vorhanden - tippe /{1} ? [Seite]
|
||||
Guides.Header=[[GOLD]]-=[[GREEN]]{0} Anleitung[[GOLD]]=-
|
||||
Guides.Page.Invalid=Keine g\u00FCltige Seitenzahl!
|
||||
Guides.Page.OutOfRange=Es gibt nur insgesamt {0} Seiten.
|
||||
Guides.Usage=[[RED]] Der Befehl ist /{0} ? [Seite]
|
||||
Guides.Usage= Der Befehl ist /{0} ? [Seite]
|
||||
|
||||
##Acrobatics
|
||||
Guides.Acrobatics.Section.0=[[DARK_AQUA]]\u00DCber Akrobatik:\n[[YELLOW]]Akrobatik ist die Kunst sich grazi\u00F6s fortzubewegen.\n[[YELLOW]]Fall- und Kampfschaden werden reduziert\n\n[[DARK_AQUA]]XP GAIN:\n[[YELLOW]]XP sammelst du indem du in K\u00E4mpfen\n[[YELLOW]]ausweichst, oder St\u00FCrze aus gro\u00DFen H\u00F6hen \u00FCberlebst.
|
||||
@ -762,7 +762,7 @@ Guides.Excavation.Section.1=[[DARK_AQUA]]Kompatible Materialien:\n[[YELLOW]]Gras
|
||||
Guides.Excavation.Section.2=[[DARK_AQUA]]Wie funktioniert der Giga Bohrer?\n[[YELLOW]]Halte eine Schaufel in der Hand und mach Rechtsklick.\n[[YELLOW]]Von nun an hast du ca. 4 Sekunden um einen kompatiblem\n[[YELLOW]]Block abzubauen.\n[[YELLOW]]Daraufhin wird der Giga Bohrer aktiviert.
|
||||
Guides.Excavation.Section.3=[[DARK_AQUA]]Was ist der Giga Bohrer?\n[[YELLOW]]Giga Bohrer ist eine F\u00E4higkeit deren Dauer vom Graben Skill\n[[YELLOW]]abh\u00E4ngt.\n[[YELLOW]]Es verdreifacht die Wahrscheinlichkeit Sch\u00E4tze zu finden\n[[YELLOW]]und erm\u00F6glicht sofortiges Abbauen kompatibler Materialien.
|
||||
Guides.Excavation.Section.4=[[DARK_AQUA]]Wie funktioniert der Schatz J\u00E4ger?\n[[YELLOW]]Jeder m\u00F6gliche Schatz hat seine eigene Level Voraussetzung\n[[YELLOW]]um zu erscheinen, folglich ist es schwer[[YELLOW]]zu sagen inwiefern es \n[[YELLOW]]dir hilft ein höheres Level zu haben.\n[[YELLOW]]Je h\u00F6her das Level, desto mehr Sch\u00E4tze k\u00F6nnen gefunden\n[[YELLOW]]werden.
|
||||
Guides.Excavation.Section.5=[[YELLOW]]Beachte au\u00DFerdem, dass jedes kompatible Material seine\n[[YELLOW]]eigenen einzigartigen Sch\u00E4tze hat.\n[[YELLOW]]Anders ausgedr\u00FCckt: Sch\u00E4tze die du in Kies findest\n[[YELLOW]]gibt es nicht zwingend in Erde.
|
||||
Guides.Excavation.Section.5=Beachte au\u00DFerdem, dass jedes kompatible Material seine\n[[YELLOW]]eigenen einzigartigen Sch\u00E4tze hat.\n[[YELLOW]]Anders ausgedr\u00FCckt: Sch\u00E4tze die du in Kies findest\n[[YELLOW]]gibt es nicht zwingend in Erde.
|
||||
Guides.Excavation.Section.6=[[DARK_AQUA]]Bemerkung zu Graben:\n[[YELLOW]]Graben Drops sind vollkommen anpassbar\n[[YELLOW]]Ergebnisse unterscheiden sich deshalb von Server zu Server.
|
||||
|
||||
##Fishing
|
||||
@ -845,14 +845,14 @@ Guides.Woodcutting.Section.3=[[DARK_AQUA]]Wie funktionieren Doppel-Drops?\n[[YEL
|
||||
Inspect.Offline= [[RED]]Du hast nicht die Rechte um offline Spieler zu inspizieren!
|
||||
Inspect.OfflineStats=mcMMO Stats f\u00FCr Offline Spieler [[YELLOW]]{0}
|
||||
Inspect.Stats=[[GREEN]]mcMMO Stats f\u00FCr [[YELLOW]]{0}
|
||||
Inspect.TooFar=[[RED]]Du bist zu weit entfernt um den Spieler zu inspizieren!
|
||||
Inspect.TooFar=Du bist zu weit entfernt um den Spieler zu inspizieren!
|
||||
|
||||
#ITEMS
|
||||
Item.ChimaeraWing.Fail=**CHIMAERA FL\u00DCGEL GESCHEITERT!**
|
||||
Item.ChimaeraWing.Pass=**CHIMAERA FL\u00DCGEL*
|
||||
Item.ChimaeraWing.Name=Chimaera Fl\u00FCgel
|
||||
Item.ChimaeraWing.Lore=[[GRAY]]Teleportiert dich zu deinem Bett.
|
||||
Item.Generic.Wait=[[RED]]Du musst warten bis du das wieder verwenden kannst! [[YELLOW]]({0}s)
|
||||
Item.Generic.Wait=Du musst warten bis du das wieder verwenden kannst! [[YELLOW]]({0}s)
|
||||
Item.Injured.Wait=Du wurdest vor kurzem verletzt und musst warten bis du das verwenden kannst. [[YELLOW]]({0}s)
|
||||
Item.FluxPickaxe.Name=Flux Spitzhacke
|
||||
Item.FluxPickaxe.Lore.1=[[GRAY]]Hat eine Wahrscheinlichkeit Erze sofort zu schmelzen.
|
||||
@ -865,13 +865,13 @@ Teleport.Cancelled=[[DARK_RED]]Teleport abgebrochen!
|
||||
#SKILLS
|
||||
Skills.Child=[[GOLD]](VERWANDTER SKILL)
|
||||
Skills.Disarmed=[[DARK_RED]]Du wurdest entwaffnet!
|
||||
Skills.Header=[[RED]]-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.Header=-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.NeedMore=[[DARK_RED]]Du brauchst mehr[[GRAY]]{0}
|
||||
Skills.Parents = ELTERN
|
||||
Skills.Stats=[[YELLOW]]{0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats=[[YELLOW]]{0}[[GREEN]]{1}
|
||||
Skills.TooTired=[[RED]]Du bist zu m\u00FCde um diese F\u00E4higkeit zu verwenden. [[YELLOW]]({0}s)
|
||||
Skills.Cancelled=[[RED]]{0} abgebrochen!
|
||||
Skills.Stats={0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats={0}[[GREEN]]{1}
|
||||
Skills.TooTired=Du bist zu m\u00FCde um diese F\u00E4higkeit zu verwenden. [[YELLOW]]({0}s)
|
||||
Skills.Cancelled={0} abgebrochen!
|
||||
Skills.ConfirmOrCancel=[[GREEN]]Erneuter Rechtsklick zur Best\u00E4tigung [[GOLD]]{0}[[GREEN]]. Linksklick zum abbrechen.
|
||||
|
||||
#STATISTICS
|
||||
@ -911,17 +911,17 @@ MOTD.Donate=[[DARK_AQUA]]Spenden Info:
|
||||
MOTD.Hardcore.Enabled=[[GOLD]][mcMMO] [[DARK_AQUA]]Hardcore Modus aktiviert: [[DARK_RED]]{0}
|
||||
MOTD.Hardcore.DeathStatLoss.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Skillverlust bei Tod: [[DARK_RED]]{0}%
|
||||
MOTD.Hardcore.Vampirism.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Vampirismus Prozentsatz: [[DARK_RED]]{0}%
|
||||
MOTD.PerksPrefix=[[RED]][mcMMO Boni]
|
||||
MOTD.PerksPrefix=[mcMMO Boni]
|
||||
MOTD.Version=[[GOLD]][mcMMO] Verwende Version[[DARK_AQUA]]{0}
|
||||
MOTD.Website=[[GOLD]][mcMMO] [[GREEN]]{0}[[YELLOW]] - mcMMO Webseite
|
||||
|
||||
#SMELTING
|
||||
Smelting.Ability.FluxMining=[[RED]]Schmelztiegel: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=[[RED]]Brennstoff Effizienz Multiplikator: [[YELLOW]]{0}x
|
||||
Smelting.Ability.FluxMining=Schmelztiegel: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=Brennstoff Effizienz Multiplikator: [[YELLOW]]{0}x
|
||||
Smelting.Ability.Locked.0=GESPERRT bis {0}+ Skill (XP BOOST)
|
||||
Smelting.Ability.Locked.1=GESPERRT bis {0}+ Skill (SCHMELZTIEGEL)
|
||||
Smelting.Ability.SecondSmelt=[[RED]]Extra Schmelzung: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=[[RED]]Vanilla XP Multiplikator: [[YELLOW]]{0}x
|
||||
Smelting.Ability.SecondSmelt=Extra Schmelzung: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=Vanilla XP Multiplikator: [[YELLOW]]{0}x
|
||||
Smelting.SubSkill.FuelEfficiency.Name=Brennstoff Effizienz
|
||||
Smelting.SubSkill.FuelEfficiency.Description=Erh\u00F6he die Brenndauer des Brennstoffes in \u00D6fen
|
||||
Smelting.SubSkill.SecondSmelt.Name=Extra Schmelzung
|
||||
@ -970,20 +970,20 @@ UpdateChecker.Outdated=Du verwendest eine veraltete mcMMO Version!
|
||||
UpdateChecker.NewAvailable=Eine neue Version ist auf BukkitDev erh\u00E4ltlich.
|
||||
|
||||
#SCOREBOARD HEADERS
|
||||
Scoreboard.Header.PlayerStats=[[YELLOW]]mcMMO Stats
|
||||
Scoreboard.Header.PlayerCooldowns=[[YELLOW]]mcMMO Abklingzeiten
|
||||
Scoreboard.Header.PlayerRank=[[YELLOW]]mcMMO Bestenlisten
|
||||
Scoreboard.Header.PlayerInspect=[[YELLOW]]mcMMO Stats: {0}
|
||||
Scoreboard.Header.PowerLevel=[[RED]]Gesamt Level
|
||||
Scoreboard.Header.PlayerStats=mcMMO Stats
|
||||
Scoreboard.Header.PlayerCooldowns=mcMMO Abklingzeiten
|
||||
Scoreboard.Header.PlayerRank=mcMMO Bestenlisten
|
||||
Scoreboard.Header.PlayerInspect=mcMMO Stats: {0}
|
||||
Scoreboard.Header.PowerLevel=Gesamt Level
|
||||
Scoreboard.Misc.PowerLevel=[[GOLD]]Gesamt Level
|
||||
Scoreboard.Misc.Level=[[DARK_AQUA]]Level
|
||||
Scoreboard.Misc.CurrentXP=[[GREEN]]Aktuelle XP
|
||||
Scoreboard.Misc.RemainingXP=[[YELLOW]]Verbliebene XP
|
||||
Scoreboard.Misc.RemainingXP=Verbliebene XP
|
||||
Scoreboard.Misc.Cooldown=[[LIGHT_PURPLE]]Abklingzeit
|
||||
Scoreboard.Misc.Overall=[[GOLD]]Insgesamt
|
||||
Scoreboard.Misc.Ability=F\u00E4higkeit
|
||||
|
||||
#DATABASE RECOVERY
|
||||
Profile.Loading.Success=[[GREEN]]Your mcMMO profile has been loaded.
|
||||
Profile.Loading.Failure=[[RED]]mcMMO still cannot load your data. You may want to [[AQUA]]contact the server owner.\n[[YELLOW]]You can still play on the server, but you will have [[BOLD]]no mcMMO levels[[YELLOW]] and any XP you get [[BOLD]]will not be saved[[YELLOW]].
|
||||
Profile.Loading.Failure=mcMMO still cannot load your data. You may want to [[AQUA]]contact the server owner.\n[[YELLOW]]You can still play on the server, but you will have [[BOLD]]no mcMMO levels[[YELLOW]] and any XP you get [[BOLD]]will not be saved[[YELLOW]].
|
||||
Profile.Loading.AdminFailureNotice=[[DARK_RED]][A][[RED]] mcMMO was unable to load the player data for [[YELLOW]]{0}[[RED]]. [[LIGHT_PURPLE]]Please inspect your database setup.
|
||||
|
@ -57,15 +57,37 @@ JSON.Acrobatics.SubSkill.Roll.Details.Tips=If you hold sneak while falling you c
|
||||
#DO NOT USE COLOR CODES IN THE JSON KEYS
|
||||
#COLORS ARE DEFINED IN advanced.yml IF YOU WISH TO CHANGE THEM
|
||||
|
||||
# BEGIN STYLING
|
||||
Ability.Generic.Refresh=[[GREEN]]**ABILITIES REFRESHED!**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
# Skill Command Styling
|
||||
Effects.Effects=EFFECTS
|
||||
Effects.SubSkills.Overhaul=Sub-Skills
|
||||
Effects.Child=[[DARK_GRAY]]LVL: [[GREEN]]{0}
|
||||
Effects.Child.Overhaul=[[DARK_GRAY]]LVL: [[GREEN]]{0}
|
||||
# Effects.Level=[[DARK_GRAY]]LVL: [[GREEN]]{0} [[DARK_AQUA]]XP[[YELLOW]]([[GOLD]]{1}[[YELLOW]]/[[GOLD]]{2}[[YELLOW]])
|
||||
Effects.Level.Overhaul=[[GOLD]]LVL: [[YELLOW]]{0} [[DARK_AQUA]]XP[[YELLOW]]([[GOLD]]{1}[[YELLOW]]/[[GOLD]]{2}[[YELLOW]])
|
||||
Effects.Parent=[[GOLD]]{0} -
|
||||
Effects.Template=[[DARK_AQUA]]{0}: [[GREEN]]{1}
|
||||
Commands.Stats.Self.Overhaul=Stats
|
||||
Commands.XPGain.Overhaul=[[GOLD]]XP GAIN: [[DARK_AQUA]]{0}
|
||||
MOTD.Version.Overhaul=[[GOLD]][mcMMO] [[DARK_AQUA]]Overhaul Era[[GOLD]] - [[DARK_AQUA]]{0}
|
||||
Skills.Overhaul.Header=[[DARK_AQUA]][]=====[][[GOLD]] {0} [[DARK_AQUA]][]=====[]
|
||||
Overhaul.mcMMO.Header=[[DARK_AQUA]][]=====[][[GOLD]] mcMMO - Overhaul Era [[DARK_AQUA]][]=====[]
|
||||
Overhaul.ASCII.Art.HeaderOne=[[DARK_AQUA]]|||||||||||||||||||||||||||||||||||||| [[GOLD]] {0} [[DARK_AQUA]]||||||||||||||||||||||||||||||||||||||
|
||||
|
||||
# END STYLING
|
||||
|
||||
#ACROBATICS
|
||||
Acrobatics.Ability.Proc=[[GREEN]]**Graceful Landing**
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**Dodged**
|
||||
Acrobatics.DodgeChance=[[RED]]Dodge Chance: [[YELLOW]]{0}
|
||||
Acrobatics.DodgeChance=Dodge Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Stats=[[GOLD]]Roll Chance [[YELLOW]]{0}%[[GOLD]] Graceful Roll Chance[[YELLOW]] {1}%
|
||||
Acrobatics.SubSkill.Roll.Name=Roll
|
||||
Acrobatics.SubSkill.Roll.Description=Land strategically to avoid damage.
|
||||
Acrobatics.SubSkill.Roll.Chance=[[RED]]Roll Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=[[RED]]Graceful Roll Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Chance=Roll Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=Graceful Roll Chance: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Mechanics=[[GRAY]]Rolling is an active Sub-Skill with a passive component.\nWhenever you take fall damage you have a chance to completely negate the damage based on your skill level, at level 50 you have a [[YELLOW]]{0}%[[GRAY]] chance to prevent damage, and [[YELLOW]]{1}%[[GRAY]] if you activate Graceful Roll.\nThe chance for success is scaled against your skill level in a linear curve until level [[YELLOW]]{2}[[GRAY]] where it maxes out, every level in Acrobatics gives you a [[YELLOW]]{3}%[[GRAY]] chance to succeed.\nBy holding the sneak button you can double your odds to avoid fall damage and avoid up to twice the fall damage! Holding sneak will transform a normal roll into a Graceful Roll.\nRolling will only prevent up to [[RED]]{4}[[GRAY]] damage. Graceful Rolls will prevent up to [[GREEN]]{5}[[GRAY]] damage.
|
||||
Acrobatics.SubSkill.GracefulRoll.Name=Graceful Roll
|
||||
Acrobatics.SubSkill.GracefulRoll.Description=Twice as effective as a normal Roll
|
||||
@ -74,7 +96,7 @@ Acrobatics.SubSkill.Dodge.Description=Reduce attack damage by half
|
||||
Acrobatics.Listener=Acrobatics:
|
||||
Acrobatics.Roll.Text=**Rolled**
|
||||
Acrobatics.SkillName=ACROBATICS
|
||||
Acrobatics.Skillup=[[YELLOW]]Acrobatics skill increased by {0}. Total ({1})
|
||||
Acrobatics.Skillup=Acrobatics skill increased by {0}. Total ({1})
|
||||
#ALCHEMY
|
||||
Alchemy.SubSkill.Catalysis.Name=Catalysis
|
||||
Alchemy.SubSkill.Catalysis.Description=Increases potion brewing speed
|
||||
@ -82,15 +104,15 @@ Alchemy.SubSkill.Concoctions.Name=Concoctions
|
||||
Alchemy.SubSkill.Concoctions.Description=Brew potions with more ingredients
|
||||
Alchemy.Listener=Alchemy:
|
||||
Alchemy.Ability.Locked.0=LOCKED UNTIL {0}+ SKILL (CATALYSIS)
|
||||
Alchemy.Catalysis.Speed=[[RED]]Brewing Speed: [[YELLOW]]{0}
|
||||
Alchemy.Concoctions.Rank=[[RED]]Concoctions Rank: [[YELLOW]]{0}/{1}
|
||||
Alchemy.Concoctions.Ingredients=[[RED]]Ingredients [[[YELLOW]]{0}[[RED]]]: [[YELLOW]]{1}
|
||||
Alchemy.Catalysis.Speed=Brewing Speed: [[YELLOW]]{0}
|
||||
Alchemy.Concoctions.Rank=Concoctions Rank: [[YELLOW]]{0}/{1}
|
||||
Alchemy.Concoctions.Ingredients=Ingredients [[[YELLOW]]{0}[[RED]]]: [[YELLOW]]{1}
|
||||
Alchemy.SkillName=ALCHEMY
|
||||
Alchemy.Skillup=[[YELLOW]]Alchemy skill increased by {0}. Total ({1})
|
||||
Alchemy.Skillup=Alchemy skill increased by {0}. Total ({1})
|
||||
#ARCHERY
|
||||
Archery.Combat.DazeChance=[[RED]]Chance to Daze: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=[[RED]]Chance to Retrieve Arrows: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=[[RED]]Skill Shot Bonus Damage: [[YELLOW]]{0}
|
||||
Archery.Combat.DazeChance=Chance to Daze: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=Chance to Retrieve Arrows: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=Skill Shot Bonus Damage: [[YELLOW]]{0}
|
||||
Archery.SubSkill.SkillShot.Name=Skill Shot
|
||||
Archery.SubSkill.SkillShot.Description=Increases damage done with bows
|
||||
Archery.SubSkill.Daze.Name=Daze
|
||||
@ -99,7 +121,7 @@ Archery.SubSkill.ArrowRetrieval.Name=Arrow Retrieval
|
||||
Archery.SubSkill.ArrowRetrieval.Description=Chance to retrieve arrows from corpses
|
||||
Archery.Listener=Archery:
|
||||
Archery.SkillName=ARCHERY
|
||||
Archery.Skillup=[[YELLOW]]Archery skill increased by {0}. Total ({1})
|
||||
Archery.Skillup=Archery skill increased by {0}. Total ({1})
|
||||
#AXES
|
||||
Axes.Ability.Bonus.0=Axe Mastery
|
||||
Axes.Ability.Bonus.1=Bonus {0} damage
|
||||
@ -110,12 +132,12 @@ Axes.Ability.Bonus.5=Deal {0} Bonus DMG to unarmored foes
|
||||
Axes.Ability.Lower=[[GRAY]]**YOU LOWER YOUR AXE**
|
||||
Axes.Ability.Ready=[[GREEN]]**YOU READY YOUR AXE**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]You were CRITICALLY hit!
|
||||
Axes.Combat.CritChance=[[RED]]Chance to critically strike: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=[[RED]]CRITICAL HIT!
|
||||
Axes.Combat.CritChance=Chance to critically strike: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=CRITICAL HIT!
|
||||
Axes.Combat.GI.Proc=[[GREEN]]**STRUCK WITH GREAT FORCE**
|
||||
Axes.Combat.GI.Struck=[[RED]]**HIT BY GREATER IMPACT**
|
||||
Axes.Combat.GI.Struck=**HIT BY GREATER IMPACT**
|
||||
Axes.Combat.SS.Struck=[[DARK_RED]]Struck by SKULL SPLITTER!
|
||||
Axes.Combat.SS.Length=[[RED]]Skull Splitter Length: [[YELLOW]]{0}s
|
||||
Axes.Combat.SS.Length=Skull Splitter Length: [[YELLOW]]{0}s
|
||||
Axes.SubSkill.SkullSplitter.Name=Skull Splitter
|
||||
Axes.SubSkill.SkullSplitter.Description=Deal AoE Damage
|
||||
Axes.SubSkill.CriticalStrikes.Name=Critical Strikes
|
||||
@ -128,12 +150,12 @@ Axes.SubSkill.GreaterImpact.Name=Greater Impact
|
||||
Axes.SubSkill.GreaterImpact.Description=Deal bonus damage to unarmored foes
|
||||
Axes.Listener=Axes:
|
||||
Axes.SkillName=AXES
|
||||
Axes.Skills.SS.Off=[[RED]]**Skull Splitter has worn off**
|
||||
Axes.Skills.SS.Off=**Skull Splitter has worn off**
|
||||
Axes.Skills.SS.On=[[GREEN]]**Skull Splitter ACTIVATED**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]Your [[YELLOW]]Skull Splitter [[GREEN]]ability is refreshed!
|
||||
Axes.Skills.SS.Other.Off=[[RED]]Skull Splitter[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.Off=Skull Splitter[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] has used [[RED]]Skull Splitter!
|
||||
Axes.Skillup=[[YELLOW]]Axes skill increased by {0}. Total ({1})
|
||||
Axes.Skillup=Axes skill increased by {0}. Total ({1})
|
||||
#EXCAVATION
|
||||
Excavation.Ability.Lower=[[GRAY]]**YOU LOWER YOUR SHOVEL**
|
||||
Excavation.Ability.Ready=[[GREEN]]**YOU READY YOUR SHOVEL**
|
||||
@ -141,27 +163,27 @@ Excavation.SubSkill.GigaDrillBreaker.Name=Giga Drill Breaker
|
||||
Excavation.SubSkill.GigaDrillBreaker.Description=3x Drop Rate, 3x EXP, +Speed
|
||||
Excavation.SubSkill.TreasureHunter.Name=Treasure Hunter
|
||||
Excavation.SubSkill.TreasureHunter.Description=Ability to dig for treasure
|
||||
Excavation.Effect.Length=[[RED]]Giga Drill Breaker Length: [[YELLOW]]{0}s
|
||||
Excavation.Effect.Length=Giga Drill Breaker Length: [[YELLOW]]{0}s
|
||||
Excavation.Listener=Excavation:
|
||||
Excavation.SkillName=EXCAVATION
|
||||
Excavation.Skills.GigaDrillBreaker.Off=[[RED]]**Giga Drill Breaker has worn off**
|
||||
Excavation.Skills.GigaDrillBreaker.Off=**Giga Drill Breaker has worn off**
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**GIGA DRILL BREAKER ACTIVATED**
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]Your [[YELLOW]]Giga Drill Breaker [[GREEN]]ability is refreshed!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=[[RED]]Giga Drill Breaker[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=Giga Drill Breaker[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] has used [[RED]]Giga Drill Breaker!
|
||||
Excavation.Skillup=[[YELLOW]]Excavation skill increased by {0}. Total ({1})
|
||||
Excavation.Skillup=Excavation skill increased by {0}. Total ({1})
|
||||
#FISHING
|
||||
Fishing.Ability.Chance=[[RED]]Bite Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=[[RED]]Magic Hunter: [[GRAY]] **Improves With Treasure Hunter Rank**
|
||||
Fishing.Ability.Chance=Bite Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=Magic Hunter: [[GRAY]] **Improves With Treasure Hunter Rank**
|
||||
Fishing.Ability.Locked.0=LOCKED UNTIL {0}+ SKILL (SHAKE)
|
||||
Fishing.Ability.Locked.1=LOCKED UNTIL {0}+ SKILL (ICE FISHING)
|
||||
Fishing.Ability.Locked.2=LOCKED UNTIL {0}+ SKILL (MASTER ANGLER)
|
||||
Fishing.Ability.Rank=[[RED]]Treasure Hunter Rank: [[YELLOW]]{0}/{1}
|
||||
Fishing.Ability.TH.DropRate=[[RED]] Drop Rate: [[DARK_RED]]Trap: [[YELLOW]]{0} [[GRAY]]Common: [[YELLOW]]{1} [[GREEN]]Uncommon: [[YELLOW]]{2}\n[[BLUE]]Rare: [[YELLOW]]{3} [[LIGHT_PURPLE]]Epic: [[YELLOW]]{4} [[GOLD]]Legendary: [[YELLOW]]{5} [[AQUA]]Record: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=[[RED]]Magic Hunter Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=[[RED]]Shake Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=[[RED]]Ice Fishing: Go fishing in ice
|
||||
Fishing.Ability.FD=[[RED]]Fisherman''s Diet: [[YELLOW]]Rank {0}
|
||||
Fishing.Ability.Rank=Treasure Hunter Rank: [[YELLOW]]{0}/{1}
|
||||
Fishing.Ability.TH.DropRate= Drop Rate: [[DARK_RED]]Trap: [[YELLOW]]{0} [[GRAY]]Common: [[YELLOW]]{1} [[GREEN]]Uncommon: [[YELLOW]]{2}\n[[BLUE]]Rare: [[YELLOW]]{3} [[LIGHT_PURPLE]]Epic: [[YELLOW]]{4} [[GOLD]]Legendary: [[YELLOW]]{5} [[AQUA]]Record: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=Magic Hunter Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=Shake Chance: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=Ice Fishing: Go fishing in ice
|
||||
Fishing.Ability.FD=Fisherman''s Diet: [[YELLOW]]Rank {0}
|
||||
Fishing.SubSkill.TreasureHunter.Name=Treasure Hunter
|
||||
Fishing.SubSkill.TreasureHunter.Description=Fish up misc. objects
|
||||
Fishing.SubSkill.MagicHunter.Name=Magic Hunter
|
||||
@ -180,21 +202,21 @@ Fishing.Ability.TH.MagicFound=[[GRAY]]You feel a touch of magic with this catch.
|
||||
Fishing.Ability.TH.Boom=[[GRAY]]BOOM TIME!!!
|
||||
Fishing.Ability.TH.Poison=[[GRAY]]Something doesn't smell quite right...
|
||||
Fishing.SkillName=FISHING
|
||||
Fishing.Skillup=[[YELLOW]]Fishing skill increased by {0}. Total ({1})
|
||||
Fishing.Skillup=Fishing skill increased by {0}. Total ({1})
|
||||
#HERBALISM
|
||||
Herbalism.Ability.DoubleDropChance=[[RED]]Double Drop Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=[[RED]]Farmer''s Diet: [[YELLOW]]Rank {0}
|
||||
Herbalism.Ability.GTe.Length=[[RED]]Green Terra Length: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=[[RED]]You need more seeds to spread Green Terra.
|
||||
Herbalism.Ability.GTh.Chance=[[RED]]Green Thumb Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=[[RED]]**GREEN THUMB FAIL**
|
||||
Herbalism.Ability.GTh.Stage=[[RED]]Green Thumb Stage: [[YELLOW]] Crops grow in stage {0}
|
||||
Herbalism.Ability.DoubleDropChance=Double Drop Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=Farmer''s Diet: [[YELLOW]]Rank {0}
|
||||
Herbalism.Ability.GTe.Length=Green Terra Length: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=You need more seeds to spread Green Terra.
|
||||
Herbalism.Ability.GTh.Chance=Green Thumb Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=**GREEN THUMB FAIL**
|
||||
Herbalism.Ability.GTh.Stage=Green Thumb Stage: [[YELLOW]] Crops grow in stage {0}
|
||||
Herbalism.Ability.GTh=[[GREEN]]**GREEN THUMB**
|
||||
Herbalism.Ability.HylianLuck=[[RED]]Hylian Luck Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.HylianLuck=Hylian Luck Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.Lower=[[GRAY]]**YOU LOWER YOUR HOE**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**YOU READY YOUR HOE**
|
||||
Herbalism.Ability.ShroomThumb.Chance=[[RED]]Shroom Thumb Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=[[RED]]**SHROOM THUMB FAIL**
|
||||
Herbalism.Ability.ShroomThumb.Chance=Shroom Thumb Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=**SHROOM THUMB FAIL**
|
||||
Herbalism.SubSkill.GreenTerra.Name=Green Terra
|
||||
Herbalism.SubSkill.GreenTerra.Description=Spread the Terra, 3x Drops
|
||||
Herbalism.SubSkill.GreenThumb.Name=Green Thumb
|
||||
@ -212,19 +234,19 @@ Herbalism.SubSkill.ShroomThumb.Description=Spread mycelium to dirt & grass
|
||||
Herbalism.HylianLuck=[[GREEN]]The luck of Hyrule is with you today!
|
||||
Herbalism.Listener=Herbalism:
|
||||
Herbalism.SkillName=HERBALISM
|
||||
Herbalism.Skills.GTe.Off=[[RED]]**Green Terra has worn off**
|
||||
Herbalism.Skills.GTe.Off=**Green Terra has worn off**
|
||||
Herbalism.Skills.GTe.On=[[GREEN]]**GREEN TERRA ACTIVATED**
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]Your [[YELLOW]]Green Terra [[GREEN]]ability is refreshed!
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]]Green Terra[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.Off=Green Terra[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]{0}[[DARK_GREEN]] has used [[RED]]Green Terra!
|
||||
Herbalism.Skillup=[[YELLOW]]Herbalism skill increased by {0}. Total ({1})
|
||||
Herbalism.Skillup=Herbalism skill increased by {0}. Total ({1})
|
||||
#MINING
|
||||
Mining.Ability.Length=[[RED]]Super Breaker Length: [[YELLOW]]{0}s
|
||||
Mining.Ability.Length=Super Breaker Length: [[YELLOW]]{0}s
|
||||
Mining.Ability.Locked.0=LOCKED UNTIL {0}+ SKILL (BLAST MINING)
|
||||
Mining.Ability.Locked.1=LOCKED UNTIL {0}+ SKILL (BIGGER BOMBS)
|
||||
Mining.Ability.Locked.2=LOCKED UNTIL {0}+ SKILL (DEMOLITIONS EXPERTISE)
|
||||
Mining.Ability.Lower=[[GRAY]]**YOU LOWER YOUR PICKAXE**
|
||||
Mining.Ability.Ready=[[GREEN]]**YOU READY YOUR PICKAXE**
|
||||
Mining.Ability.Lower=[[GRAY]]You lower your Pickaxe.
|
||||
Mining.Ability.Ready=[[DARK_AQUA]]You [[GOLD]]ready[[DARK_AQUA]] your pickaxe.
|
||||
Mining.SubSkill.SuperBreaker.Name=Super Breaker
|
||||
Mining.SubSkill.SuperBreaker.Description=Speed+, Triple Drop Chance
|
||||
Mining.SubSkill.DoubleDrops.Name=Double Drops
|
||||
@ -235,22 +257,22 @@ Mining.SubSkill.BiggerBombs.Name=Bigger Bombs
|
||||
Mining.SubSkill.BiggerBombs.Description=Increases TNT explosion radius
|
||||
Mining.SubSkill.DemolitionsExpertise.Name=Demolitions Expertise
|
||||
Mining.SubSkill.DemolitionsExpertise.Description=Decreases damage from TNT explosions
|
||||
Mining.Effect.Decrease=[[RED]]Demolitions Expert Damage Decrease: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=[[RED]]Double Drop Chance: [[YELLOW]]{0}
|
||||
Mining.Effect.Decrease=Demolitions Expert Damage Decrease: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=Double Drop Chance: [[YELLOW]]{0}
|
||||
Mining.Listener=Mining:
|
||||
Mining.SkillName=MINING
|
||||
Mining.Skills.SuperBreaker.Off=[[RED]]**Super Breaker has worn off**
|
||||
Mining.Skills.SuperBreaker.Off=**Super Breaker has worn off**
|
||||
Mining.Skills.SuperBreaker.On=[[GREEN]]**SUPER BREAKER ACTIVATED**
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[RED]]Super Breaker[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.Off=Super Breaker[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] has used [[RED]]Super Breaker!
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]Your [[YELLOW]]Super Breaker [[GREEN]]ability is refreshed!
|
||||
Mining.Skillup=[[YELLOW]]Mining skill increased by {0}. Total ({1})
|
||||
Mining.Skillup=Mining skill increased by {0}. Total ({1})
|
||||
#Blast Mining
|
||||
Mining.Blast.Boom=[[GRAY]]**BOOM**
|
||||
Mining.Blast.Cooldown=
|
||||
Mining.Blast.Effect=+{0} ore yield, -{1} debris yield, {2}x drops
|
||||
Mining.Blast.Radius.Increase=[[RED]]Blast Radius Increase: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=[[RED]]Blast Mining: [[YELLOW]] Rank {0}/{1} [[GRAY]]({2})
|
||||
Mining.Blast.Radius.Increase=Blast Radius Increase: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=Blast Mining: [[YELLOW]] Rank {0}/{1} [[GRAY]]({2})
|
||||
Mining.Blast.Other.On=[[GREEN]]{0}[[DARK_GREEN]] has used [[RED]]Blast Mining!
|
||||
Mining.Blast.Refresh=[[GREEN]]Your [[YELLOW]]Blast Mining [[GREEN]]ability is refreshed!
|
||||
#REPAIR
|
||||
@ -278,22 +300,22 @@ Repair.Skills.AdeptDiamond=[[DARK_RED]]You're not skilled enough to repair Diamo
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]You're not skilled enough to repair Gold.
|
||||
Repair.Skills.AdeptIron=[[DARK_RED]]You're not skilled enough to repair Iron.
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]You're not skilled enough to repair Stone.
|
||||
Repair.Skills.Adept=[[RED]]You must be level [[YELLOW]]{0}[[RED]] to repair [[YELLOW]]{1}
|
||||
Repair.Skills.Adept=You must be level [[YELLOW]]{0}[[RED]] to repair [[YELLOW]]{1}
|
||||
Repair.Skills.FeltEasy=[[GRAY]]That felt easy.
|
||||
Repair.Skills.FullDurability=[[GRAY]]That is at full durability.
|
||||
Repair.Skills.Mastery=[[RED]]Repair Mastery: [[YELLOW]]Extra {0} durability restored
|
||||
Repair.Skills.Mastery=Repair Mastery: [[YELLOW]]Extra {0} durability restored
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]You can't repair stacked items.
|
||||
Repair.Skills.Super.Chance=[[RED]]Super Repair Chance: [[YELLOW]]{0}
|
||||
Repair.Skillup=[[YELLOW]]Repair skill increased by {0}. Total ({1})
|
||||
Repair.Skills.Super.Chance=Super Repair Chance: [[YELLOW]]{0}
|
||||
Repair.Skillup=Repair skill increased by {0}. Total ({1})
|
||||
Repair.Pretty.Name=Repair
|
||||
#Arcane Forging
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]AF Downgrade Chance: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]AF Success Rate: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Downgrade=[[RED]]Arcane power has decreased for this item.
|
||||
Repair.Arcane.Fail=[[RED]]Arcane power has permanently left the item.
|
||||
Repair.Arcane.Lost=[[RED]]You were not skilled enough to keep any enchantments.
|
||||
Repair.Arcane.Downgrade=Arcane power has decreased for this item.
|
||||
Repair.Arcane.Fail=Arcane power has permanently left the item.
|
||||
Repair.Arcane.Lost=You were not skilled enough to keep any enchantments.
|
||||
Repair.Arcane.Perfect=[[GREEN]]You have sustained the arcane energies in this item.
|
||||
Repair.Arcane.Rank=[[RED]]Arcane Forging: [[YELLOW]]Rank {0}/{1}
|
||||
Repair.Arcane.Rank=Arcane Forging: [[YELLOW]]Rank {0}/{1}
|
||||
#SALVAGE
|
||||
Salvage.Pretty.Name=Salvage
|
||||
Salvage.SubSkill.UnderstandingTheArt.Name=Understanding The Art
|
||||
@ -305,15 +327,15 @@ Salvage.SubSkill.ArcaneSalvage.Description=Extract enchantments from items
|
||||
Salvage.Ability.Locked.0=LOCKED UNTIL {0}+ SKILL (ADVANCED SALVAGE)
|
||||
Salvage.Ability.Bonus.0=Advanced Salvage
|
||||
Salvage.Ability.Bonus.1=Max yield {0} item destroyed
|
||||
Salvage.Arcane.Rank=[[RED]]Arcane Salvaging: [[YELLOW]]Rank {0}/{1}
|
||||
Salvage.Arcane.Rank=Arcane Salvaging: [[YELLOW]]Rank {0}/{1}
|
||||
Salvage.Arcane.ExtractFull=[[GRAY]]AS Full-Enchant Chance
|
||||
Salvage.Arcane.ExtractPartial=[[GRAY]]AS Partial-Enchant Chance
|
||||
Salvage.Skills.Success=[[GREEN]]Item salvaged!
|
||||
Salvage.Skills.Adept.Damaged=[[DARK_RED]]You aren't skilled enough to salvage damaged items.
|
||||
Salvage.Skills.Adept.Level=[[RED]]You must be level [[YELLOW]]{0}[[RED]] to salvage [[YELLOW]]{1}
|
||||
Salvage.Skills.Adept.Level=You must be level [[YELLOW]]{0}[[RED]] to salvage [[YELLOW]]{1}
|
||||
Salvage.Skills.TooDamaged=[[DARK_RED]]This item is too damaged to be salvaged.
|
||||
Salvage.Skills.ArcaneFailed=[[RED]]You were unable to extract the knowledge contained within this item.
|
||||
Salvage.Skills.ArcanePartial=[[YELLOW]]You were only able to extract some of the knowledge contained within this item.
|
||||
Salvage.Skills.ArcaneFailed=You were unable to extract the knowledge contained within this item.
|
||||
Salvage.Skills.ArcanePartial=You were only able to extract some of the knowledge contained within this item.
|
||||
Salvage.Skills.ArcaneSuccess=[[GREEN]]You able to extract all of the knowledge contained within this item!
|
||||
Salvage.Listener.Anvil=[[DARK_RED]]You have placed a Salvage anvil, use this to Salvage tools and armor.
|
||||
Salvage.Listener=Salvage:
|
||||
@ -323,13 +345,13 @@ Anvil.Unbreakable=This item is unbreakable!
|
||||
#SWORDS
|
||||
Swords.Ability.Lower=[[GRAY]]**YOU LOWER YOUR SWORD**
|
||||
Swords.Ability.Ready=[[GREEN]]**YOU READY YOUR SWORD**
|
||||
Swords.Combat.Bleed.Chance=[[RED]]Bleed Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=[[RED]]Bleed Length: [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Chance=Bleed Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=Bleed Length: [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Note=[[GRAY]]NOTE: [[YELLOW]]1 Tick happens every 2 seconds
|
||||
Swords.Combat.Bleeding.Started=[[DARK_RED]] You're bleeding!
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]!
|
||||
Swords.Combat.Bleeding=[[GREEN]]**ENEMY BLEEDING**
|
||||
Swords.Combat.Counter.Chance=[[RED]]Counter Attack Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Chance=Counter Attack Chance: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Hit=[[DARK_RED]]Hit with a counter-attack!
|
||||
Swords.Combat.Countered=[[GREEN]]**COUNTER-ATTACKED**
|
||||
Swords.Combat.SS.Struck=[[DARK_RED]]Struck by SERRATED STRIKES!
|
||||
@ -343,13 +365,13 @@ Swords.SubSkill.Bleed.Name=Bleed
|
||||
Swords.SubSkill.Bleed.Description=Apply a bleed DoT
|
||||
Swords.Listener=Swords:
|
||||
Swords.SkillName=SWORDS
|
||||
Swords.Skills.SS.Off=[[RED]]**Serrated Strikes has worn off**
|
||||
Swords.Skills.SS.Off=**Serrated Strikes has worn off**
|
||||
Swords.Skills.SS.On=[[GREEN]]**SERRATED STRIKES ACTIVATED**
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]Your [[YELLOW]]Serrated Strikes [[GREEN]]ability is refreshed!
|
||||
Swords.Skills.SS.Other.Off=[[RED]]Serrated Strikes[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.Off=Serrated Strikes[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] has used [[RED]]Serrated Strikes!
|
||||
Swords.Skillup=[[YELLOW]]Swords skill increased by {0}. Total ({1})
|
||||
Swords.SS.Length=[[RED]]Serrated Strikes Length: [[YELLOW]]{0}s
|
||||
Swords.Skillup=Swords skill increased by {0}. Total ({1})
|
||||
Swords.SS.Length=Serrated Strikes Length: [[YELLOW]]{0}s
|
||||
#TAMING
|
||||
Taming.Ability.Bonus.0=Environmentally Aware
|
||||
Taming.Ability.Bonus.1=Wolves avoid danger
|
||||
@ -369,7 +391,7 @@ Taming.Ability.Locked.2=LOCKED UNTIL {0}+ SKILL (SHOCK PROOF)
|
||||
Taming.Ability.Locked.3=LOCKED UNTIL {0}+ SKILL (SHARPENED CLAWS)
|
||||
Taming.Ability.Locked.4=LOCKED UNTIL {0}+ SKILL (FAST FOOD SERVICE)
|
||||
Taming.Ability.Locked.5=LOCKED UNTIL {0}+ SKILL (HOLY HOUND)
|
||||
Taming.Combat.Chance.Gore=[[RED]]Gore Chance: [[YELLOW]]{0}
|
||||
Taming.Combat.Chance.Gore=Gore Chance
|
||||
Taming.SubSkill.BeastLore.Name=Beast Lore
|
||||
Taming.SubSkill.BeastLore.Description=Bone-whacking inspects wolves & ocelots
|
||||
Taming.SubSkill.ShockProof.Name=Shock Proof
|
||||
@ -395,22 +417,22 @@ Taming.SubSkill.Pummel.TargetMessage=You've been knocked back by a wolf!
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]Your wolf scurries back to you...
|
||||
Taming.Listener=Taming:
|
||||
Taming.SkillName=TAMING
|
||||
Taming.Skillup=[[YELLOW]]Taming skill increased by {0}. Total ({1})
|
||||
Taming.Skillup=Taming skill increased by {0}. Total ({1})
|
||||
Taming.Summon.Complete=[[GREEN]]Summoning complete
|
||||
Taming.Summon.Lifespan=[[YELLOW]] (Lifespan: {0}s)
|
||||
Taming.Summon.Fail.Ocelot=[[RED]]You have too many ocelots nearby to summon any more.
|
||||
Taming.Summon.Fail.Wolf=[[RED]]You have too many wolves nearby to summon any more.
|
||||
Taming.Summon.Fail.Horse=[[RED]]You have too many horses nearby to summon any more.
|
||||
Taming.Summon.Fail.TooMany=[[RED]]You have reached the maximum limit of pets to summon. [[YELLOW]]({0})
|
||||
Taming.Summon.Lifespan= (Lifespan: {0}s)
|
||||
Taming.Summon.Fail.Ocelot=You have too many ocelots nearby to summon any more.
|
||||
Taming.Summon.Fail.Wolf=You have too many wolves nearby to summon any more.
|
||||
Taming.Summon.Fail.Horse=You have too many horses nearby to summon any more.
|
||||
Taming.Summon.Fail.TooMany=You have reached the maximum limit of pets to summon. [[YELLOW]]({0})
|
||||
Taming.Summon.Name.Format={0}''s {1}
|
||||
#UNARMED
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]Berserk Length: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Berserk.Length=Berserk Length: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Bonus.0=Iron Arm Style
|
||||
Unarmed.Ability.Bonus.1=+{0} DMG Upgrade
|
||||
Unarmed.Ability.Chance.ArrowDeflect=[[RED]]Arrow Deflect Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=[[RED]]Disarm Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=[[RED]]Iron Grip Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=[[RED]]Your opponent has an iron grip!
|
||||
Unarmed.Ability.Chance.ArrowDeflect=Arrow Deflect Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=Disarm Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=Iron Grip Chance: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=Your opponent has an iron grip!
|
||||
Unarmed.Ability.IronGrip.Defender=[[GREEN]]Your iron grip kept you from being disarmed!
|
||||
Unarmed.Ability.Lower=[[GRAY]]**YOU LOWER YOUR FISTS**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**YOU READY YOUR FISTS**
|
||||
@ -428,17 +450,17 @@ Unarmed.SubSkill.BlockCracker.Name=Block Cracker
|
||||
Unarmed.SubSkill.BlockCracker.Description=Break rock with your fists
|
||||
Unarmed.Listener=Unarmed:
|
||||
Unarmed.SkillName=UNARMED
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**Berserk has worn off**
|
||||
Unarmed.Skills.Berserk.Off=**Berserk has worn off**
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**BERSERK ACTIVATED**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]]Berserk[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.Off=Berserk[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] has used [[RED]]Berserk!
|
||||
Unarmed.Skills.Berserk.Refresh=[[GREEN]]Your [[YELLOW]]Berserk [[GREEN]]ability is refreshed!
|
||||
Unarmed.Skillup=[[YELLOW]]Unarmed skill increased by {0}. Total ({1})
|
||||
Unarmed.Skillup=Unarmed skill increased by {0}. Total ({1})
|
||||
#WOODCUTTING
|
||||
Woodcutting.Ability.0=Leaf Blower
|
||||
Woodcutting.Ability.1=Blow away leaves
|
||||
Woodcutting.Ability.Chance.DDrop=[[RED]]Double Drop Chance: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=[[RED]]Tree Feller Length: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Chance.DDrop=Double Drop Chance: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=Tree Feller Length: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Locked.0=LOCKED UNTIL {0}+ SKILL (LEAF BLOWER)
|
||||
Woodcutting.SubSkill.TreeFeller.Name=Tree Feller
|
||||
Woodcutting.SubSkill.TreeFeller.Description=Make trees explode
|
||||
@ -454,35 +476,32 @@ Woodcutting.SubSkill.NaturesBounty.Name=Nature's Bounty
|
||||
Woodcutting.SubSkill.NaturesBounty.Description=Gather experience from nature.
|
||||
Woodcutting.Listener=Woodcutting:
|
||||
Woodcutting.SkillName=WOODCUTTING
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]]**Tree Feller has worn off**
|
||||
Woodcutting.Skills.TreeFeller.Off=**Tree Feller has worn off**
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**TREE FELLER ACTIVATED**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]Your [[YELLOW]]Tree Feller [[GREEN]]ability is refreshed!
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]]Tree Feller[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=Tree Feller[[GREEN]] has worn off for [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]] has used [[RED]]Tree Feller!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]YOUR AXE SPLINTERS INTO DOZENS OF PIECES!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]That tree is too large!
|
||||
Woodcutting.Skillup=[[YELLOW]]Woodcutting skill increased by {0}. Total ({1})
|
||||
Woodcutting.Skills.TreeFeller.Splinter=YOUR AXE SPLINTERS INTO DOZENS OF PIECES!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=That tree is too large!
|
||||
Woodcutting.Skillup=Woodcutting skill increased by {0}. Total ({1})
|
||||
#ABILITIY
|
||||
##generic
|
||||
Ability.Generic.Refresh=[[GREEN]]**ABILITIES REFRESHED!**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
|
||||
#COMBAT
|
||||
Combat.ArrowDeflect=[[WHITE]]**ARROW DEFLECT**
|
||||
Combat.BeastLore=[[GREEN]]**BEAST LORE**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]Health ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]Owner ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**GORED**
|
||||
Combat.StruckByGore=[[RED]]**YOU HAVE BEEN GORED**
|
||||
Combat.StruckByGore=**YOU HAVE BEEN GORED**
|
||||
Combat.TargetDazed=Target was [[DARK_RED]]Dazed
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]Touched Fuzzy. Felt Dizzy.
|
||||
#COMMANDS
|
||||
##generic
|
||||
mcMMO.Description=[[DARK_AQUA]]About the [[YELLOW]]mcMMO[[DARK_AQUA]] Project:,[[GOLD]]mcMMO is an [[RED]]open source[[GOLD]] RPG mod created in February 2011,[[GOLD]]by [[BLUE]]nossr50[[GOLD]]. The goal is to provide a quality RPG experience.,[[DARK_AQUA]]Tips:,[[GOLD]] - [[GREEN]]Use [[RED]]/mcmmo help[[GREEN]] to see commands,[[GOLD]] - [[GREEN]]Type [[RED]]/SKILLNAME[[GREEN]] to see detailed skill info,[[DARK_AQUA]]Developers:,[[GOLD]] - [[GREEN]]nossr50 [[BLUE]](Founder & Project Lead),[[GOLD]] - [[GREEN]]GJ [[BLUE]](Former Project Lead),[[GOLD]] - [[GREEN]]NuclearW [[BLUE]](Developer),[[GOLD]] - [[GREEN]]bm01 [[BLUE]](Developer),[[GOLD]] - [[GREEN]]TfT_02 [[BLUE]](Developer),[[GOLD]] - [[GREEN]]Glitchfinder [[BLUE]](Developer),[[GOLD]] - [[GREEN]]t00thpick1 [[BLUE]](Developer),[[DARK_AQUA]]Useful Links:,[[GOLD]] - [[GREEN]]https://github.com/mcMMO-Dev/mcMMO/issues[[GOLD]] Bug Reporting,[[GOLD]] - [[GREEN]]https://discord.gg/EJGVanb [[GOLD]] Official Discord
|
||||
Commands.addlevels.AwardAll.1=[[GREEN]]You were awarded {0} levels in all skills!
|
||||
Commands.addlevels.AwardAll.2=[[RED]]All skills have been modified for {0}.
|
||||
Commands.addlevels.AwardAll.2=All skills have been modified for {0}.
|
||||
Commands.addlevels.AwardSkill.1=[[GREEN]]You were awarded {0} levels in {1}!
|
||||
Commands.addlevels.AwardSkill.2=[[RED]]{0} has been modified for {1}.
|
||||
Commands.addlevels.AwardSkill.2={0} has been modified for {1}.
|
||||
Commands.addxp.AwardAll=[[GREEN]]You were awarded {0} experience in all skills!
|
||||
Commands.addxp.AwardSkill=[[GREEN]]You were awarded {0} experience in {1}!
|
||||
Commands.Ability.Off=Ability use toggled [[RED]]off
|
||||
@ -495,15 +514,15 @@ Commands.Chat.Console=*Console*
|
||||
Commands.Cooldowns.Header=[[GOLD]]--= [[GREEN]]mcMMO Ability Cooldowns[[GOLD]] =--
|
||||
Commands.Cooldowns.Row.N=\ [[RED]]{0}[[WHITE]] - [[GOLD]]{1} seconds left
|
||||
Commands.Cooldowns.Row.Y=\ [[AQUA]]{0}[[WHITE]] - [[DARK_GREEN]]Ready!
|
||||
Commands.Database.Cooldown=[[RED]]You must wait {0} seconds before using this command again.
|
||||
Commands.Database.Processing=[[RED]]Your previous command is still being processed. Please wait.
|
||||
Commands.Disabled=[[RED]]This command is disabled.
|
||||
Commands.Database.Cooldown=You must wait {0} seconds before using this command again.
|
||||
Commands.Database.Processing=Your previous command is still being processed. Please wait.
|
||||
Commands.Disabled=This command is disabled.
|
||||
Commands.DoesNotExist= [[RED]]Player does not exist in the database!
|
||||
Commands.GodMode.Disabled=[[YELLOW]]mcMMO Godmode Disabled
|
||||
Commands.GodMode.Enabled=[[YELLOW]]mcMMO Godmode Enabled
|
||||
Commands.AdminChatSpy.Enabled=[[YELLOW]]mcMMO Party Chat Spy Enabled
|
||||
Commands.AdminChatSpy.Disabled=[[YELLOW]]mcMMO Party Chat Spy Disabled
|
||||
Commands.AdminChatSpy.Toggle=[[YELLOW]]mcMMO Party Chat has been toggled for [[YELLOW]]{0}
|
||||
Commands.GodMode.Disabled=mcMMO Godmode Disabled
|
||||
Commands.GodMode.Enabled=mcMMO Godmode Enabled
|
||||
Commands.AdminChatSpy.Enabled=mcMMO Party Chat Spy Enabled
|
||||
Commands.AdminChatSpy.Disabled=mcMMO Party Chat Spy Disabled
|
||||
Commands.AdminChatSpy.Toggle=mcMMO Party Chat has been toggled for [[YELLOW]]{0}
|
||||
Commands.AdminChatSpy.Chat=[[GOLD]][SPY: [[GREEN]]{0}[[GOLD]]] [[WHITE]]{1}
|
||||
Commands.GodMode.Forbidden=[mcMMO] God Mode not permitted on this world (See Permissions)
|
||||
Commands.GodMode.Toggle=God mode has been toggled for [[YELLOW]]{0}
|
||||
@ -514,40 +533,40 @@ Commands.Healthbars.Invalid=Invalid healthbar type!
|
||||
Commands.Inspect=<player> [[GREEN]]- View detailed player info
|
||||
Commands.Invite.Success=[[GREEN]]Invite sent successfully.
|
||||
Commands.Leaderboards=<skill> <page> [[GREEN]]- Leaderboards
|
||||
Commands.mcc.Header=[[RED]]---[][[GREEN]]mcMMO Commands[[RED]][]---
|
||||
Commands.mcc.Header=---[][[GREEN]]mcMMO Commands[[RED]][]---
|
||||
Commands.mcgod=[[GREEN]]- Toggle GodMode
|
||||
Commands.mchud.Invalid=[[RED]]That is not a valid HUD type.
|
||||
Commands.mchud.Invalid=That is not a valid HUD type.
|
||||
Commands.mcpurge.Success=[[GREEN]]The database was successfully purged!
|
||||
Commands.mcrank.Heading=[[GOLD]]-=PERSONAL RANKINGS=-
|
||||
Commands.mcrank.Overall=[[YELLOW]]Overall[[GREEN]] - [[GOLD]]Rank [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=[[RED]]TARGET: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill=[[YELLOW]]{0}[[GREEN]] - [[GOLD]]Rank [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Overall=Overall[[GREEN]] - [[GOLD]]Rank [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=TARGET: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill={0}[[GREEN]] - [[GOLD]]Rank [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Unranked=[[WHITE]]Unranked
|
||||
Commands.mcrefresh.Success=[[RED]]{0}''s cooldowns have been refreshed.
|
||||
Commands.mcrefresh.Success={0}''s cooldowns have been refreshed.
|
||||
Commands.mcremove.Success=[[GREEN]]{0} was successfully removed from the database!
|
||||
Commands.mctop.Tip=[[GOLD]]Tip: Use [[RED]]/mcrank[[GOLD]] to view all of your personal rankings!
|
||||
Commands.mmoedit=[player] <skill> <newvalue> [[GREEN]] - Modify target
|
||||
Commands.mmoedit.AllSkills.1=[[GREEN]]Your level in all skills was set to {0}!
|
||||
Commands.mmoedit.Modified.1=[[GREEN]]Your level in {0} was set to {1}!
|
||||
Commands.mmoedit.Modified.2=[[RED]]{0} has been modified for {1}.
|
||||
Commands.mcconvert.Database.Same=[[RED]]You are already using the {0} database!
|
||||
Commands.mcconvert.Database.InvalidType=[[RED]]{0} is not a valid database type.
|
||||
Commands.mmoedit.Modified.2={0} has been modified for {1}.
|
||||
Commands.mcconvert.Database.Same=You are already using the {0} database!
|
||||
Commands.mcconvert.Database.InvalidType={0} is not a valid database type.
|
||||
Commands.mcconvert.Database.Start=[[GRAY]]Starting conversion from {0} to {1}...
|
||||
Commands.mcconvert.Database.Finish=[[GRAY]]Database migration complete; the {1} database now has all data from the {0} database.
|
||||
Commands.mmoshowdb=[[YELLOW]]The currently used database is [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=[[RED]]Unknown formula type! Valid types are: [[GREEN]]LINEAR [[RED]]and [[GREEN]]EXPONENTIAL.
|
||||
Commands.mcconvert.Experience.Same=[[RED]]Already using formula type {0}
|
||||
Commands.mmoshowdb=The currently used database is [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=Unknown formula type! Valid types are: [[GREEN]]LINEAR [[RED]]and [[GREEN]]EXPONENTIAL.
|
||||
Commands.mcconvert.Experience.Same=Already using formula type {0}
|
||||
Commands.mcconvert.Experience.Start=[[GRAY]]Starting conversion from {0} to {1} curve
|
||||
Commands.mcconvert.Experience.Finish=[[GRAY]]Formula conversion complete; now using {0} XP curve.
|
||||
Commands.ModDescription=[[GREEN]]- Read brief mod description
|
||||
Commands.NoConsole=This command does not support console usage.
|
||||
Commands.Notifications.Off=Ability notifications toggled [[RED]]off
|
||||
Commands.Notifications.On=Ability notifications toggled [[GREEN]]on
|
||||
Commands.Offline=[[RED]]This command does not work for offline players.
|
||||
Commands.NotLoaded=[[RED]]Player profile is not loaded yet.
|
||||
Commands.Other=[[RED]]---[][[GREEN]]OTHER COMMANDS[[RED]][]---
|
||||
Commands.Party.Header=[[RED]]-----[][[GREEN]]PARTY[[RED]][]-----
|
||||
Commands.Party.Features.Header=[[RED]]-----[][[GREEN]]FEATURES[[RED]][]-----
|
||||
Commands.Offline=This command does not work for offline players.
|
||||
Commands.NotLoaded=Player profile is not loaded yet.
|
||||
Commands.Other=---[][[GREEN]]OTHER COMMANDS[[RED]][]---
|
||||
Commands.Party.Header=-----[][[GREEN]]PARTY[[RED]][]-----
|
||||
Commands.Party.Features.Header=-----[][[GREEN]]FEATURES[[RED]][]-----
|
||||
Commands.Party.Status=[[DARK_GRAY]]NAME: [[WHITE]]{0} {1} [[DARK_GRAY]]LEVEL: [[DARK_AQUA]]{2}
|
||||
Commands.Party.Status.Alliance=[[DARK_GRAY]]ALLY: [[WHITE]]{0}
|
||||
Commands.Party.UnlockedFeatures=[[DARK_GRAY]]Unlocked Features: [[GRAY]][[ITALIC]]{0}
|
||||
@ -559,75 +578,74 @@ Commands.Party.MembersNear=[[DARK_GRAY]]NEAR YOU [[DARK_AQUA]]{0}[[DARK_GRAY]]/[
|
||||
Commands.Party.Accept=[[GREEN]]- Accept party invite
|
||||
Commands.Party.Chat.Off=Party Chat only [[RED]]Off
|
||||
Commands.Party.Chat.On=Party Chat only [[GREEN]]On
|
||||
Commands.Party.Commands=[[RED]]---[][[GREEN]]PARTY COMMANDS[[RED]][]---
|
||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
||||
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
||||
Commands.Party.Commands=---[][[GREEN]]PARTY COMMANDS[[RED]][]---
|
||||
Commands.Party.Invite.0=ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
||||
Commands.Party.Invite.1=Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
||||
Commands.Party.Invite=[[GREEN]]- Send party invite
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]Invite Accepted. You have joined party {0}
|
||||
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
||||
Commands.Party.PartyFull=[[GOLD]]{0}[[RED]] is full!
|
||||
Commands.Party.PartyFull.Invite=[[RED]]You cannot invite [[YELLOW]]{0}[[RED]] to [[GREEN]]{1}[[RED]] because it already has [[DARK_AQUA]]{2}[[RED]] players in it!
|
||||
Commands.Party.PartyFull.InviteAccept=[[RED]]You cannot join [[GREEN]]{0}[[RED]] because it already has [[DARK_AQUA]]{1}[[RED]] players in it!
|
||||
Commands.Party.PartyFull.Invite=You cannot invite [[YELLOW]]{0}[[RED]] to [[GREEN]]{1}[[RED]] because it already has [[DARK_AQUA]]{2}[[RED]] players in it!
|
||||
Commands.Party.PartyFull.InviteAccept=You cannot join [[GREEN]]{0}[[RED]] because it already has [[DARK_AQUA]]{1}[[RED]] players in it!
|
||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||
Commands.Party.SetSharing=[[GRAY]]Party {0} sharing set to: [[DARK_AQUA]]{1}
|
||||
Commands.Party.ToggleShareCategory=[[GRAY]]Party item sharing for [[GOLD]]{0} [[GRAY]]has been [[DARK_AQUA]]{1}
|
||||
Commands.Party.AlreadyExists=[[DARK_RED]]Party {0} already exists!
|
||||
Commands.Party.Kick=[[RED]]You were kicked from party {0}!
|
||||
Commands.Party.Leave=[[RED]]You have left that party
|
||||
Commands.Party.Members.Header=[[RED]]-----[][[GREEN]]MEMBERS[[RED]][]-----
|
||||
Commands.Party.None=[[RED]]You are not in a party.
|
||||
Commands.Party.Kick=You were kicked from party {0}!
|
||||
Commands.Party.Leave=You have left that party
|
||||
Commands.Party.Members.Header=-----[][[GREEN]]MEMBERS[[RED]][]-----
|
||||
Commands.Party.None=You are not in a party.
|
||||
Commands.Party.Quit=[[GREEN]]- Leave your current party
|
||||
Commands.Party.Teleport=[[GREEN]]- Teleport to party member
|
||||
Commands.Party.Toggle=[[GREEN]]- Toggle Party Chat
|
||||
Commands.Party1=[[GREEN]]- Create a new party
|
||||
Commands.Party2=[[GREEN]]- Join a players party
|
||||
Commands.Party.Alliance.Header=[[RED]]-----[][[GREEN]]PARTY ALLIANCE[[RED]][]-----
|
||||
Commands.Party.Alliance.Header=-----[][[GREEN]]PARTY ALLIANCE[[RED]][]-----
|
||||
Commands.Party.Alliance.Ally=[[WHITE]]{0} [[DARK_GRAY]]IS ALLIED WITH: [[WHITE]]{1}
|
||||
Commands.Party.Alliance.Members.Header=[[RED]]-----[][[GREEN]]ALLIANCE MEMBERS[[RED]][]-----
|
||||
Commands.Party.Alliance.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party alliance invite for {0} from {1}
|
||||
Commands.Party.Alliance.Invite.1=[[YELLOW]]Type [[GREEN]]/party alliance accept[[YELLOW]] to accept the invite
|
||||
Commands.Party.Alliance.Members.Header=-----[][[GREEN]]ALLIANCE MEMBERS[[RED]][]-----
|
||||
Commands.Party.Alliance.Invite.0=ALERT: [[GREEN]]You have received a party alliance invite for {0} from {1}
|
||||
Commands.Party.Alliance.Invite.1=Type [[GREEN]]/party alliance accept[[YELLOW]] to accept the invite
|
||||
Commands.Party.Alliance.Invite.Accepted=[[GREEN]]Alliance invite Accepted.
|
||||
Commands.Party.Alliance.None=[[RED]]Your does not have an ally.
|
||||
Commands.Party.Alliance.AlreadyAllies=[[RED]]Your party already has an ally. Disband with [[DARK_AQUA]]/party alliance disband
|
||||
Commands.Party.Alliance.Help.0=[[RED]]This party hasn't formed an alliance. Invite a party leader
|
||||
Commands.Party.Alliance.Help.1=[[RED]] to an alliance with [[DARK_AQUA]]/party alliance invite <player>[[RED]].
|
||||
Commands.Party.Alliance.None=Your does not have an ally.
|
||||
Commands.Party.Alliance.AlreadyAllies=Your party already has an ally. Disband with [[DARK_AQUA]]/party alliance disband
|
||||
Commands.Party.Alliance.Help.0=This party hasn't formed an alliance. Invite a party leader
|
||||
Commands.Party.Alliance.Help.1= to an alliance with [[DARK_AQUA]]/party alliance invite <player>[[RED]].
|
||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||
Commands.ptp.NoWorldPermissions=[[RED]][mcMMO] You do not have permission to teleport to the world {0}.
|
||||
Commands.ptp.Request1=[[YELLOW]]{0} [[GREEN]]has requested to teleport to you.
|
||||
Commands.ptp.NoRequests=You have no teleport requests at this time
|
||||
Commands.ptp.NoWorldPermissions=[mcMMO] You do not have permission to teleport to the world {0}.
|
||||
Commands.ptp.Request1={0} [[GREEN]]has requested to teleport to you.
|
||||
Commands.ptp.Request2=[[GREEN]]To teleport, type [[YELLOW]]/ptp accept[[GREEN]]. Request expires in [[RED]]{0} [[GREEN]]seconds.
|
||||
Commands.ptp.AcceptAny.Enabled=Party teleport request confirmation [[GREEN]]enabled
|
||||
Commands.ptp.AcceptAny.Disabled=Party teleport request confirmation [[RED]]disabled
|
||||
Commands.ptp.RequestExpired=[[RED]]Party teleport request has expired!
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO[[BLUE]] Power Level [[YELLOW]]Leaderboard--
|
||||
Commands.ptp.RequestExpired=Party teleport request has expired!
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO[[BLUE]] Power Level [[YELLOW]]Leaderboard--
|
||||
Commands.PowerLevel.Capped=[[DARK_RED]]POWER LEVEL: [[GREEN]]{0} [[DARK_RED]]MAX LEVEL: [[YELLOW]]{1}
|
||||
Commands.PowerLevel=[[DARK_RED]]POWER LEVEL: [[GREEN]]{0}
|
||||
Commands.Reset.All=[[GREEN]]All of your skill levels have been reset successfully.
|
||||
Commands.Reset.Single=[[GREEN]]Your {0} skill level has been reset successfully.
|
||||
Commands.Reset=[[GREEN]]- Reset a skill's level to 0
|
||||
Commands.Scoreboard.Clear=[[DARK_AQUA]]mcMMO scoreboard cleared.
|
||||
Commands.Scoreboard.NoBoard=[[RED]]The mcMMO scoreboard is not active.
|
||||
Commands.Scoreboard.NoBoard=The mcMMO scoreboard is not active.
|
||||
Commands.Scoreboard.Keep=[[DARK_AQUA]]The mcMMO scoreboard will stay up until you use [[GREEN]]/mcscoreboard clear[[DARK_AQUA]].
|
||||
Commands.Scoreboard.Timer=[[DARK_AQUA]]The mcMMO scoreboard will clear [[GOLD]]{0}[[DARK_AQUA]] seconds from now.
|
||||
Commands.Scoreboard.Help.0=[[GOLD]] == [[GREEN]]Help for [[RED]]/mcscoreboard[[GOLD]] ==
|
||||
Commands.Scoreboard.Help.1=[[DARK_AQUA]]/mcscoreboard[[AQUA]] clear [[WHITE]] - clear the McMMO scoreboard
|
||||
Commands.Scoreboard.Help.2=[[DARK_AQUA]]/mcscoreboard[[AQUA]] keep [[WHITE]] - keep the mcMMO scoreboard up
|
||||
Commands.Scoreboard.Help.3=[[DARK_AQUA]]/mcscoreboard[[AQUA]] time [n] [[WHITE]] - clear the McMMO scoreboard after [[LIGHT_PURPLE]]n[[WHITE]] seconds
|
||||
Commands.Scoreboard.Tip.Keep=[[GOLD]]Tip: Use [[RED]]/mcscoreboard keep[[GOLD]] while the scoreboard is shown to keep it from going away.
|
||||
Commands.Scoreboard.Tip.Clear=[[GOLD]]Tip: Use [[RED]]/mcscoreboard clear[[GOLD]] to get rid of the scoreboard.
|
||||
Commands.Skill.Invalid=[[RED]]That is not a valid skillname!
|
||||
Commands.Skill.ChildSkill=[[RED]]Child skills are not valid for this command!
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--mcMMO [[BLUE]]{0}[[YELLOW]] Leaderboard--
|
||||
Commands.Scoreboard.Tip.Keep=[[GRAY]](Tip) Use [[YELLOW]]/mcscoreboard keep[[GRAY]] while the scoreboard is shown to keep it from going away.
|
||||
Commands.Scoreboard.Tip.Clear=[[GRAY]](Tip) Use [[YELLOW]]/mcscoreboard clear[[GRAY]] to get rid of the scoreboard.
|
||||
Commands.Skill.Invalid=That is not a valid skillname!
|
||||
Commands.Skill.ChildSkill=Child skills are not valid for this command!
|
||||
Commands.Skill.Leaderboard=--mcMMO [[BLUE]]{0}[[YELLOW]] Leaderboard--
|
||||
Commands.SkillInfo=[[GREEN]]- View detailed information about a skill
|
||||
Commands.Stats.Self.Overhaul=Stats
|
||||
Commands.Stats=[[GREEN]]- View your mcMMO stats
|
||||
Commands.ToggleAbility=[[GREEN]]- Toggle ability activation with right click
|
||||
Commands.Usage.0=[[RED]]Proper usage is /{0}
|
||||
Commands.Usage.1=[[RED]]Proper usage is /{0} {1}
|
||||
Commands.Usage.2=[[RED]]Proper usage is /{0} {1} {2}
|
||||
Commands.Usage.3=[[RED]]Proper usage is /{0} {1} {2} {3}
|
||||
Commands.Usage.0=Proper usage is /{0}
|
||||
Commands.Usage.1=Proper usage is /{0} {1}
|
||||
Commands.Usage.2=Proper usage is /{0} {1} {2}
|
||||
Commands.Usage.3=Proper usage is /{0} {1} {2} {3}
|
||||
Commands.Usage.FullClassName=classname
|
||||
Commands.Usage.Level=level
|
||||
Commands.Usage.Message=message
|
||||
@ -647,61 +665,61 @@ Commands.MmoInfo.SubSkillHeader=[[GOLD]]Name:[[YELLOW]] {0}
|
||||
Commands.MmoInfo.DetailsHeader=[[DARK_AQUA]]-=[]=====[][[GREEN]] Details [[DARK_AQUA]][]=====[]=-
|
||||
Commands.MmoInfo.OldSkill=[[GRAY]]mcMMO skills are being converted into an improved modular skill system, unfortunately this skill has not been converted yet and lacks detailed stats. The new system will allow for faster release times for new mcMMO skills and greater flexibility with existing skills.
|
||||
Commands.MmoInfo.Mechanics=[[DARK_AQUA]]-=[]=====[][[GOLD]] Mechanics [[DARK_AQUA]][]=====[]=-
|
||||
Commands.MmoInfo.Stats=[[RED]]STATS: {0}
|
||||
mcMMO.NoInvites=[[RED]]You have no invites at this time
|
||||
Commands.MmoInfo.Stats=STATS: {0}
|
||||
mcMMO.NoInvites=You have no invites at this time
|
||||
mcMMO.NoPermission=[[DARK_RED]]Insufficient permissions.
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]If you don't have access to a skill it will not be shown here.
|
||||
##party
|
||||
Party.Forbidden=[mcMMO] Parties not permitted on this world (See Permissions)
|
||||
Party.Help.0=[[RED]]Proper usage is [[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=[[RED]]To create a party, use [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.2=[[RED]]Consult [[DARK_AQUA]]{0} [[RED]]for more information
|
||||
Party.Help.3=[[RED]]Use [[DARK_AQUA]]{0} <player> [password] [[RED]]to join or [[DARK_AQUA]]{1} [[RED]]to quit
|
||||
Party.Help.4=[[RED]]To lock or unlock your party, use [[DARK_AQUA]]{0}
|
||||
Party.Help.5=[[RED]]To password protect your party, use [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=[[RED]]To kick a player from your party, use [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.7=[[RED]]To transfer ownership of your party, use [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=[[RED]]To disband your party, use [[DARK_AQUA]]{0}
|
||||
Party.Help.9=[[RED]]Use [[DARK_AQUA]]{0} [[RED]]to share items with party members
|
||||
Party.Help.10=[[RED]]Use [[DARK_AQUA]]{0} [[RED]]to enable XP sharing with party members
|
||||
Party.Help.0=Proper usage is [[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=To create a party, use [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.2=Consult [[DARK_AQUA]]{0} [[RED]]for more information
|
||||
Party.Help.3=Use [[DARK_AQUA]]{0} <player> [password] [[RED]]to join or [[DARK_AQUA]]{1} [[RED]]to quit
|
||||
Party.Help.4=To lock or unlock your party, use [[DARK_AQUA]]{0}
|
||||
Party.Help.5=To password protect your party, use [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=To kick a player from your party, use [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.7=To transfer ownership of your party, use [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=To disband your party, use [[DARK_AQUA]]{0}
|
||||
Party.Help.9=Use [[DARK_AQUA]]{0} [[RED]]to share items with party members
|
||||
Party.Help.10=Use [[DARK_AQUA]]{0} [[RED]]to enable XP sharing with party members
|
||||
Party.InformedOnJoin={0} [[GREEN]]has joined your party
|
||||
Party.InformedOnQuit={0} [[GREEN]]has left your party
|
||||
Party.InformedOnNameChange=[[GOLD]]{0} [[GREEN]]has set the party name to [[WHITE]]{1}
|
||||
Party.InvalidName=[[DARK_RED]]That is not a valid party name.
|
||||
Party.Invite.Self=[[RED]]You can't invite yourself!
|
||||
Party.IsLocked=[[RED]]This party is already locked!
|
||||
Party.IsntLocked=[[RED]]This party is not locked!
|
||||
Party.Locked=[[RED]]Party is locked, only party leader may invite.
|
||||
Party.Invite.Self=You can't invite yourself!
|
||||
Party.IsLocked=This party is already locked!
|
||||
Party.IsntLocked=This party is not locked!
|
||||
Party.Locked=Party is locked, only party leader may invite.
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} is not in your party
|
||||
Party.NotOwner=[[DARK_RED]]You are not the party leader.
|
||||
Party.Target.NotOwner=[[DARK_RED]]{0} is not the party leader.
|
||||
Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||
Party.Owner.Player =[[GREEN]]You are now the party leader.
|
||||
Party.Password.None=[[RED]]This party is password protected. Please provide a password to join.
|
||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||
Party.Password.None=This party is password protected. Please provide a password to join.
|
||||
Party.Password.Incorrect=Party password is incorrect.
|
||||
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||
Party.Player.Invalid=[[RED]]That is not a valid player.
|
||||
Party.Player.Invalid=That is not a valid player.
|
||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||
Party.Player.InSameParty={0} already is in your party!
|
||||
Party.PlayerNotInParty=[[DARK_RED]]{0} is not in a party
|
||||
Party.Specify=[[RED]]You must specify a party.
|
||||
Party.Teleport.Dead=[[RED]]You can't teleport to a dead player.
|
||||
Party.Teleport.Hurt=[[RED]]You have been hurt in the last {0} seconds and cannot teleport.
|
||||
Party.Specify=You must specify a party.
|
||||
Party.Teleport.Dead=You can't teleport to a dead player.
|
||||
Party.Teleport.Hurt=You have been hurt in the last {0} seconds and cannot teleport.
|
||||
Party.Teleport.Player=[[GREEN]]You have teleported to {0}.
|
||||
Party.Teleport.Self=[[RED]]You can't teleport to yourself!
|
||||
Party.Teleport.Self=You can't teleport to yourself!
|
||||
Party.Teleport.Target=[[GREEN]]{0} has teleported to you.
|
||||
Party.Teleport.Disabled=[[RED]]{0} doesn't allow party teleportation.
|
||||
Party.Rename.Same=[[RED]]That is already the name of your party!
|
||||
Party.Join.Self=[[RED]]You can't join yourself!
|
||||
Party.Teleport.Disabled={0} doesn't allow party teleportation.
|
||||
Party.Rename.Same=That is already the name of your party!
|
||||
Party.Join.Self=You can't join yourself!
|
||||
Party.Unlocked=[[GRAY]]Party is unlocked
|
||||
Party.Disband=[[GRAY]]The party has been disbanded
|
||||
Party.Alliance.Formed=[[GRAY]]Your party is now allies with [[GREEN]]{0}
|
||||
Party.Alliance.Disband=[[GRAY]]Your party is no longer allies with [[RED]]{0}
|
||||
Party.Status.Locked=[[DARK_RED]](INVITE-ONLY)
|
||||
Party.Status.Unlocked=[[DARK_GREEN]](OPEN)
|
||||
Party.LevelUp=[[YELLOW]]Party level increased by {0}. Total ({1})
|
||||
Party.LevelUp=Party level increased by {0}. Total ({1})
|
||||
Party.Feature.Chat=Party Chat
|
||||
Party.Feature.Teleport=Party Teleport
|
||||
Party.Feature.Alliance=Alliances
|
||||
@ -712,11 +730,11 @@ Party.Feature.Locked.Teleport=LOCKED UNTIL {0}+ (PARTY TELEPORT)
|
||||
Party.Feature.Locked.Alliance=LOCKED UNTIL {0}+ (ALLIANCES)
|
||||
Party.Feature.Locked.ItemShare=LOCKED UNTIL {0}+ (ITEM SHARING)
|
||||
Party.Feature.Locked.XpShare=LOCKED UNTIL {0}+ (XP SHARING)
|
||||
Party.Feature.Disabled.1=[[RED]]Party chat is not unlocked yet.
|
||||
Party.Feature.Disabled.2=[[RED]]Party teleport is not unlocked yet.
|
||||
Party.Feature.Disabled.3=[[RED]]Party alliances are not unlocked yet.
|
||||
Party.Feature.Disabled.4=[[RED]]Party item sharing is not unlocked yet.
|
||||
Party.Feature.Disabled.5=[[RED]]Party XP sharing is not unlocked yet.
|
||||
Party.Feature.Disabled.1=Party chat is not unlocked yet.
|
||||
Party.Feature.Disabled.2=Party teleport is not unlocked yet.
|
||||
Party.Feature.Disabled.3=Party alliances are not unlocked yet.
|
||||
Party.Feature.Disabled.4=Party item sharing is not unlocked yet.
|
||||
Party.Feature.Disabled.5=Party XP sharing is not unlocked yet.
|
||||
Party.ShareType.Xp=XP
|
||||
Party.ShareType.Item=ITEM
|
||||
Party.ShareMode.None=NONE
|
||||
@ -743,14 +761,13 @@ Commands.XPGain.Taming=Animal Taming, or combat w/ your wolves
|
||||
Commands.XPGain.Unarmed=Attacking Monsters
|
||||
Commands.XPGain.Woodcutting=Chopping down trees
|
||||
Commands.XPGain=[[DARK_GRAY]]XP GAIN: [[WHITE]]{0}
|
||||
Commands.XPGain.Overhaul=[[YELLOW]]XP GAIN: [[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]Your XP BAR is now locked to {0}!
|
||||
Commands.xplock.unlocked=[[GOLD]]Your XP BAR is now [[GREEN]]UNLOCKED[[GOLD]]!
|
||||
Commands.xprate.modified=[[RED]]The XP RATE was modified to {0}
|
||||
Commands.xprate.over=[[RED]]mcMMO XP Rate Event is OVER!!
|
||||
Commands.xprate.proper.0=[[RED]]Proper usage to change the XP rate is /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=[[RED]]Proper usage to restore the XP rate to default is /xprate reset
|
||||
Commands.xprate.proper.2=[[RED]]Please specify true or false to indicate if this is an xp event or not
|
||||
Commands.xprate.modified=The XP RATE was modified to {0}
|
||||
Commands.xprate.over=mcMMO XP Rate Event is OVER!!
|
||||
Commands.xprate.proper.0=Proper usage to change the XP rate is /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=Proper usage to restore the XP rate to default is /xprate reset
|
||||
Commands.xprate.proper.2=Please specify true or false to indicate if this is an xp event or not
|
||||
Commands.NegativeNumberWarn=Don't use negative numbers!
|
||||
Commands.Event.Start=[[GREEN]]mcMMO[[GOLD]] Event!
|
||||
Commands.Event.Stop=[[GREEN]]mcMMO[[DARK_AQUA]] Event Over!
|
||||
@ -759,22 +776,13 @@ Commands.Event.XP=[[DARK_AQUA]]XP Rate is now [[GOLD]]{0}[[DARK_AQUA]]x!
|
||||
Commands.xprate.started.0=[[GOLD]]XP EVENT FOR mcMMO HAS STARTED!
|
||||
Commands.xprate.started.1=[[GOLD]]mcMMO XP RATE IS NOW {0}x!
|
||||
XPRate.Event= [[GOLD]]mcMMO is currently in an XP rate event! XP rate is {0}x!
|
||||
#EFFECTS
|
||||
##generic
|
||||
Effects.Effects=EFFECTS
|
||||
Effects.SubSkills.Overhaul=Sub-Skills
|
||||
Effects.Child=[[DARK_GRAY]]LVL: [[GREEN]]{0}
|
||||
Effects.Child.Overhaul=[[DARK_GRAY]]LVL: [[GREEN]]{0}
|
||||
Effects.Level=[[DARK_GRAY]]LVL: [[GREEN]]{0} [[DARK_AQUA]]XP[[YELLOW]]([[GOLD]]{1}[[YELLOW]]/[[GOLD]]{2}[[YELLOW]])
|
||||
Effects.Level.Overhaul=[[RED]]LVL: [[GREEN]]{0} [[DARK_AQUA]]XP[[YELLOW]]([[GOLD]]{1}[[YELLOW]]/[[GOLD]]{2}[[YELLOW]])
|
||||
Effects.Parent = [[GOLD]]{0} -
|
||||
Effects.Template=[[DARK_AQUA]]{0}: [[GREEN]]{1}
|
||||
|
||||
#GUIDES
|
||||
Guides.Available=[[GRAY]]Guide for {0} available - type /{1} ? [page]
|
||||
Guides.Header=[[GOLD]]-=[[GREEN]]{0} Guide[[GOLD]]=-
|
||||
Guides.Page.Invalid=Not a valid page number!
|
||||
Guides.Page.OutOfRange=That page does not exist, there are only {0} total pages.
|
||||
Guides.Usage=[[RED]] Usage is /{0} ? [page]
|
||||
Guides.Usage= Usage is /{0} ? [page]
|
||||
##Acrobatics
|
||||
Guides.Acrobatics.Section.0=[[DARK_AQUA]]About Acrobatics:\n[[YELLOW]]Acrobatics is the art of moving Gracefuly in mcMMO.\n[[YELLOW]]It provides combat bonuses and environment damage bonuses.\n\n[[DARK_AQUA]]XP GAIN:\n[[YELLOW]]To gain XP in this skill you need to perform a dodge\n[[YELLOW]]in combat or survive falls from heights that damage you.
|
||||
Guides.Acrobatics.Section.1=[[DARK_AQUA]]How does Rolling work?\n[[YELLOW]]You have a passive chance when you take fall damage\n[[YELLOW]]to negate the damage done. You can hold the sneak button to\n[[YELLOW]]double your chances during the fall.\n[[YELLOW]]This triggers a Graceful Roll instead of a standard one.\n[[YELLOW]]Graceful Rolls are like regular rolls but are twice as likely to\n[[YELLOW]]occur and provide more damage safety than regular rolls.\n[[YELLOW]]Rolling chance is tied to your skill level
|
||||
@ -875,15 +883,15 @@ Guides.Woodcutting.Section.3=[[DARK_AQUA]]How do Double Drops work?\n[[YELLOW]]T
|
||||
Inspect.Offline= [[RED]]You do not have permission to inspect offline players!
|
||||
Inspect.OfflineStats=mcMMO Stats for Offline Player [[YELLOW]]{0}
|
||||
Inspect.Stats=[[GREEN]]mcMMO Stats for [[YELLOW]]{0}
|
||||
Inspect.TooFar=[[RED]]You are too far away to inspect that player!
|
||||
Inspect.TooFar=You are too far away to inspect that player!
|
||||
#ITEMS
|
||||
Item.ChimaeraWing.Fail=**CHIMAERA WING FAILED!**
|
||||
Item.ChimaeraWing.Pass=**CHIMAERA WING**
|
||||
Item.ChimaeraWing.Name=Chimaera Wing
|
||||
Item.ChimaeraWing.Lore=[[GRAY]]Teleports you to your bed.
|
||||
Item.ChimaeraWing.NotEnough=[[RED]]You need [[YELLOW]]{0}[[RED]] more [[GOLD]]{1}[[RED]]!
|
||||
Item.NotEnough=[[RED]]You need [[YELLOW]]{0}[[RED]] more [[GOLD]]{1}[[RED]]!
|
||||
Item.Generic.Wait=[[RED]]You need to wait before you can use this again! [[YELLOW]]({0}s)
|
||||
Item.ChimaeraWing.NotEnough=You need [[YELLOW]]{0}[[RED]] more [[GOLD]]{1}[[RED]]!
|
||||
Item.NotEnough=You need [[YELLOW]]{0}[[RED]] more [[GOLD]]{1}[[RED]]!
|
||||
Item.Generic.Wait=You need to wait before you can use this again! [[YELLOW]]({0}s)
|
||||
Item.Injured.Wait=You were injured recently and must wait to use this. [[YELLOW]]({0}s)
|
||||
Item.FluxPickaxe.Name=Flux Pickaxe
|
||||
Item.FluxPickaxe.Lore.1=[[GRAY]]Has a chance of instantly smelting ores.
|
||||
@ -894,17 +902,16 @@ Teleport.Cancelled=[[DARK_RED]]Teleportation canceled!
|
||||
#SKILLS
|
||||
Skills.Child=[[GOLD]](CHILD SKILL)
|
||||
Skills.Disarmed=[[DARK_RED]]You have been disarmed!
|
||||
Skills.Header=[[RED]]-----[] [[GREEN]]{0}[[RED]] []-----
|
||||
Skills.Overhaul.Header=[[DARK_AQUA]][]=====[][[GOLD]] {0} [[DARK_AQUA]][]=====[]
|
||||
Skills.Header=-----[] [[GREEN]]{0}[[RED]] []-----
|
||||
Skills.NeedMore=[[DARK_RED]]You need more [[GRAY]]{0}
|
||||
Skills.NeedMore.Extra=[[DARK_RED]]You need more [[GRAY]]{0}{1}
|
||||
Skills.Parents = PARENTS
|
||||
Skills.Stats=[[YELLOW]]{0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats=[[YELLOW]]{0}[[GREEN]]{1}
|
||||
Skills.TooTired=[[RED]]You are too tired to use that ability again. [[YELLOW]]({0}s)
|
||||
Skills.Cancelled=[[RED]]{0} cancelled!
|
||||
Skills.Stats={0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats={0}[[GREEN]]{1}
|
||||
Skills.TooTired=You are too tired to use that ability again. [[YELLOW]]({0}s)
|
||||
Skills.Cancelled={0} cancelled!
|
||||
Skills.ConfirmOrCancel=[[GREEN]]Right-click again to confirm [[GOLD]]{0}[[GREEN]]. Left-click to cancel.
|
||||
Skills.AbilityGateRequirementFail=[[RED]]You require [[YELLOW]]{0}[[RED]] more levels of [[GOLD]]{1}[[RED]] to use this super ability.
|
||||
Skills.AbilityGateRequirementFail=You require [[YELLOW]]{0}[[RED]] more levels of [[GOLD]]{1}[[RED]] to use this super ability.
|
||||
#STATISTICS
|
||||
Stats.Header.Combat=[[GOLD]]-=COMBAT SKILLS=-
|
||||
Stats.Header.Gathering=[[GOLD]]-=GATHERING SKILLS=-
|
||||
@ -939,19 +946,18 @@ MOTD.Donate=[[DARK_AQUA]]Donation Info:
|
||||
MOTD.Hardcore.Enabled=[[GOLD]][mcMMO] [[DARK_AQUA]]Hardcore Mode enabled: [[DARK_RED]]{0}
|
||||
MOTD.Hardcore.DeathStatLoss.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Skill Death Penalty: [[DARK_RED]]{0}%
|
||||
MOTD.Hardcore.Vampirism.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Vampirism Stat Leech: [[DARK_RED]]{0}%
|
||||
MOTD.PerksPrefix=[[RED]][mcMMO Perks]
|
||||
MOTD.PerksPrefix=[mcMMO Perks]
|
||||
MOTD.Version=[[GOLD]][mcMMO] Running version [[DARK_AQUA]]{0}
|
||||
MOTD.Version.Overhaul=[[GOLD]][mcMMO] [[RED]]Overhaul Era[[GOLD]] - [[DARK_AQUA]]{0}
|
||||
MOTD.Website=[[GOLD]][mcMMO] [[GREEN]]{0}[[YELLOW]] - mcMMO Website
|
||||
#SMELTING
|
||||
Smelting.Ability.FluxMining=[[RED]]Flux Mining Chance: [[YELLOW]]{0}
|
||||
Smelting.Ability.FluxMining=Flux Mining Chance: [[YELLOW]]{0}
|
||||
Smelting.SubSkill.UnderstandingTheArt.Name=Understanding The Art
|
||||
Smelting.SubSkill.UnderstandingTheArt.Description=Maybe you're spending a bit too much time smelting in the caves.\nPowers up various properties of Smelting.
|
||||
Smelting.Ability.FuelEfficiency=[[RED]]Fuel Efficiency Multiplier: [[YELLOW]]{0}x
|
||||
Smelting.Ability.FuelEfficiency=Fuel Efficiency Multiplier: [[YELLOW]]{0}x
|
||||
Smelting.Ability.Locked.0=LOCKED UNTIL {0}+ SKILL (VANILLA XP BOOST)
|
||||
Smelting.Ability.Locked.1=LOCKED UNTIL {0}+ SKILL (FLUX MINING)
|
||||
Smelting.Ability.SecondSmelt=[[RED]]Second Smelt Chance: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=[[RED]]Vanilla XP Multiplier: [[YELLOW]]{0}x
|
||||
Smelting.Ability.SecondSmelt=Second Smelt Chance: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=Vanilla XP Multiplier: [[YELLOW]]{0}x
|
||||
Smelting.SubSkill.FuelEfficiency.Name=Fuel Efficiency
|
||||
Smelting.SubSkill.FuelEfficiency.Description=Increase the burn time of fuel used in furnaces when smelting
|
||||
Smelting.SubSkill.SecondSmelt.Name=Second Smelt
|
||||
@ -998,21 +1004,21 @@ Commands.Description.xprate=Modify the mcMMO XP rate or start an mcMMO XP event
|
||||
UpdateChecker.Outdated=You are using an outdated version of mcMMO!
|
||||
UpdateChecker.NewAvailable=There is a new version available on BukkitDev.
|
||||
#SCOREBOARD HEADERS
|
||||
Scoreboard.Header.PlayerStats=[[YELLOW]]mcMMO Stats
|
||||
Scoreboard.Header.PlayerCooldowns=[[YELLOW]]mcMMO Cooldowns
|
||||
Scoreboard.Header.PlayerRank=[[YELLOW]]mcMMO Rankings
|
||||
Scoreboard.Header.PlayerInspect=[[YELLOW]]mcMMO Stats: {0}
|
||||
Scoreboard.Header.PowerLevel=[[RED]]Power Level
|
||||
Scoreboard.Header.PlayerStats=mcMMO Stats
|
||||
Scoreboard.Header.PlayerCooldowns=mcMMO Cooldowns
|
||||
Scoreboard.Header.PlayerRank=mcMMO Rankings
|
||||
Scoreboard.Header.PlayerInspect=mcMMO Stats: {0}
|
||||
Scoreboard.Header.PowerLevel=Power Level
|
||||
Scoreboard.Misc.PowerLevel=[[GOLD]]Power Level
|
||||
Scoreboard.Misc.Level=[[DARK_AQUA]]Level
|
||||
Scoreboard.Misc.CurrentXP=[[GREEN]]Current XP
|
||||
Scoreboard.Misc.RemainingXP=[[YELLOW]]Remaining XP
|
||||
Scoreboard.Misc.RemainingXP=Remaining XP
|
||||
Scoreboard.Misc.Cooldown=[[LIGHT_PURPLE]]Cooldown
|
||||
Scoreboard.Misc.Overall=[[GOLD]]Overall
|
||||
Scoreboard.Misc.Ability=Ability
|
||||
#DATABASE RECOVERY
|
||||
Profile.Loading.Success=[[GREEN]]Your mcMMO profile has been loaded.
|
||||
Profile.Loading.Failure=[[RED]]mcMMO still cannot load your data. You may want to [[AQUA]]contact the server owner.\n[[YELLOW]]You can still play on the server, but you will have [[BOLD]]no mcMMO levels[[YELLOW]] and any XP you get [[BOLD]]will not be saved[[YELLOW]].
|
||||
Profile.Loading.Failure=mcMMO still cannot load your data. You may want to [[AQUA]]contact the server owner.\n[[YELLOW]]You can still play on the server, but you will have [[BOLD]]no mcMMO levels[[YELLOW]] and any XP you get [[BOLD]]will not be saved[[YELLOW]].
|
||||
Profile.Loading.AdminFailureNotice=[[DARK_RED]][A][[RED]] mcMMO was unable to load the player data for [[YELLOW]]{0}[[RED]]. [[LIGHT_PURPLE]]Please inspect your database setup.
|
||||
#Holiday
|
||||
Holiday.AprilFools.Levelup=[[GOLD]]{0} is now level [[GREEN]]{1}[[GOLD]]!
|
||||
|
@ -1,6 +1,6 @@
|
||||
Acrobatics.Ability.Proc=[[GREEN]]**Aterrizaje Agraciado**
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**Esquivado**
|
||||
Acrobatics.DodgeChance=[[RED]]Probabilidad de Esquivar: [[YELLOW]]{0}%
|
||||
Acrobatics.DodgeChance=Probabilidad de Esquivar: [[YELLOW]]{0}%
|
||||
Acrobatics.SubSkill.Roll.Name=Rodada
|
||||
Acrobatics.SubSkill.Roll.Description=Reduce o Elimina el da\u00f1o de caida
|
||||
Acrobatics.SubSkill.GracefulRoll.Name=Rodada Majestuosa
|
||||
@ -8,14 +8,14 @@ Acrobatics.SubSkill.GracefulRoll.Description=El doble de efectivo que una rodada
|
||||
Acrobatics.SubSkill.Dodge.Name=Esquivar
|
||||
Acrobatics.SubSkill.Dodge.Description=Reduce el da\u00f1o de ataque a la mitad
|
||||
Acrobatics.Listener=Acrobacias:
|
||||
Acrobatics.SubSkill.Roll.Chance=[[RED]]Probabilidad de Rodar: [[YELLOW]]{0}%
|
||||
Acrobatics.SubSkill.Roll.GraceChance=[[RED]]Probabilidad de Rodada Majestuosa: [[YELLOW]]{0}%
|
||||
Acrobatics.SubSkill.Roll.Chance=Probabilidad de Rodar: [[YELLOW]]{0}%
|
||||
Acrobatics.SubSkill.Roll.GraceChance=Probabilidad de Rodada Majestuosa: [[YELLOW]]{0}%
|
||||
Acrobatics.Roll.Text=**Rodado**
|
||||
Acrobatics.SkillName=ACROBACIAS
|
||||
Acrobatics.Skillup=[[YELLOW]]Habilidad de Acrobacias incrementada en {0}. Total ({1})
|
||||
Archery.Combat.DazeChance=[[RED]]Probabilidad de Aturdimiento: [[YELLOW]]{0}%
|
||||
Archery.Combat.RetrieveChance=[[RED]]Probabilidad de Recuperar Flechas: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=[[RED]]Da\u00f1o bonus por Habilidad de Tiro: [[YELLOW]]{0}
|
||||
Acrobatics.Skillup=Habilidad de Acrobacias incrementada en {0}. Total ({1})
|
||||
Archery.Combat.DazeChance=Probabilidad de Aturdimiento: [[YELLOW]]{0}%
|
||||
Archery.Combat.RetrieveChance=Probabilidad de Recuperar Flechas: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=Da\u00f1o bonus por Habilidad de Tiro: [[YELLOW]]{0}
|
||||
Archery.SubSkill.SkillShot.Name=Habilidad de Tiro
|
||||
Archery.SubSkill.SkillShot.Description=Incrementar da\u00f1o hecho con arcos
|
||||
Archery.SubSkill.Daze.Name=Aturdir (Jugadores)
|
||||
@ -24,7 +24,7 @@ Archery.SubSkill.ArrowRetrieval.Name=Recuperaci\u00f3n de Flecha
|
||||
Archery.SubSkill.ArrowRetrieval.Description=Probabilidad de recuperar flechas de los cadaveres
|
||||
Archery.Listener=Arquer\u00eda:
|
||||
Archery.SkillName=ARQUER\u00cdA
|
||||
Archery.Skillup=[[YELLOW]]Habilidad de Arquer\u00eda incrementada en {0}. Total ({1})
|
||||
Archery.Skillup=Habilidad de Arquer\u00eda incrementada en {0}. Total ({1})
|
||||
Axes.Ability.Bonus.0=Dominio del Hacha
|
||||
Axes.Ability.Bonus.1={0} de Da\u00f1o Bonus
|
||||
Axes.Ability.Bonus.2=Impacto
|
||||
@ -34,12 +34,12 @@ Axes.Ability.Bonus.5=Hacer {0} de da\u00f1o bonus a los enemigos sin armadura
|
||||
Axes.Ability.Lower=[[GRAY]]**BAJAS TU HACHA**
|
||||
Axes.Ability.Ready=[[GREEN]]**PREPARAS TU HACHA**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]\u00a1Fuiste golpeado CR\u00cdTICAMENTE!
|
||||
Axes.Combat.CritChance=[[RED]]Probabilidad de golpe cr\u00edtico: [[YELLOW]]{0}%
|
||||
Axes.Combat.CriticalHit=[[RED]]\u00a1GOLPE CR\u00cdTICO!
|
||||
Axes.Combat.CritChance=Probabilidad de golpe cr\u00edtico: [[YELLOW]]{0}%
|
||||
Axes.Combat.CriticalHit=\u00a1GOLPE CR\u00cdTICO!
|
||||
Axes.Combat.GI.Proc=[[GREEN]]**GOLPEADO CON GRAN FUERZA**
|
||||
Axes.Combat.GI.Struck=[[RED]]**GOLPEADO POR IMPACTO MAYOR**
|
||||
Axes.Combat.GI.Struck=**GOLPEADO POR IMPACTO MAYOR**
|
||||
Axes.Combat.SS.Struck=[[DARK_RED]]Golpeado mediante DIVISOR DE CRANEOS!
|
||||
Axes.Combat.SS.Length=[[RED]]Duraci\u00f3n de Parte Cr\u00e1neos: [[YELLOW]]{0}seg
|
||||
Axes.Combat.SS.Length=Duraci\u00f3n de Parte Cr\u00e1neos: [[YELLOW]]{0}seg
|
||||
Axes.SubSkill.SkullSplitter.Name=Parte Cr\u00e1neos (HABILIDAD)
|
||||
Axes.SubSkill.SkullSplitter.Description=Distribuir Da\u00f1o en el \u00c1rea de Cobertura
|
||||
Axes.SubSkill.CriticalStrikes.Name=Golpes Cr\u00edticos
|
||||
@ -52,36 +52,36 @@ Axes.SubSkill.GreaterImpact.Name=Gran Impacto
|
||||
Axes.SubSkill.GreaterImpact.Description=Hacer da\u00f1o bonus a los enemigos sin armadura
|
||||
Axes.Listener=Hachas:
|
||||
Axes.SkillName=HACHAS
|
||||
Axes.Skills.SS.Off=[[RED]]**Parte Cr\u00e1neos ha expirado**
|
||||
Axes.Skills.SS.Off=**Parte Cr\u00e1neos ha expirado**
|
||||
Axes.Skills.SS.On=[[GREEN]]**PARTE CR\u00c1NEOS ACTIVADO**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]\u00a1Tu habilidad [[YELLOW]]Parte Cr\u00e1neos [[GREEN]]est\u00e1 refrescada!
|
||||
Axes.Skills.SS.Other.Off=[[RED]]Parte Cr\u00e1neos[[GREEN]] le ha expirado a [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.Off=Parte Cr\u00e1neos[[GREEN]] le ha expirado a [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]\u00a1{0}[[DARK_GREEN]] us\u00f3 [[RED]]Parte Cr\u00e1neos!
|
||||
Axes.Skillup=[[YELLOW]]Habilidad de Hacha incrementada en {0}. Total ({1})
|
||||
Axes.Skillup=Habilidad de Hacha incrementada en {0}. Total ({1})
|
||||
Excavation.Ability.Lower=[[GRAY]]**BAJAS TU PALA**
|
||||
Excavation.Ability.Ready=[[GREEN]]**PREPARAS TU PALA**
|
||||
Excavation.SubSkill.GigaDrillBreaker.Name=Ultra Taladro Destructor (HABILIDAD)
|
||||
Excavation.SubSkill.GigaDrillBreaker.Description=Triple Drop, Tripe EXP, M\u00e1s Velocidad
|
||||
Excavation.SubSkill.TreasureHunter.Name=Cazador de Tesoros
|
||||
Excavation.SubSkill.TreasureHunter.Description=Habilidad para cavar por tesoros
|
||||
Excavation.Effect.Length=[[RED]]Duraci\u00f3n de Ultra Taladro Destructor: [[YELLOW]]{0}seg
|
||||
Excavation.Effect.Length=Duraci\u00f3n de Ultra Taladro Destructor: [[YELLOW]]{0}seg
|
||||
Excavation.Listener=Excavaci\u00f3n:
|
||||
Excavation.SkillName=EXCAVACI\u00d3N
|
||||
Excavation.Skills.GigaDrillBreaker.Off=[[RED]]**Ultra Taladro Destructor ha expirado**
|
||||
Excavation.Skills.GigaDrillBreaker.Off=**Ultra Taladro Destructor ha expirado**
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**GIGA DRILL BREAKER ACTIVADO**
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]\u00a1Tu habilidad de [[YELLOW]]Ultra Taladro Destructor [[GREEN]]fue refrescada!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=[[RED]]Ultra Taladro Destructor[[GREEN]] le ha expirado a [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=Ultra Taladro Destructor[[GREEN]] le ha expirado a [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]\u00a1{0}[[DARK_GREEN]] us\u00f3 [[RED]]Ultra Taladro Destructor!
|
||||
Excavation.Skillup=[[YELLOW]]Habilidad de Excavaci\u00f3n incrementada en {0}. Total ({1})
|
||||
Fishing.Ability.Chance=[[RED]]Probabilidad de mordisco: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=[[RED]]Cazador M\u00e1gico: [[GRAY]] **Mejora con Rango de Buscador de Tesoros**
|
||||
Excavation.Skillup=Habilidad de Excavaci\u00f3n incrementada en {0}. Total ({1})
|
||||
Fishing.Ability.Chance=Probabilidad de mordisco: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=Cazador M\u00e1gico: [[GRAY]] **Mejora con Rango de Buscador de Tesoros**
|
||||
Fishing.Ability.Locked.0=Bloqueado hasta {0}+ habilidad (sacudir)
|
||||
Fishing.Ability.Locked.1=Bloqueado hasta {0}+ HABILIDAD (PESCA DE HIELO)
|
||||
Fishing.Ability.Rank=[[RED]]Cazador de Tesoros: [[YELLOW]]Rango {0}/5
|
||||
Fishing.Ability.TH.MagicRate=[[RED]]Probabilidad de Cazador M\u00e1gico: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=[[RED]]Probabilidad de esquivar: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=[[RED]]Pesca de hielo: ve a pescar en el hielo
|
||||
Fishing.Ability.FD=[[RED]]Dieta del pescador: [[YELLOW]]Rank {0}
|
||||
Fishing.Ability.Rank=Cazador de Tesoros: [[YELLOW]]Rango {0}/5
|
||||
Fishing.Ability.TH.MagicRate=Probabilidad de Cazador M\u00e1gico: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=Probabilidad de esquivar: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=Pesca de hielo: ve a pescar en el hielo
|
||||
Fishing.Ability.FD=Dieta del pescador: [[YELLOW]]Rank {0}
|
||||
Fishing.SubSkill.TreasureHunter.Name=Cazador de Tesoros (Pasivo)
|
||||
Fishing.SubSkill.TreasureHunter.Description=Pescar objetos miscel\u00e1neos
|
||||
Fishing.SubSkill.MagicHunter.Name=Cazador M\u00e1gico
|
||||
@ -98,20 +98,20 @@ Fishing.Chance.Raining=[[BLUE]] Lluvia de Bonus
|
||||
Fishing.Listener=Pescador:
|
||||
Fishing.Ability.TH.MagicFound=[[GRAY]]Sientes un toque de magia con esta pesca...
|
||||
Fishing.SkillName=PESCADOR
|
||||
Fishing.Skillup=[[YELLOW]]Habilidad de Pescador incrementada en {0}. Total ({1})
|
||||
Herbalism.Ability.DoubleDropChance=[[RED]]Probabilidad de Doble Drop: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=[[RED]]Dieta del granjero: [[YELLOW]]Rank {0}
|
||||
Herbalism.Ability.GTe.Length=[[RED]]Duraci\u00f3n de Tierra Verde: [[YELLOW]]{0}seg
|
||||
Herbalism.Ability.GTe.NeedMore=[[RED]]Necesitas mas semillas para esparcir tierra verde
|
||||
Herbalism.Ability.GTh.Chance=[[RED]]Probabilidad de Pulgar Verde: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=[[RED]]**PULGAR VERDE FALL\u00d3**
|
||||
Herbalism.Ability.GTh.Stage=[[RED]]Etapa de pulgar verde: [[YELLOW]] Los cultivos crecen en la etapa {0}
|
||||
Fishing.Skillup=Habilidad de Pescador incrementada en {0}. Total ({1})
|
||||
Herbalism.Ability.DoubleDropChance=Probabilidad de Doble Drop: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=Dieta del granjero: [[YELLOW]]Rank {0}
|
||||
Herbalism.Ability.GTe.Length=Duraci\u00f3n de Tierra Verde: [[YELLOW]]{0}seg
|
||||
Herbalism.Ability.GTe.NeedMore=Necesitas mas semillas para esparcir tierra verde
|
||||
Herbalism.Ability.GTh.Chance=Probabilidad de Pulgar Verde: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=**PULGAR VERDE FALL\u00d3**
|
||||
Herbalism.Ability.GTh.Stage=Etapa de pulgar verde: [[YELLOW]] Los cultivos crecen en la etapa {0}
|
||||
Herbalism.Ability.GTh=[[GREEN]]**PULGAR VERDE**
|
||||
Herbalism.Ability.HylianLuck=[[RED]]Probabilidad de Suerte de Hylian: [[YELLOW]]{0}
|
||||
Herbalism.Ability.HylianLuck=Probabilidad de Suerte de Hylian: [[YELLOW]]{0}
|
||||
Herbalism.Ability.Lower=[[GRAY]]**BAJAS TU AZADA**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**PREPARASTE TU AZADA**
|
||||
Herbalism.Ability.ShroomThumb.Chance=[[RED]]Probabilidad de Pulgar Hongo: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=[[RED]]**PULGAR HONGO FALLIDO**
|
||||
Herbalism.Ability.ShroomThumb.Chance=Probabilidad de Pulgar Hongo: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=**PULGAR HONGO FALLIDO**
|
||||
Herbalism.SubSkill.GreenTerra.Name=Tierra Verde (HABILIDAD)
|
||||
Herbalism.SubSkill.GreenTerra.Description=Arar la Tierra, Triple Drops
|
||||
Herbalism.SubSkill.GreenThumb.Name=Pulgar Verde (Trigo)
|
||||
@ -131,10 +131,10 @@ Herbalism.Listener=Herbalismo:
|
||||
Herbalism.SkillName=HERBALISMO
|
||||
Herbalism.Skills.GTe.On=[[GREEN]]**TIERRA VERDE ACTIVADO**
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]\u00a1Tu habilidad [[YELLOW]]Tierra Verde [[GREEN]]est\u00e1 refrescada!
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]]Tierra Verde[[GREEN]] le ha expirado a [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.Off=Tierra Verde[[GREEN]] le ha expirado a [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]\u00a1{0}[[DARK_GREEN]] us\u00f3 [[RED]]Tierra Verde!
|
||||
Herbalism.Skillup=[[YELLOW]]Habilidad de Herbalismo incrementada en {0}. Total ({1})
|
||||
Mining.Ability.Length=[[RED]]Duraci\u00f3n de Super Destructor: [[YELLOW]]{0}seg
|
||||
Herbalism.Skillup=Habilidad de Herbalismo incrementada en {0}. Total ({1})
|
||||
Mining.Ability.Length=Duraci\u00f3n de Super Destructor: [[YELLOW]]{0}seg
|
||||
Mining.Ability.Locked.0=Bloqueado hasta {0} + HABILIDAD (MINERIA EXPLOSIVA)
|
||||
Mining.Ability.Locked.1=Bloqueado hasta {0} + HABILIDAD (MAYORES BOMBAS)
|
||||
Mining.Ability.Locked.2=Bloqueado hasta {0} + HABILIDAD (EXPERTO EN DEMOLICIONES)
|
||||
@ -150,20 +150,20 @@ Mining.SubSkill.BiggerBombs.Name=Mayores Bombas
|
||||
Mining.SubSkill.BiggerBombs.Description=Incrementa el radio de la explosi\u00f3n de TNT
|
||||
Mining.SubSkill.DemolitionsExpertise.Name=Experto en Demoliciones
|
||||
Mining.SubSkill.DemolitionsExpertise.Description=Reduce el da\u00f1o de las explosiones de TNT
|
||||
Mining.Effect.Decrease=[[RED]]Da\u00f1o de Experto en Demolici\u00f3n Decrementado: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=[[RED]]Probabilidad de Doble Drop: [[YELLOW]]{0}
|
||||
Mining.Effect.Decrease=Da\u00f1o de Experto en Demolici\u00f3n Decrementado: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=Probabilidad de Doble Drop: [[YELLOW]]{0}
|
||||
Mining.Listener=Miner\u00eda:
|
||||
Mining.SkillName=MINER\u00cdA
|
||||
Mining.Skills.SuperBreaker.Off=[[RED]]**S\u00faper Destructor ha expirado**
|
||||
Mining.Skills.SuperBreaker.Off=**S\u00faper Destructor ha expirado**
|
||||
Mining.Skills.SuperBreaker.On=[[GREEN]]**S\u00daPER DESTRUCTOR ACTIVADO**
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[RED]]S\u00faper Destructor[[GREEN]] le ha expirado a [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.Off=S\u00faper Destructor[[GREEN]] le ha expirado a [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.On=[[GREEN]]\u00a1{0}[[DARK_GREEN]] us\u00f3 [[RED]]Super Destructor!
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]\u00a1Tu habilidad de [[YELLOW]]S\u00faper Destructor [[GREEN]]est\u00e1 refrescada!
|
||||
Mining.Skillup=[[YELLOW]]Habilidad de Miner\u00eda incrementada en {0}. Total ({1})
|
||||
Mining.Skillup=Habilidad de Miner\u00eda incrementada en {0}. Total ({1})
|
||||
Mining.Blast.Boom=[[GRAY]]**BOOM**
|
||||
Mining.Blast.Effect=+ {0} mineral de rendimiento, - {1} rendimiento de los desechos, {2} x drops
|
||||
Mining.Blast.Radius.Increase=[[RED]]Incrementado Radio de Explosi\u00f3n: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=[[RED]]Miner\u00eda Explosiva: [[YELLOW]] Rango {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Radius.Increase=Incrementado Radio de Explosi\u00f3n: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=Miner\u00eda Explosiva: [[YELLOW]] Rango {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Other.On=[[GREEN]]\u00a1{0}[[DARK_GREEN]] us\u00f3 [[RED]]Miner\u00eda Explosiva!
|
||||
Mining.Blast.Refresh=[[GREEN]]\u00a1Tu habilidad de [[YELLOW]]Miner\u00eda Explosiva [[GREEN]]est\u00e1 refrescada!
|
||||
Repair.SubSkill.Repair.Name=Reparaci\u00f3n
|
||||
@ -194,33 +194,33 @@ Repair.Skills.AdeptDiamond=[[DARK_RED]]No tienes la suficiente habilidad para re
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]No tienes la suficiente habilidad para reparar Oro.
|
||||
Repair.Skills.AdeptIron=[[DARK_RED]]No tienes la suficiente habilidad para reparar Hierro.
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]No tienes la suficiente habilidad para reparar Piedra.
|
||||
Repair.Skills.Adept=[[RED]]Debes ser nivel [[YELLOW]]{0}[[RED]] para reparar [[YELLOW]]{1}
|
||||
Repair.Skills.Adept=Debes ser nivel [[YELLOW]]{0}[[RED]] para reparar [[YELLOW]]{1}
|
||||
Repair.Skills.FeltEasy=[[GRAY]]Eso ha sido f\u00e1cil.
|
||||
Repair.Skills.FullDurability=[[GRAY]]Esto est\u00e1 nuevo.
|
||||
Repair.Skills.SalvageSuccess=[[GRAY]]Objeto recuperado!
|
||||
Repair.Skills.NotFullDurability=[[DARK_RED]] No se puede rescatar los elementos da\u00f1ados.
|
||||
Repair.Skills.Mastery=[[RED]]Maestr\u00eda de la Reparaci\u00f3n: [[YELLOW]]{0} de durabilidad adicional restaurada
|
||||
Repair.Skills.Mastery=Maestr\u00eda de la Reparaci\u00f3n: [[YELLOW]]{0} de durabilidad adicional restaurada
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]No puedes reparar items apilados.
|
||||
Repair.Skills.Super.Chance=[[RED]]Probabilidad de Super Reparaci\u00f3n: [[YELLOW]]{0}
|
||||
Repair.Skillup=[[YELLOW]]Habilidad de Reparaci\u00f3n incrementada en {0}. Total ({1})
|
||||
Repair.Skills.Super.Chance=Probabilidad de Super Reparaci\u00f3n: [[YELLOW]]{0}
|
||||
Repair.Skillup=Habilidad de Reparaci\u00f3n incrementada en {0}. Total ({1})
|
||||
Repair.Pretty.Name=Reparar
|
||||
Salvage.Pretty.Name=Objetos salvados
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]Probabilidad de Degradaci\u00f3n en FA: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]Tasa de \u00c9xito de FA: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Downgrade=[[RED]]El poder Arcano de este objeto ha disminu\u00eddo.
|
||||
Repair.Arcane.Fail=[[RED]]El objeto ha perdido permanentemente sus poderes Arcanos
|
||||
Repair.Arcane.Lost=[[RED]]No tienes habilidad suficiente para mantener ning\u00fan tipo de encantamientos.
|
||||
Repair.Arcane.Downgrade=El poder Arcano de este objeto ha disminu\u00eddo.
|
||||
Repair.Arcane.Fail=El objeto ha perdido permanentemente sus poderes Arcanos
|
||||
Repair.Arcane.Lost=No tienes habilidad suficiente para mantener ning\u00fan tipo de encantamientos.
|
||||
Repair.Arcane.Perfect=[[GREEN]]Has logrado mantener las energ\u00edas Arcanas de este objeto.
|
||||
Repair.Arcane.Rank=[[RED]]Forja Arcana: [[YELLOW]]Rango {0}/4
|
||||
Repair.Arcane.Rank=Forja Arcana: [[YELLOW]]Rango {0}/4
|
||||
Swords.Ability.Lower=[[GRAY]]**BAJAS TU ESPADA**
|
||||
Swords.Ability.Ready=[[GREEN]]**PREPARASTE TU ESPADA**
|
||||
Swords.Combat.Bleed.Chance=[[RED]]Probabilidad de Sangramiento: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=[[RED]]Duraci\u00f3n del Sangrado: [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Chance=Probabilidad de Sangramiento: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=Duraci\u00f3n del Sangrado: [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Note=[[GRAY]]NOTA: [[YELLOW]]1 Tick sucede cada 2 segundos
|
||||
Swords.Combat.Bleeding.Started=[[GREEN]]**ENEMIGO SANGRANDO**
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]\u00a1El sangrado ha [[GREEN]]parado[[GRAY]]!
|
||||
Swords.Combat.Bleeding=[[GREEN]]**ENEMIGO SANGRANDO**
|
||||
Swords.Combat.Counter.Chance=[[RED]]Probabilidad de Contra Ataque: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Chance=Probabilidad de Contra Ataque: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Hit=[[DARK_RED]]\u00a1Alcanzado por un contra ataque!
|
||||
Swords.Combat.Countered=[[GREEN]]**CONTRA-ATACADO**
|
||||
Swords.Combat.SS.Struck=[[DARK_RED]]\u00a1Golpeado por ATAQUE DENTADO!
|
||||
@ -234,13 +234,13 @@ Swords.SubSkill.Bleed.Name=Sangrado
|
||||
Swords.SubSkill.Bleed.Description=Aplicar sangrado que da\u00f1a con el tiempo
|
||||
Swords.Listener=Espadas:
|
||||
Swords.SkillName=ESPADAS
|
||||
Swords.Skills.SS.Off=[[RED]]**Ataque Dentado ha expirado**
|
||||
Swords.Skills.SS.Off=**Ataque Dentado ha expirado**
|
||||
Swords.Skills.SS.On=[[GREEN]]**ATAQUE DENTADO ACTIVADO**
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]\u00a1Tu habilidad de [[YELLOW]]Golpe Dentado [[GREEN]]fue refrescada!
|
||||
Swords.Skills.SS.Other.Off=[[RED]]Ataque Dentado[[GREEN]] le ha expirado a [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.Off=Ataque Dentado[[GREEN]] le ha expirado a [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]\u00a1{0}[[DARK_GREEN]] us\u00f3 [[RED]]Ataque Dentado!
|
||||
Swords.Skillup=[[YELLOW]]Skill de espada se incremento en {0}. Total ({1})
|
||||
Swords.SS.Length=[[RED]]Duraci\u00f3n del Ataque Dentado: [[YELLOW]]{0}s
|
||||
Swords.Skillup=Skill de espada se incremento en {0}. Total ({1})
|
||||
Swords.SS.Length=Duraci\u00f3n del Ataque Dentado: [[YELLOW]]{0}s
|
||||
Taming.Ability.Bonus.0=Consciente del Entorno
|
||||
Taming.Ability.Bonus.1=Lobos evitan peligros
|
||||
Taming.Ability.Bonus.2=Piel Gruesa
|
||||
@ -259,7 +259,7 @@ Taming.Ability.Locked.2=Bloqueado hasta {0} + HABILIDAD (A PRUEBA DE GOLPES)
|
||||
Taming.Ability.Locked.3=Bloqueado hasta {0} + HABILIDAD (GARRAS AFILADAS)
|
||||
Taming.Ability.Locked.4=Bloqueado hasta {0} + HABILIDAD (SERVICIO DE COMIDA RAPIDA)
|
||||
Taming.Ability.Locked.5=Bloqueado hasta {0}+ HABILIDAD (SABUESO DIVINO)
|
||||
Taming.Combat.Chance.Gore=[[RED]]Probabilidad de Gore: [[YELLOW]]{0}
|
||||
Taming.Combat.Chance.Gore=Probabilidad de Gore: [[YELLOW]]{0}
|
||||
Taming.SubSkill.BeastLore.Name=Conocimiento de la Bestia
|
||||
Taming.SubSkill.BeastLore.Description=Golpear con un hueso para inspeccionar los lobos y ocelotes
|
||||
Taming.SubSkill.ShockProof.Name=A Prueba de Golpes
|
||||
@ -284,19 +284,19 @@ Taming.SubSkill.ThickFur.Description=Da\u00f1o Reducido, Resistencia al Fuego
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]T\u00fa lobo se escabulle hacia t\u00ed...
|
||||
Taming.Listener=Domador:
|
||||
Taming.SkillName=DOMADOR
|
||||
Taming.Skillup=[[YELLOW]]Habilidad de Domador incrementada en {0}. Total ({1})
|
||||
Taming.Skillup=Habilidad de Domador incrementada en {0}. Total ({1})
|
||||
Taming.Summon.Complete=[[GREEN]]Invocaci\u00f3n completada
|
||||
Taming.Summon.Fail.Ocelot=[[RED]]Tienes demasiados ocelotes cerca como para convocar m\u00e1s.
|
||||
Taming.Summon.Fail.Wolf=[[RED]]Tienes demasiados lobos cerca como para convocar m\u00e1s.
|
||||
Taming.Summon.Fail.Horse=[[RED]]Tienes cerca demasiados caballos para poder invocar a uno.
|
||||
Taming.Summon.Fail.Ocelot=Tienes demasiados ocelotes cerca como para convocar m\u00e1s.
|
||||
Taming.Summon.Fail.Wolf=Tienes demasiados lobos cerca como para convocar m\u00e1s.
|
||||
Taming.Summon.Fail.Horse=Tienes cerca demasiados caballos para poder invocar a uno.
|
||||
Taming.Summon.Name.Format={0}s {1}
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]Duraci\u00f3n de Enloquecido: [[YELLOW]]{0}seg
|
||||
Unarmed.Ability.Berserk.Length=Duraci\u00f3n de Enloquecido: [[YELLOW]]{0}seg
|
||||
Unarmed.Ability.Bonus.0=Estilo del Pu\u00f1o de Hierro
|
||||
Unarmed.Ability.Bonus.1=+{0} Mejora de DA\u00d1O
|
||||
Unarmed.Ability.Chance.ArrowDeflect=[[RED]]Probabilidad de Desviar Flechas: [[YELLOW]]{0}%
|
||||
Unarmed.Ability.Chance.Disarm=[[RED]]Probabilidad de Desarmar: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=[[RED]]Probabilidad de agarre de hierro: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=[[RED]] Tu oponente tiene agarre de hierro!
|
||||
Unarmed.Ability.Chance.ArrowDeflect=Probabilidad de Desviar Flechas: [[YELLOW]]{0}%
|
||||
Unarmed.Ability.Chance.Disarm=Probabilidad de Desarmar: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=Probabilidad de agarre de hierro: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker= Tu oponente tiene agarre de hierro!
|
||||
Unarmed.Ability.IronGrip.Defender=[[GREEN]]Tu agarre de hierro te salvo de ser desarmado!
|
||||
Unarmed.Ability.Lower=[[GRAY]]**BAJAS TUS PU\u00d1OS**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**LEVANTASTE LA GUARDIA**
|
||||
@ -312,16 +312,16 @@ Unarmed.SubSkill.IronGrip.Name=Agarre de hierro
|
||||
Unarmed.SubSkill.IronGrip.Description=Te previene de ser desarmado
|
||||
Unarmed.Listener=Desarmado:
|
||||
Unarmed.SkillName=DESARMADO
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**Enloquecido ha expirado**
|
||||
Unarmed.Skills.Berserk.Off=**Enloquecido ha expirado**
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**ENLOQUECIDO ACTIVADO**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]]Enloquecido[[GREEN]] le ha expirado a [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.Off=Enloquecido[[GREEN]] le ha expirado a [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]\u00a1{0}[[DARK_GREEN]] us\u00f3 [[RED]]Enloquecido!
|
||||
Unarmed.Skills.Berserk.Refresh=[[GREEN]]\u00a1T\u00fa habilidad [[YELLOW]]Enloquecido [[GREEN]]est\u00e1 refrescada!
|
||||
Unarmed.Skillup=[[YELLOW]]Habilidad de Desarmado incrementada en {0}. Total ({1})
|
||||
Unarmed.Skillup=Habilidad de Desarmado incrementada en {0}. Total ({1})
|
||||
Woodcutting.Ability.0=Soplador de Hojas
|
||||
Woodcutting.Ability.1=Remover hojas
|
||||
Woodcutting.Ability.Chance.DDrop=[[RED]]Probabilidad de Doble Drop: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=[[RED]]Duraci\u00f3n de Ca\u00edda de \u00c1rbol: [[YELLOW]]{0}seg
|
||||
Woodcutting.Ability.Chance.DDrop=Probabilidad de Doble Drop: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=Duraci\u00f3n de Ca\u00edda de \u00c1rbol: [[YELLOW]]{0}seg
|
||||
Woodcutting.Ability.Locked.0=Bloqueado hasta {0} + HABILIDAD (soplador de hojas)
|
||||
Woodcutting.SubSkill.TreeFeller.Name=Ca\u00edda de \u00c1rbol (HABILIDAD)
|
||||
Woodcutting.SubSkill.TreeFeller.Description=Hace que el \u00e1rbol explote
|
||||
@ -331,91 +331,91 @@ Woodcutting.SubSkill.HarvestLumber.Name=Doble Drops
|
||||
Woodcutting.SubSkill.HarvestLumber.Description=El doble del bot\u00edn normal
|
||||
Woodcutting.Listener=Le\u00f1ador:
|
||||
Woodcutting.SkillName=LE\u00d1ADOR
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]]**Caida de \u00c1rbol ha expirado**
|
||||
Woodcutting.Skills.TreeFeller.Off=**Caida de \u00c1rbol ha expirado**
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**CA\u00cdDA DE \u00c1RBOL ACTIVADA**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]\u00a1Tu habilidad [[YELLOW]]Ca\u00edda de \u00c1rbol [[GREEN]]est\u00e1 refrescada!
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]]Ca\u00edda de \u00c1rbol[[GREEN]] le ha expirado a [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=Ca\u00edda de \u00c1rbol[[GREEN]] le ha expirado a [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]\u00a1{0}[[DARK_GREEN]] us\u00f3 [[RED]]Ca\u00edda de \u00c1rbol!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]\u00a1TU HACHA EXPLOT\u00d3 EN MILES DE PEDAZOS!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]\u00a1Ese \u00e1rbol es demasiado grande!
|
||||
Woodcutting.Skillup=[[YELLOW]]Habilidad de Le\u00f1ador incrementada en {0}. Total ({1})
|
||||
Woodcutting.Skills.TreeFeller.Splinter=\u00a1TU HACHA EXPLOT\u00d3 EN MILES DE PEDAZOS!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=\u00a1Ese \u00e1rbol es demasiado grande!
|
||||
Woodcutting.Skillup=Habilidad de Le\u00f1ador incrementada en {0}. Total ({1})
|
||||
Ability.Generic.Refresh=[[GREEN]]**\u00a1HABILIDADES REFRESCADAS!**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
Combat.ArrowDeflect=[[WHITE]]**FLECHA DESVIADA**
|
||||
Combat.BeastLore=[[GREEN]]**CONOCIMIENTO DE LA BESTIA**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]Salud ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]Due\u00f1o ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**MORDISCO**
|
||||
Combat.StruckByGore=[[RED]]**FUISTE MORDISQUEADO**
|
||||
Combat.StruckByGore=**FUISTE MORDISQUEADO**
|
||||
Combat.TargetDazed=El objetivo fue [[DARK_RED]]aturdido
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]Est\u00e1s confuso. Te sientes mareado.
|
||||
mcMMO.Description=[[DARK_AQUA]]Sobre el proyecto[[YELLOW]]mcMMO[[DARK_AQUA]]:,[[GOLD]]mcMMO es un mod RPG de[[RED]codigo abierto[[GOLD]] creado en Febrero de 2011, [[GOLD]]por [[BLUE]]nossr50[[GOLD]]. La meta es proveer una experiencia igual a la de los RPG.,[[DARK_AQUA]]Consejos:,[[GOLD]] - [[GREEN]]Usa [[RED]]/mcmmo help[[GREEN]] para ver los comandos,[[GOLD]] - [[GREEN]]Teclea [[RED]]/SKILLNAME[[GREEN]]para ver informacion detalada de las habilidades,[[DARK_AQUA]]Desarrolladores:,[[GOLD]] - [[GREEN]]nossr50 [[BLUE]](Founder & Project Lead),[[GOLD]] - [[GREEN]]GJ [[BLUE]](Former Project Lead),[[GOLD]] - [[GREEN]]NuclearW [[BLUE]](Developer),[[GOLD]] - [[GREEN]]bm01 [[BLUE]](Developer),[[GOLD]] - [[GREEN]]TfT_02 [[BLUE]](Developer),[[GOLD]] - [[GREEN]]Glitchfinder [[BLUE]](Developer),[[GOLD]] - [[GREEN]]t00thpick1 [[BLUE]](Developer),[[DARK_AQUA]]Useful Links:,[[GOLD]] - [[GREEN]]https://github.com/mcMMO-Dev/mcMMO/issues[[GOLD]] Reporte de fallos,[[GOLD]] - [[GREEN]]#mcmmo @ irc.esper.net[[GOLD]] IRC Chat,
|
||||
Commands.addlevels.AwardAll.1=[[GREEN]]Fuistes recompensado con {0} niveles en todas las habilidades!
|
||||
Commands.addlevels.AwardAll.2=[[RED]]Todas las Skins han sido mofificadas por {0}.
|
||||
Commands.addlevels.AwardAll.2=Todas las Skins han sido mofificadas por {0}.
|
||||
Commands.addlevels.AwardSkill.1=[[GREEN]]Fuistes recompensado con {0} niveles en {1}!
|
||||
Commands.addlevels.AwardSkill.2=[[RED]]{0} ha sido modificado por {1}.
|
||||
Commands.addlevels.AwardSkill.2={0} ha sido modificado por {1}.
|
||||
Commands.addxp.AwardAll=[[GREEN]]Fuistes recompensado con {0} experiencia en todas las habilidades!
|
||||
Commands.addxp.AwardSkill=[[GREEN]]Fuistes recompensado con {0} experiencia en {1}!
|
||||
Commands.Ability.Off=Habilidades [[RED]]desactivadas
|
||||
Commands.Ability.On=Habilidades [[GREEN]]activadas
|
||||
Commands.AdminChat.Off=Chat s\u00f3lo para Admins [[RED]]desactivado
|
||||
Commands.AdminChat.On=Chat s\u00f3lo para Admins [[GREEN]]activado
|
||||
Commands.AdminToggle=[[RED]]- Alternar chat de admin
|
||||
Commands.AdminToggle=- Alternar chat de admin
|
||||
Commands.Chat.Console=*Consola*
|
||||
Commands.Disabled=[[RED]]Este comando est\u00e1 deshabilitado.
|
||||
Commands.DoesNotExist=[[RED]]\u00a1El jugador no existe en la base de datos!
|
||||
Commands.GodMode.Disabled=[[YELLOW]]mcMMO Modo Dios Desactivado
|
||||
Commands.GodMode.Enabled=[[YELLOW]]mcMMO Modo Dios Activado
|
||||
Commands.Disabled=Este comando est\u00e1 deshabilitado.
|
||||
Commands.DoesNotExist=\u00a1El jugador no existe en la base de datos!
|
||||
Commands.GodMode.Disabled=mcMMO Modo Dios Desactivado
|
||||
Commands.GodMode.Enabled=mcMMO Modo Dios Activado
|
||||
Commands.GodMode.Forbidden=[mcMMO] No se permite Modo Dios en este mundo (Ver permisos)
|
||||
Commands.Inspect=<jugador> [[RED]]-Ver informaci\u00f3n detallada del jugador
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]Invitaci\u00f3n Aceptada. Te uniste al grupo {0}
|
||||
Commands.Invite.Success=[[GREEN]]Invitaci\u00f3n enviada satisfactoriamente
|
||||
Commands.Leaderboards=<habilidad> <p\u00e1gina> [[RED]]- Tabla de posiciones
|
||||
Commands.mcc.Header=[[RED]]---[][[YELLOW]]Comandos mcMMO[[RED]][]---
|
||||
Commands.mcgod=[[RED]]- Alternar Modo Dios
|
||||
Commands.mchud.Invalid=[[RED]]Ese no es un tipo valido de HUD.
|
||||
Commands.mcc.Header=---[][[YELLOW]]Comandos mcMMO[[RED]][]---
|
||||
Commands.mcgod=- Alternar Modo Dios
|
||||
Commands.mchud.Invalid=Ese no es un tipo valido de HUD.
|
||||
Commands.mcpurge.Success=[[GREEN]]La base de datos fue purgada exitosamente!
|
||||
Commands.mcrank.Heading=[[GOLD]]-=CLASIFICACION PERSONAL=-
|
||||
Commands.mcrank.Overall=[[YELLOW]]Conjunto[[GREEN]] - [[GOLD]]Clasificacion [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=[[RED]]OBJETIVO: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill=[[YELLOW]]{0}[[GREEN]] - [[GOLD]]Clasificacion [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Overall=Conjunto[[GREEN]] - [[GOLD]]Clasificacion [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=OBJETIVO: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill={0}[[GREEN]] - [[GOLD]]Clasificacion [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Unranked=[[WHITE]]Sin clasificar
|
||||
Commands.mcrefresh.Success=[[RED]]{0}\'\'s del tiempo de reutilizacion ha sido renovado.
|
||||
Commands.mcrefresh.Success={0}\'\'s del tiempo de reutilizacion ha sido renovado.
|
||||
Commands.mcremove.Success=[[GREEN]]{0} fue eliminado de la base de datos exitosamente!!
|
||||
Commands.mctop.Tip=[[GOLD]]Tip: Usa [[RED]]/mcrank[[GOLD]] para ver todas tus estadisticas!
|
||||
Commands.mmoedit=[jugador] <habilidad> <nuevo valor> [[RED]] - Modificar habilidad
|
||||
Commands.mmoedit.AllSkills.1=[[GREEN]]tu nivel en todas las habilidades fue cambiado a {0}!
|
||||
Commands.mmoedit.Modified.1=[[GREEN]]Tu nivel en {0} fue modificado a {1}!
|
||||
Commands.mmoedit.Modified.2=[[RED]]{0} ha sido modificado por {1}.
|
||||
Commands.mcconvert.Database.Same=[[RED]]Ya estas usando la base de datos {0}
|
||||
Commands.mcconvert.Database.InvalidType=[[RED]]{0} no en un tipo de base de datos valido.
|
||||
Commands.mmoedit.Modified.2={0} ha sido modificado por {1}.
|
||||
Commands.mcconvert.Database.Same=Ya estas usando la base de datos {0}
|
||||
Commands.mcconvert.Database.InvalidType={0} no en un tipo de base de datos valido.
|
||||
Commands.mcconvert.Database.Start=[[GRAY]]Comenzando conversion de {0} a {1}...
|
||||
Commands.mcconvert.Database.Finish=[[GRAY]]Migracion de la base de datos completada; La base datos {1} ahora tiene todos los datos de la base de datos {0}.
|
||||
Commands.mmoshowdb=[[YELLOW]]La base de datos usada actualmente es [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=[[RED]]Tipo de formula desconocidaa Los tipos validos son: [[GREEN]]LINEAR [[RED]]y [[GREEN]]EXPONENTIAL.
|
||||
Commands.mcconvert.Experience.Same=[[RED]]Ya esta usando el tipo de formula {0}
|
||||
Commands.mmoshowdb=La base de datos usada actualmente es [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=Tipo de formula desconocidaa Los tipos validos son: [[GREEN]]LINEAR [[RED]]y [[GREEN]]EXPONENTIAL.
|
||||
Commands.mcconvert.Experience.Same=Ya esta usando el tipo de formula {0}
|
||||
Commands.mcconvert.Experience.Start=[[GRAY]]Comenznado converso de la curva {0} a {1}
|
||||
Commands.mcconvert.Experience.Finish=[[GRAY]]Formula de conversion completa; ahora usando la curva XP {0}.
|
||||
Commands.ModDescription=[[RED]]- Lea la descripci\u00f3n breve del mod
|
||||
Commands.ModDescription=- Lea la descripci\u00f3n breve del mod
|
||||
Commands.NoConsole=Este comando no es soportado desde la consola.
|
||||
Commands.Notifications.Off=Notificaciones de habilidad [[RED]]desactivadas
|
||||
Commands.Notifications.On=Notificaciones de habilidad [[GREEN]]activadas
|
||||
Commands.Offline=[[RED]]Este comando no sirve para jugadores desconectados
|
||||
Commands.Offline=Este comando no sirve para jugadores desconectados
|
||||
Commands.Other=[[GREEN]]--OTROS COMANDOS--
|
||||
Commands.Party.Header=[[RED]]-----[][[GREEN]]GRUPO[[RED]][]-----
|
||||
Commands.Party.Header=-----[][[GREEN]]GRUPO[[RED]][]-----
|
||||
Commands.Party.Status=[[DARK_GRAY]]NOMBRE: [[WHITE]]{0} {1}
|
||||
Commands.Party.ShareMode=[[DARK_GRAY]]MODO COMPARTIR:
|
||||
Commands.Party.ItemShare=[[GRAY]]OBJETO [[DARK_AQUA]]({0})
|
||||
Commands.Party.ExpShare=[[GRAY]]EXP [[DARK_AQUA]]({0})
|
||||
Commands.Party.ItemShareCategories=[[DARK_GRAY]]Compartiendo objetos: [[GRAY]][[ITALIC]]{0}
|
||||
Commands.Party.MembersNear=[[DARK_GRAY]]CERCA DE TI [[DARK_AQUA]]{0}[[DARK_GRAY]]/[[DARK_AQUA]]{1}
|
||||
Commands.Party.Accept=[[RED]]- Aceptar invitaci\u00f3n al grupo
|
||||
Commands.Party.Accept=- Aceptar invitaci\u00f3n al grupo
|
||||
Commands.Party.Chat.Off=S\u00f3lo chat de grupo [[RED]]desactivado
|
||||
Commands.Party.Chat.On=S\u00f3lo chat de grupo [[RED]]activado
|
||||
Commands.Party.Commands=[[GREEN]]--COMANDOS DEL GRUPO--
|
||||
Commands.Party.Invite.0=[[RED]]ATENCI\u00d3N: [[GREEN]]Fuiste invitado al grupo {0} por {1}
|
||||
Commands.Party.Invite.1=[[YELLOW]]Teclea [[GREEN]]/party accept[[YELLOW]] para aceptar la invitacion al grupo
|
||||
Commands.Party.Invite.0=ATENCI\u00d3N: [[GREEN]]Fuiste invitado al grupo {0} por {1}
|
||||
Commands.Party.Invite.1=Teclea [[GREEN]]/party accept[[YELLOW]] para aceptar la invitacion al grupo
|
||||
Commands.Party.Invite=[RED]]- Invitacion de grupo enviada
|
||||
Commands.Party.Join=[[GRAY]]Unido al grupo: {0}
|
||||
Commands.Party.Create=[[GRAY]]Grupo creado: {0}
|
||||
@ -423,40 +423,40 @@ Commands.Party.Rename=[[GRAY]]el nombre del grupo ha cambiado a: [[WHITE]]{0}
|
||||
Commands.Party.SetSharing=[[GRAY]]Grupo {0} compartir establecido a: [[DARK_AQUA]]{1}
|
||||
Commands.Party.ToggleShareCategory=[[GRAY]]Objetos de grupo compartiendo por[[GOLD]]{0} [[GRAY]]ha sido [[DARK_AQUA]]{1}
|
||||
Commands.Party.AlreadyExists=[[DARK_RED]]El grupo {0} ya existe!
|
||||
Commands.Party.Kick=[[RED]]\u00a1Fuiste expulsado del grupo {0}!
|
||||
Commands.Party.Leave=[[RED]]Abandonaste el grupo
|
||||
Commands.Party.Members.Header=[[RED]]-----[][[GREEN]]MIEMBROS[[RED]][]-----
|
||||
Commands.Party.None=[[RED]]No est\u00e1s en un grupo.
|
||||
Commands.Party.Quit=[[RED]]- Abandona tu grupo actual
|
||||
Commands.Party.Kick=\u00a1Fuiste expulsado del grupo {0}!
|
||||
Commands.Party.Leave=Abandonaste el grupo
|
||||
Commands.Party.Members.Header=-----[][[GREEN]]MIEMBROS[[RED]][]-----
|
||||
Commands.Party.None=No est\u00e1s en un grupo.
|
||||
Commands.Party.Quit=- Abandona tu grupo actual
|
||||
Commands.Party.Teleport=<jugador> [[RED]]- Teletransportarse al miembro del grupo
|
||||
Commands.Party.Toggle=[[RED]]- Alternar chat de grupo
|
||||
Commands.Party.1=[[RED]]- Nuevo grupo creado
|
||||
Commands.Party.Toggle=- Alternar chat de grupo
|
||||
Commands.Party.1=- Nuevo grupo creado
|
||||
Commands.Party.2=[RED]]- Unete a un grupo de jugadores
|
||||
Commands.ptp.Enabled=Teletransportacion de grupo [[GREEN]]activada
|
||||
Commands.ptp.Disabled=Teletransportacion de grupo [[RED]]desactivada
|
||||
Commands.ptp.NoRequests=[[RED]]No tienes ninguna peticion de teletransporte ahora mismo
|
||||
Commands.ptp.NoWorldPermissions=[[RED]][mcMMO] No tienes permiso para teletransportarte al mundo {0}.
|
||||
Commands.ptp.Request1=[[YELLOW]]{0} [[GREEN]]ha pedido teletransportarse a tu posicion.
|
||||
Commands.ptp.NoRequests=No tienes ninguna peticion de teletransporte ahora mismo
|
||||
Commands.ptp.NoWorldPermissions=[mcMMO] No tienes permiso para teletransportarte al mundo {0}.
|
||||
Commands.ptp.Request1={0} [[GREEN]]ha pedido teletransportarse a tu posicion.
|
||||
Commands.ptp.Request2=[[GREEN]]Para teletransportarse, teclea [[YELLOW]]/ptp accept. [[GREEN]]La peticion expira en [[RED]]{0} [[GREEN]]segundos.
|
||||
Commands.ptp.AcceptAny.Enabled=Confirmacion de la peticion de teletransportacion del grupo [[GREEN]]habilitada
|
||||
Commands.ptp.AcceptAny.Disabled=Confirmacion de la peticion de teletransportacion del grupo [[GREEN]]deshabilitada
|
||||
Commands.ptp.RequestExpired=[[RED]]La peticion de teletransporte del grupo ha expirado!
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO-- Tabla de L\u00edderes: [[BLUE]]Nivel de Poder
|
||||
Commands.ptp.RequestExpired=La peticion de teletransporte del grupo ha expirado!
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO-- Tabla de L\u00edderes: [[BLUE]]Nivel de Poder
|
||||
Commands.PowerLevel.Capped=[[DARK_RED]]NIVEL DE PODER: [[GREEN]]{0} [[DARK_RED]]MAXIMO PODER: [[YELLOW]]{1}
|
||||
Commands.PowerLevel=[[DARK_RED]]NIVEL DE PODER: [[GREEN]]{0}
|
||||
Commands.Reset.All=[[GREEN]]Todos los niveles de tus habilidades se resetearon correctamente
|
||||
Commands.Reset.Single=[GREEN]]Tu {0} nivel de skill se reseteo correctamente.
|
||||
Commands.Reset=[[RED]]Resetea el nivel de una habilidad a 0
|
||||
Commands.Skill.Invalid=[[RED]]\u00a1Esa no es una habilidad v\u00e1lida!
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--mcMMO-- Tabla de L\u00edderes: [[BLUE]]{0}
|
||||
Commands.SkillInfo=[[RED]]- Ver informacion detallada sobre habilidades
|
||||
Commands.Reset=Resetea el nivel de una habilidad a 0
|
||||
Commands.Skill.Invalid=\u00a1Esa no es una habilidad v\u00e1lida!
|
||||
Commands.Skill.Leaderboard=--mcMMO-- Tabla de L\u00edderes: [[BLUE]]{0}
|
||||
Commands.SkillInfo=- Ver informacion detallada sobre habilidades
|
||||
Commands.Stats.Self=TUS ESTAD\u00cdSTICAS
|
||||
Commands.Stats=[[RED]]- Ver tus estad\u00edsticas de mcMMO
|
||||
Commands.ToggleAbility=[[RED]]- Alternar activaci\u00f3n de habilidades con click derecho
|
||||
Commands.Usage.0=[[RED]]El uso correcto es /{0}
|
||||
Commands.Usage.1=[[RED]]El uso adecuado es /{0} {1}
|
||||
Commands.Usage.2=[[RED]]El uso correcto es /{0} {1} {2}
|
||||
Commands.Usage.3=[[RED]]El uso correcto es /{0} {1} {2} {3}
|
||||
Commands.Stats=- Ver tus estad\u00edsticas de mcMMO
|
||||
Commands.ToggleAbility=- Alternar activaci\u00f3n de habilidades con click derecho
|
||||
Commands.Usage.0=El uso correcto es /{0}
|
||||
Commands.Usage.1=El uso adecuado es /{0} {1}
|
||||
Commands.Usage.2=El uso correcto es /{0} {1} {2}
|
||||
Commands.Usage.3=El uso correcto es /{0} {1} {2} {3}
|
||||
Commands.Usage.FullClassName=Clase
|
||||
Commands.Usage.Level=Nivel
|
||||
Commands.Usage.Message=mensaje
|
||||
@ -467,51 +467,51 @@ Commands.Usage.Player=Jugador
|
||||
Commands.Usage.Rate=Velocidad
|
||||
Commands.Usage.Skill=Habilidad
|
||||
Commands.Usage.XP=XP
|
||||
mcMMO.NoInvites=[[RED]]No tienes invitaciones en este momento
|
||||
mcMMO.NoInvites=No tienes invitaciones en este momento
|
||||
mcMMO.NoPermission=[[DARK_RED]]Permisos insuficientes.
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]Si no tienes acceso a una habilidad no ser\u00e1 mostrada aqu\u00ed.
|
||||
Party.Forbidden=[mcMMO] No se permiten grupos en este mundo (Ver permisos)
|
||||
Party.Help.0=[[RED]]El uso adecuado es[[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=[[RED]]Para crear un grupo, usa [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.2=[[RED]]Consulta [[DARK_AQUA]]{0} [[RED]]para mas informacion
|
||||
Party.Help.3=[[RED]]Usa [[DARK_AQUA]]{0} <player> [password] [[RED]]para entrar o [[DARK_AQUA]]{1} [[RED]]salir
|
||||
Party.Help.4=[[RED]]Para bloquear o desbloquear tu grupo, usa [[DARK_AQUA]]{0}
|
||||
Party.Help.5=[[RED]]Para proteger el grupo con contrase\u00f1a, usa [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=[[RED]]Para echar a un jugador del grupo usa, use [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.7=[[RED]]Para pasar el lider a otro, usa [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=[[RED]]Para eliminar tu grupo, usa [[DARK_AQUA]]{0}
|
||||
Party.Help.9=[[RED]]Usa [[DARK_AQUA]]{0} [[RED]]para compartir objetos con los miembros del grupo
|
||||
Party.Help.10=[[RED]]Usa [[DARK_AQUA]]{0} [[RED]]para activar la XP compartida con los miembros del grupo.
|
||||
Party.Help.0=El uso adecuado es[[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=Para crear un grupo, usa [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.2=Consulta [[DARK_AQUA]]{0} [[RED]]para mas informacion
|
||||
Party.Help.3=Usa [[DARK_AQUA]]{0} <player> [password] [[RED]]para entrar o [[DARK_AQUA]]{1} [[RED]]salir
|
||||
Party.Help.4=Para bloquear o desbloquear tu grupo, usa [[DARK_AQUA]]{0}
|
||||
Party.Help.5=Para proteger el grupo con contrase\u00f1a, usa [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=Para echar a un jugador del grupo usa, use [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.7=Para pasar el lider a otro, usa [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=Para eliminar tu grupo, usa [[DARK_AQUA]]{0}
|
||||
Party.Help.9=Usa [[DARK_AQUA]]{0} [[RED]]para compartir objetos con los miembros del grupo
|
||||
Party.Help.10=Usa [[DARK_AQUA]]{0} [[RED]]para activar la XP compartida con los miembros del grupo.
|
||||
Party.InformedOnJoin={0} [[GREEN]]ha entrado en tu grupo
|
||||
Party.InformedOnQuit={0} [[GREEN]]ha salido de tu grupo
|
||||
Party.InformedOnNameChange=[[GOLD]]{0} [[GREEN]]ha cambiado el nombre del grupo a [[WHITE]]{1}
|
||||
Party.InvalidName=[[DARK_RED]]Ese no es un nombre de grupo v\u00e1lido.
|
||||
Party.Invite.Self=[[RED]]No puedes invitarte a ti mismo!
|
||||
Party.IsLocked=[[RED]]\u00a1Este grupo ya est\u00e1 bloqueado!
|
||||
Party.IsntLocked=[[RED]]\u00a1Este grupo no est\u00e1 bloqueado!
|
||||
Party.Locked=[[RED]]El grupo est\u00e1 bloqueado, solo el l\u00edder puede invitarte
|
||||
Party.Invite.Self=No puedes invitarte a ti mismo!
|
||||
Party.IsLocked=\u00a1Este grupo ya est\u00e1 bloqueado!
|
||||
Party.IsntLocked=\u00a1Este grupo no est\u00e1 bloqueado!
|
||||
Party.Locked=El grupo est\u00e1 bloqueado, solo el l\u00edder puede invitarte
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} no esta en tu fiesta
|
||||
Party.NotOwner=[[DARK_RED]]No eres el lider del grupo
|
||||
Party.Owner.New=[[GREEN]]{0} es el nuevo lider del grupo.
|
||||
Party.Owner.NotLeader=[[DARK_RED]]Ya no eres el lider del grupo.
|
||||
Party.Owner.Player=[[GREEN]]Ahora eres el lider del grupo
|
||||
Party.Password.None=[[RED]]Este grupo esta protegido por contrase\u00f1a. Escribala para poder entrar.
|
||||
Party.Password.Incorrect=[[RED]]La contrase\u00f1a del grupo es incorrecta
|
||||
Party.Password.None=Este grupo esta protegido por contrase\u00f1a. Escribala para poder entrar.
|
||||
Party.Password.Incorrect=La contrase\u00f1a del grupo es incorrecta
|
||||
Party.Password.Set=[[GREEN]]Contrase\u00f1a del grupo establecida: [[RED]]{0}
|
||||
Party.Password.Removed=[[GREEN]]La contrase\u00f1a del grupo ha sido eliminada.
|
||||
Party.Player.Invalid=[[RED]]Ese no es un jugador v\u00e1lido.
|
||||
Party.Player.Invalid=Ese no es un jugador v\u00e1lido.
|
||||
Party.NotOnline=[[DARK_RED]]{0} no esta conectado!
|
||||
Party.Player.InSameParty=[[RED]]{0} ya esta en tu grupo!
|
||||
Party.Player.InSameParty={0} ya esta en tu grupo!
|
||||
Party.PlayerNotInParty=[[DARK_RED]]{0} no esta en un grupo
|
||||
Party.Specify=[[RED]]Debes especificar un grupo
|
||||
Party.Teleport.Dead=[[RED]]No te puedes teletransportar a un jugador muerto.
|
||||
Party.Teleport.Hurt=[[RED]]Has sido herido en los ultimos {0} segundos y no te puedes teletransportar.
|
||||
Party.Specify=Debes especificar un grupo
|
||||
Party.Teleport.Dead=No te puedes teletransportar a un jugador muerto.
|
||||
Party.Teleport.Hurt=Has sido herido en los ultimos {0} segundos y no te puedes teletransportar.
|
||||
Party.Teleport.Player=[[GREEN]]Te teletransportaste a {0}.
|
||||
Party.Teleport.Self=[[RED]]No puedes teletransportarte a ti mismo!
|
||||
Party.Teleport.Self=No puedes teletransportarte a ti mismo!
|
||||
Party.Teleport.Target=[[GREEN]]{0} se teletransport\u00f3 a ti.
|
||||
Party.Teleport.Disabled=[[RED]]{0} no permite teletransportacion de grupo.
|
||||
Party.Rename.Same=[[RED]]Ese es ya el nombre de tu grupo!
|
||||
Party.Join.Self=[[RED]]No puedes te puedes unir a ti mismo!
|
||||
Party.Teleport.Disabled={0} no permite teletransportacion de grupo.
|
||||
Party.Rename.Same=Ese es ya el nombre de tu grupo!
|
||||
Party.Join.Self=No puedes te puedes unir a ti mismo!
|
||||
Party.Unlocked=[[GRAY]]El grupo est\u00e1 desbloqueado
|
||||
Party.Disband=[[GRAY]]El grupo ha sido eliminado
|
||||
Party.Status.Locked=[[DARK_RED]](Solo para invitados)
|
||||
@ -521,8 +521,8 @@ Party.ShareType.Item=OBJETO
|
||||
Party.ShareMode.None=NINGUNO
|
||||
Party.ShareMode.Equal=IGUAL
|
||||
Party.ShareMode.Random=ALEATORIO
|
||||
Party.XpShare.Disabled=[[RED]]El grupo no comparte la experiencia.
|
||||
Party.ItemShare.Disabled=[[RED]]El grupo no comparte los objetos.
|
||||
Party.XpShare.Disabled=El grupo no comparte la experiencia.
|
||||
Party.ItemShare.Disabled=El grupo no comparte los objetos.
|
||||
Party.ItemShare.Category.Loot=Saquear
|
||||
Party.ItemShare.Category.Mining=Mineria
|
||||
Party.ItemShare.Category.Herbalism=Herbolaria
|
||||
@ -544,11 +544,11 @@ Commands.XPGain.Woodcutting=Tala de arboles
|
||||
Commands.XPGain=[[DARK_GRAY]]OBTENCI\u00d3N DE EXPERIENCIA: [[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]Tu BARRA DE EXP esta bloqueada a {0}!
|
||||
Commands.xplock.unlocked=[[GOLD]]Tu BARRA DE EXP esta ahora [[GREEN]]DESBLOQUEADA[[GOLD]]!
|
||||
Commands.xprate.modified=[[RED]]La probabilidad de XP fue modificada a {0}
|
||||
Commands.xprate.over=[[RED]]mcMMO EXP Rate Event TERMINO!!
|
||||
Commands.xprate.modified=La probabilidad de XP fue modificada a {0}
|
||||
Commands.xprate.over=mcMMO EXP Rate Event TERMINO!!
|
||||
Commands.xprate.proper.0=[[DARK_AQUA]]El uso correcto es /xprate <n\u00famero entero> <true:false>
|
||||
Commands.xprate.proper.1=[[RED]]Uso correcto para restaurar el ratio de EXP por defecto es /xprate reset
|
||||
Commands.xprate.proper.2=[[RED]]Por favor especifique true o false para indicar si este es un evento de experiencia o no
|
||||
Commands.xprate.proper.1=Uso correcto para restaurar el ratio de EXP por defecto es /xprate reset
|
||||
Commands.xprate.proper.2=Por favor especifique true o false para indicar si este es un evento de experiencia o no
|
||||
Commands.xprate.started.0=[[GOLD]]\u00a1EL EVENTO DE EXP DE mcMMO HA COMENZADO!
|
||||
Commands.xprate.started.1=[[GOLD]]\u00a1mcMMO est\u00e1 ahora en un evento de EXP! \u00a1El ratio de EXP es x{0}!
|
||||
XPRate.Event=[[GOLD]]\u00a1mcMMO est\u00e1 ahora en un evento de rate de EXP! \u00a1El rate de EXP es {0}x!
|
||||
@ -561,28 +561,28 @@ Guides.Available=[[GRAY]]Guia para {0} disponible - tipo /{1} ? [page]
|
||||
Guides.Header=[[GOLD]]-=[[GREEN]]{0} Guia[[GOLD]]=-
|
||||
Guides.Page.Invalid=Numero de pagina no disponible
|
||||
Guides.Page.OutOfRange=La pagina no existe, solo hay {0} paginas en total
|
||||
Guides.Usage=[[RED]] El uso es /{0} ? [page]
|
||||
Guides.Usage= El uso es /{0} ? [page]
|
||||
Guides.Smelting.Section.0=Muy pronto...
|
||||
Inspect.Offline=[[RED]]\u00a1No tienen permiso para inspeccionar jugadores fuera de linea!
|
||||
Inspect.Offline=\u00a1No tienen permiso para inspeccionar jugadores fuera de linea!
|
||||
Inspect.OfflineStats=Estad\u00edsticas de mcMMO para el Jugador Desconectado [[YELLOW]]{0}
|
||||
Inspect.Stats=[[GREEN]]Estad\u00edsticas de mcMMO para [[YELLOW]]{0}
|
||||
Inspect.TooFar=[[RED]]\u00a1Est\u00e1s demasiado lejos como para inspeccionar a ese jugador!
|
||||
Inspect.TooFar=\u00a1Est\u00e1s demasiado lejos como para inspeccionar a ese jugador!
|
||||
Item.ChimaeraWing.Fail=**\u00a1LAS ALAS DE QUIMERA FALLARON!**
|
||||
Item.ChimaeraWing.Pass=**\u00a1ALAS DE QUIMERA!**
|
||||
Item.ChimaeraWing.Name=Ala de quimera
|
||||
Item.ChimaeraWing.Lore=[[GRAY]]Teletransportate a tu cama.
|
||||
Item.Generic.Wait=[[RED]]Tienes que esperar hasta que puedas usar esto de nuevo! [[YELLOW]]({0}s)
|
||||
Item.Generic.Wait=Tienes que esperar hasta que puedas usar esto de nuevo! [[YELLOW]]({0}s)
|
||||
Item.Injured.Wait=Te lesionaste recientemente y ten\u00e9s que esperar para usar esto. [[YELLOW]]({0}seg)
|
||||
Teleport.Commencing=[[GRAY]]Comenzando el teletransporte en [[GOLD]]({0}) [[GRAY]]segundos, por favor mantente hasta...
|
||||
Teleport.Cancelled=[[DARK_RED]]Teletransportacion cancelada!
|
||||
Skills.Child=[[GOLD]](HABILIDAD HIJA)
|
||||
Skills.Disarmed=[[DARK_RED]]\u00a1Has sido desarmado!
|
||||
Skills.Header=[[RED]]-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.Header=-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.NeedMore=[[DARK_RED]]Necesitas m\u00e1s
|
||||
Skills.Parents=PADRES
|
||||
Skills.Stats=[[YELLOW]]{0}[[GREEN]]{1}[[DARK_AQUA]] EXP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.TooTired=[[RED]]Est\u00e1s demasiado cansado como para utilizar esa habilidad de nuevo.
|
||||
Skills.Cancelled=[[RED]]{0} cancelado!
|
||||
Skills.Stats={0}[[GREEN]]{1}[[DARK_AQUA]] EXP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.TooTired=Est\u00e1s demasiado cansado como para utilizar esa habilidad de nuevo.
|
||||
Skills.Cancelled={0} cancelado!
|
||||
Skills.ConfirmOrCancel=[[GREEN]]Click derecho otra vez para confirmar [[GOLD]]{0}[[GREEN]]. Click izquierdo para cancelar.
|
||||
Stats.Header.Combat=[[GOLD]]-=HABILIDADES DE COMBATE=-
|
||||
Stats.Header.Gathering=[[GOLD]]-=HABILIDADES DE RECOLECCI\u00d3N=-
|
||||
@ -614,15 +614,15 @@ MOTD.Donate=[[DARK_AQUA]]Informacion de la donacion:
|
||||
MOTD.Hardcore.Enabled=[[GOLD]][mcMMO] [[DARK_AQUA]]Modo hardcore activado: [[DARK_RED]]{0}
|
||||
MOTD.Hardcore.DeathStatLoss.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Penalizacion de habilidad por muerte: [[DARK_RED]]{0}%
|
||||
MOTD.Hardcore.Vampirism.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Estadisticas de sanguijuela vampirica: [[DARK_RED]]{0}%
|
||||
MOTD.PerksPrefix=[[RED]][mcMMO Beneficios]
|
||||
MOTD.PerksPrefix=[mcMMO Beneficios]
|
||||
MOTD.Version=[[GOLD]][mcMMO] Utilizando la version [[DARK_AQUA]]{0}
|
||||
MOTD.Website=[[GOLD]][mcMMO] [[GREEN]]{0}[[YELLOW]] - Pagina web de mcMMO
|
||||
Smelting.Ability.FluxMining=[[RED]]Probabilidad de mineria fluida: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=[[RED]]Multiplicador de eficiencia del combustible: [[YELLOW]]{0}x
|
||||
Smelting.Ability.FluxMining=Probabilidad de mineria fluida: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=Multiplicador de eficiencia del combustible: [[YELLOW]]{0}x
|
||||
Smelting.Ability.Locked.0=Bloqueado hasta {0}+ HABILIDAD (IMPULSO DE XP VANILLA)
|
||||
Smelting.Ability.Locked.1=Bloqueado hasta {0}+ HABILIDAD (MINERIA FLUIDA)
|
||||
Smelting.Ability.SecondSmelt=[[RED]]Probabilidad de segundo fundido: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=[[RED]]Multiplicador de XP Vanilla: [[YELLOW]]{0}x
|
||||
Smelting.Ability.SecondSmelt=Probabilidad de segundo fundido: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=Multiplicador de XP Vanilla: [[YELLOW]]{0}x
|
||||
Smelting.SubSkill.FuelEfficiency.Name=Eficiencia del combustible
|
||||
Smelting.SubSkill.FuelEfficiency.Description=Aumente el tiempo de quemado de combustible utilizado en los hornos mientras se funde.
|
||||
Smelting.SubSkill.SecondSmelt.Name=Seunda fusion
|
||||
|
@ -2,18 +2,18 @@ Acrobatics.Ability.Proc=[[GREEN]]**Sulava Laskeutuminen**
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**V\u00e4ist\u00f6liike**
|
||||
Acrobatics.Listener=Akrobatia:
|
||||
Acrobatics.SkillName=AKROBATIA
|
||||
Acrobatics.Skillup=[[YELLOW]]Akrobatian taito nousi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Acrobatics.Skillup=Akrobatian taito nousi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Archery.SubSkill.SkillShot.Name=Taitolaukaus
|
||||
Archery.SubSkill.SkillShot.Description=Parantaa jousien aiheuttamaa vahinkoa
|
||||
Archery.SubSkill.ArrowRetrieval.Description=Mahdollisuus saada nuolia takaisin ruumiilta
|
||||
Archery.Skillup=[[YELLOW]]Jousiammuntataito kehittyi {0} tasoa. Kokonaistaso: ({1})
|
||||
Archery.Skillup=Jousiammuntataito kehittyi {0} tasoa. Kokonaistaso: ({1})
|
||||
Axes.Ability.Lower=[[GRAY]]**LASKET KIRVEESI ALAS**
|
||||
Axes.Ability.Ready=[[GREEN]]**KOHOTAT KIRVEESI**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]Sinuun iskettiin KRITIKAALISESTI!
|
||||
Axes.Combat.CriticalHit=[[RED]]KRIITTINEN OSUMA!
|
||||
Axes.Combat.CriticalHit=KRIITTINEN OSUMA!
|
||||
Axes.Combat.GI.Proc=[[GREEN]]**OSUI SUURELLA VOIMALLA**
|
||||
Axes.Combat.GI.Struck=[[RED]]**OSUNUT SUUREMMALLA VOIMALLA**
|
||||
Axes.Combat.SS.Length=[[RED]]Kallon Halkaisun Pituus: [[YELLOW]]{0}s
|
||||
Axes.Combat.GI.Struck=**OSUNUT SUUREMMALLA VOIMALLA**
|
||||
Axes.Combat.SS.Length=Kallon Halkaisun Pituus: [[YELLOW]]{0}s
|
||||
Axes.SubSkill.SkullSplitter.Name=Kallonhalkaisija (Kyky)
|
||||
Axes.SubSkill.CriticalStrikes.Name=Kriittiset Iskut
|
||||
Axes.SubSkill.CriticalStrikes.Description=Kaksinkertainen Vahinko
|
||||
@ -26,36 +26,36 @@ Axes.SkillName=KIRVEET
|
||||
Axes.Skills.SS.On=[[GREEN]]**Kallonhalkaisija AKTIVOITU**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]Sinun[[YELLOW]]Kallonhalkaisu [[GREEN]]taito on latautunut!
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] on k\u00e4ytt\u00e4nyt [[RED]] Kallonhalkaisijaa!
|
||||
Axes.Skillup=[[YELLOW]]Akrobatian taito nousi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Axes.Skillup=Akrobatian taito nousi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Excavation.Ability.Lower=[[GRAY]]**LASKET LAPIOSI ALAS**
|
||||
Excavation.Ability.Ready=[[GREEN]]**KOHOTAT LAPIOSI**
|
||||
Excavation.SubSkill.TreasureHunter.Name=Aarteenmets\u00e4st\u00e4j\u00e4
|
||||
Excavation.Listener=Kaivuu:
|
||||
Excavation.SkillName=KAIVANTO
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**TEHO PORA HAJOITUS AKTIVOITU**
|
||||
Excavation.Skillup=[[YELLOW]]Kaivuu taito nousi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Excavation.Skillup=Kaivuu taito nousi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Fishing.SubSkill.TreasureHunter.Name=Aarteenmets\u00e4st\u00e4j\u00e4 (Passiivinen)
|
||||
Fishing.Listener=Kalastus:
|
||||
Fishing.Ability.TH.MagicFound=[[GRAY]]You feel a touch of magic with this catch...
|
||||
Fishing.SkillName=KALASTUS
|
||||
Fishing.Skillup=[[YELLOW]]Kalastustaito nousi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Herbalism.Ability.GTh.Fail=[[RED]]**VIHERPEUKALO EP\u00c4ONNISTUI**
|
||||
Fishing.Skillup=Kalastustaito nousi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Herbalism.Ability.GTh.Fail=**VIHERPEUKALO EP\u00c4ONNISTUI**
|
||||
Herbalism.Ability.GTh=[[GREEN]]**VIHERPEUKALO**
|
||||
Herbalism.Ability.Lower=[[GRAY]]**LASKET KUOKKASI ALAS**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**KOHOTAT KUOKKASI**
|
||||
Herbalism.Listener=Yrttitietous:
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]Sinun [[YELLOW]]Viherpeukalo [[GREEN]]taito on latautunut!
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]]Viherpaukalo taito[[GREEN]] kului loppuun ajaksi [[YELLOW]]{0}
|
||||
Mining.Ability.Length=[[RED]]Teho Hajoituksen Pituus: [[YELLOW]]{0}s
|
||||
Herbalism.Skills.GTe.Other.Off=Viherpaukalo taito[[GREEN]] kului loppuun ajaksi [[YELLOW]]{0}
|
||||
Mining.Ability.Length=Teho Hajoituksen Pituus: [[YELLOW]]{0}s
|
||||
Mining.Ability.Lower=[[GRAY]]**LASKIT HAKKUSI**
|
||||
Mining.Ability.Ready=[[GREEN]]**VALMISTAUDUT ISKEM\u00c4\u00c4N HAKULLASI**
|
||||
Mining.Listener=Louhinta:
|
||||
Mining.SkillName=LOUHINTA
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[RED]]Tehostettu hajoitus[[GREEN]] kului loppuun ajaksi [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.Off=Tehostettu hajoitus[[GREEN]] kului loppuun ajaksi [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]Sinun [[YELLOW]Superrikkomis [[GREEN]]-taito on uudelleenlatautunut!
|
||||
Mining.Skillup=[[YELLOW]]Louhimistaito kasvoi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Mining.Skillup=Louhimistaito kasvoi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Mining.Blast.Boom=[[GRAY]]**BOOM**
|
||||
Mining.Blast.Radius.Increase=[[RED]]R\u00e4j\u00e4ytys Et\u00e4isyys Nousi: [[YELLOW]]+{0}
|
||||
Mining.Blast.Radius.Increase=R\u00e4j\u00e4ytys Et\u00e4isyys Nousi: [[YELLOW]]+{0}
|
||||
Mining.Blast.Refresh=[[GREEN]]Sinun [[YELLOW] R\u00e4j\u00e4ht\u00e4v\u00e4 Kaivuu [[GREEN]]-kyky on uudelleenlatautunut!
|
||||
Repair.SubSkill.Repair.Name=Korjaus
|
||||
Repair.SubSkill.RepairMastery.Name=Korjaus Mestaruus
|
||||
@ -75,11 +75,11 @@ Repair.Skills.AdeptIron=[[DARK_RED]]Et ole tarpeeksi taitava korjataksesi rautaa
|
||||
Repair.Skills.AdeptStone=Et ole tarpeeksi taitava korjataksesi kive\u00e4.
|
||||
Repair.Skills.FeltEasy=[[GRAY]]Seh\u00e4n tuntui helpolta.
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]Et voi korjata p\u00e4\u00e4llekk\u00e4isi\u00e4 tavaroita.
|
||||
Repair.Skillup=[[YELLOW]]Korjaustaito kasvoi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Repair.Skillup=Korjaustaito kasvoi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]Mystisen Korjauksen huononnus mahdollisuus: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]Mystisen Taonnan Onnistumisprosentti: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Fail=[[RED]]Taikavoima on h\u00e4ipynyt esineest\u00e4 pysyv\u00e4sti.
|
||||
Repair.Arcane.Lost=[[RED]]Et ollut tarpeeksi taitava pit\u00e4\u00e4ksesi lumouksia.
|
||||
Repair.Arcane.Fail=Taikavoima on h\u00e4ipynyt esineest\u00e4 pysyv\u00e4sti.
|
||||
Repair.Arcane.Lost=Et ollut tarpeeksi taitava pit\u00e4\u00e4ksesi lumouksia.
|
||||
Swords.Ability.Lower=[[GRAY]]**LASKIT MIEKKASI**
|
||||
Swords.Ability.Ready=[[GREEN]]**VALMISTAUDUT ISKEM\u00c4\u00c4N MIEKALLASI**
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]Verenvuodatus on [[GREEN]]loppunut[[GRAY]]!
|
||||
@ -90,9 +90,9 @@ Swords.SubSkill.CounterAttack.Name=Vastaisku
|
||||
Swords.Effect.4=Sahalaitaiset Iskut Verenvuoto+
|
||||
Swords.Listener=Miekkailu:
|
||||
Swords.Skills.SS.On=[[GREEN]]**SAHALAITAISET ISKUT AKTIVOITU**
|
||||
Swords.Skills.SS.Other.Off=[[RED]]Sahalaita Isku[[GREEN]] kului loppuun ajaksi [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.Off=Sahalaita Isku[[GREEN]] kului loppuun ajaksi [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] on k\u00e4ytt\u00e4nyt [[RED]]Sahalaita iskua!
|
||||
Swords.SS.Length=[[RED]]Sahalaitaisten Iskujen kesto: [[YELLOW]]{0}s
|
||||
Swords.SS.Length=Sahalaitaisten Iskujen kesto: [[YELLOW]]{0}s
|
||||
Taming.Ability.Bonus.1=Sudet v\u00e4ltt\u00e4v\u00e4t vaaraa
|
||||
Taming.Ability.Bonus.2=Paksu Turkki
|
||||
Taming.Ability.Bonus.6=Teroitetut Kynnet
|
||||
@ -106,21 +106,21 @@ Taming.SubSkill.ThickFur.Name=Paksu Turkki
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]Sutesi kipitt\u00e4\u00e4 takaisin luoksesi...
|
||||
Taming.Listener=Kesytt\u00e4minen:
|
||||
Taming.SkillName=KESYTT\u00c4MINEN
|
||||
Taming.Skillup=[[YELLOW]]Kesytys taito nousi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Taming.Skillup=Kesytys taito nousi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Taming.Summon.Complete=[[GREEN]]Kutsuminen valmis
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]Sekop\u00e4\u00e4n Pituus: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Berserk.Length=Sekop\u00e4\u00e4n Pituus: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Bonus.0=Rautak\u00e4sityyli
|
||||
Unarmed.Ability.Bonus.1=+{0} Vahinkoparannus
|
||||
Unarmed.Ability.Lower=[[GRAY]]**LASKET NYRKKISI ALAS**
|
||||
Unarmed.Listener=Aseeton:
|
||||
Unarmed.SkillName=ASEETON
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**Berserkki on deaktivoitunut**
|
||||
Unarmed.Skills.Berserk.Off=**Berserkki on deaktivoitunut**
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**BERSERK AKTIVOITU**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]]Sekop\u00e4\u00e4[[GREEN]] kului loppuun ajaksi [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.Off=Sekop\u00e4\u00e4[[GREEN]] kului loppuun ajaksi [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] on k\u00e4ytt\u00e4nyt [[RED]]berserkki\u00e4!
|
||||
Woodcutting.Ability.0=Lehtipuhallin
|
||||
Woodcutting.Ability.1=Puhaltaa lehti\u00e4 pois
|
||||
Woodcutting.Ability.Length=[[RED]]Puunkaatajan kesto: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Length=Puunkaatajan kesto: [[YELLOW]]{0}s
|
||||
Woodcutting.SubSkill.TreeFeller.Name=Puunkaataja (KYKY)
|
||||
Woodcutting.SubSkill.TreeFeller.Description=Saa puut r\u00e4j\u00e4ht\u00e4m\u00e4\u00e4n
|
||||
Woodcutting.SubSkill.LeafBlower.Name=Lehtien Puhaltaja
|
||||
@ -128,47 +128,47 @@ Woodcutting.Listener=Puunhakkuu:
|
||||
Woodcutting.SkillName=Puunhakkuu
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**PUUNKAATAJA AKTIVOITU**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]Sinun [[YELLOW]]Puunhakkuu [[GREEN]]taito on latautunut!
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]]Puunhakkuu[[GREEN]] kului loppuun ajaksi [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=Puunhakkuu[[GREEN]] kului loppuun ajaksi [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]] on k\u00e4ytt\u00e4nyt [[RED]]Puunkaatajaa!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]SINUN KIRVES HAJOSI TUHANSIIN OSIIN!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]Puu on liian suuri!
|
||||
Woodcutting.Skillup=[[YELLOW]]Puunhakkuutaso nousi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Woodcutting.Skills.TreeFeller.Splinter=SINUN KIRVES HAJOSI TUHANSIIN OSIIN!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=Puu on liian suuri!
|
||||
Woodcutting.Skillup=Puunhakkuutaso nousi {0} tasolla. Kokonaism\u00e4\u00e4r\u00e4 ({1})
|
||||
Combat.ArrowDeflect=[[WHITE]]**NUOLI TORJUTTU**
|
||||
Combat.BeastLore=[[GREEN]]**BEAST LORE**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]Health ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]Owner ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**PISTO**
|
||||
Combat.StruckByGore=[[RED]]**SINUA ON PISTETTY**
|
||||
Combat.StruckByGore=**SINUA ON PISTETTY**
|
||||
Combat.TargetDazed=Kohde [[DARK_RED]]tyrm\u00e4tty
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]T\u00f6kk\u00e4sit P\u00f6rr\u00f6\u00e4. Tunsit huimauksen.
|
||||
Commands.AdminChat.Off=Ainoastaan Yll\u00e4pit\u00e4jien keskustelu [[RED]]pois p\u00e4\u00e4lt\u00e4
|
||||
Commands.AdminToggle=Kytke adminchat p\u00e4\u00e4lle/pois
|
||||
Commands.Disabled=[[RED]]T\u00e4m\u00e4 komento ei ole k\u00e4ytett\u00e4viss\u00e4.
|
||||
Commands.DoesNotExist=[[RED]]Player does not exist in the database!
|
||||
Commands.Disabled=T\u00e4m\u00e4 komento ei ole k\u00e4ytett\u00e4viss\u00e4.
|
||||
Commands.DoesNotExist=Player does not exist in the database!
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]Kutsu hyv\u00e4ksytty. Liityit ryhm\u00e4\u00e4n {0}
|
||||
Commands.Invite.Success=[[GREEN]]Kutsu l\u00e4hetettiin onnistuneesti.
|
||||
Commands.mmoedit=[player] <skill> <newvalue> [[RED]] - Muokkaa kohdetta
|
||||
Commands.NoConsole=This command does not support console usage.
|
||||
Commands.Other=[[GREEN]]--MUUT KOMENNOT--
|
||||
Commands.Party.Accept=[[RED]]- Hyv\u00e4ksy kutsu ryhm\u00e4\u00e4n
|
||||
Commands.Party.Accept=- Hyv\u00e4ksy kutsu ryhm\u00e4\u00e4n
|
||||
Commands.Party.Commands=[[GREEN]]--RYHM\u00c4KOMENNOT--
|
||||
Commands.Party.Invite.0=[[RED]]HUOMIO: [[GREEN]]Sait kutsun ryhm\u00e4\u00e4n {0} pelaajalta {1}
|
||||
Commands.Party.Kick=[[RED]]Sinut on potkittu ryhm\u00e4st\u00e4 {0}!
|
||||
Commands.Party.Leave=[[RED]]Sin\u00e4 l\u00e4hdit ryhm\u00e4st\u00e4
|
||||
Commands.Party.None=[[RED]]Et ole miss\u00e4\u00e4n ryhm\u00e4ss\u00e4.
|
||||
Commands.Party.Quit=[[RED]]- J\u00e4t\u00e4 nykyinen ryhm\u00e4si
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO[[BLUE]] Voimataso [[YELLOW]]Leaderboard--
|
||||
Commands.Party.Invite.0=HUOMIO: [[GREEN]]Sait kutsun ryhm\u00e4\u00e4n {0} pelaajalta {1}
|
||||
Commands.Party.Kick=Sinut on potkittu ryhm\u00e4st\u00e4 {0}!
|
||||
Commands.Party.Leave=Sin\u00e4 l\u00e4hdit ryhm\u00e4st\u00e4
|
||||
Commands.Party.None=Et ole miss\u00e4\u00e4n ryhm\u00e4ss\u00e4.
|
||||
Commands.Party.Quit=- J\u00e4t\u00e4 nykyinen ryhm\u00e4si
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO[[BLUE]] Voimataso [[YELLOW]]Leaderboard--
|
||||
Commands.PowerLevel=[[DARK_RED]]Voimataso: [[GREEN]]{0}
|
||||
Commands.Stats.Self=SINUN TILASTOSI
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]Jos sinulla ei ole oikeutta k\u00e4ytt\u00e4\u00e4 jotain taitoa, sit\u00e4 ei n\u00e4ytet\u00e4 t\u00e4ss\u00e4.
|
||||
Party.Forbidden=[mcMMO] Parties not permitted on this world (See Permissions)
|
||||
Party.IsLocked=[[RED]]T\u00e4m\u00e4 ryhm\u00e4 on jo lukittu!
|
||||
Party.IsntLocked=[[RED]]T\u00e4m\u00e4 ryhm\u00e4 ei ole lukittu!
|
||||
Party.Locked=[[RED]]Party is locked, only party leader may invite.
|
||||
Party.IsLocked=T\u00e4m\u00e4 ryhm\u00e4 on jo lukittu!
|
||||
Party.IsntLocked=T\u00e4m\u00e4 ryhm\u00e4 ei ole lukittu!
|
||||
Party.Locked=Party is locked, only party leader may invite.
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} is not in your party
|
||||
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||
Party.Player.Invalid=[[RED]]Tuo ei ole kelvollinen pelaaja.
|
||||
Party.Teleport.Dead=[[RED]]Et voi teleportata kuolleeseen pelaajaan.
|
||||
Party.Player.Invalid=Tuo ei ole kelvollinen pelaaja.
|
||||
Party.Teleport.Dead=Et voi teleportata kuolleeseen pelaajaan.
|
||||
Party.Teleport.Target=[[GREEN]]{0} teleporttasi luoksesi.
|
||||
Party.Unlocked=[[GRAY]]Party is unlocked
|
||||
Commands.XPGain.Acrobatics=Tippuminen
|
||||
@ -182,17 +182,17 @@ Commands.XPGain.Taming=El\u00e4inten kesytt\u00e4minen tai taisteleminen susiesi
|
||||
Commands.XPGain=[[DARK_GRAY]]XP SAATAVUUS: [[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]Your XP BAR is now locked to {0}!
|
||||
Commands.xplock.unlocked=[[GOLD]]Your XP BAR is now [[GREEN]]UNLOCKED[[GOLD]]!
|
||||
Commands.xprate.over=[[RED]]mcMMO XP Rate Event is OVER!!
|
||||
Commands.xprate.over=mcMMO XP Rate Event is OVER!!
|
||||
XPRate.Event=[[GOLD]]mcMMO is currently in an XP rate event! XP rate is {0}x!
|
||||
Effects.Effects=TEHOSTEET
|
||||
Effects.Template=[[DARK_AQUA]]{0}: [[GREEN]]{1}
|
||||
Inspect.OfflineStats=mcMMO Stats for Offline Player [[YELLOW]]{0}
|
||||
Inspect.Stats=[[GREEN]]mcMMO Stats for [[YELLOW]]{0}
|
||||
Inspect.TooFar=[[RED]]You are too far away to inspect that player!
|
||||
Inspect.TooFar=You are too far away to inspect that player!
|
||||
Item.ChimaeraWing.Pass=**SILLIKUNINGAS SIIPI**
|
||||
Item.Injured.Wait=Loukkaannuit \u00e4skett\u00e4in ja sinun tulee odottaa hetki. [[YELLOW]]({0}s)
|
||||
Skills.Disarmed=[[DARK_RED]]Sinut on riisuttu aseista!
|
||||
Skills.TooTired=[[RED]]You are too tired to use that ability again.
|
||||
Skills.TooTired=You are too tired to use that ability again.
|
||||
Stats.Header.Combat=[[GOLD]]-=TAISTELUTAIDOT=-
|
||||
Stats.Header.Gathering=[[GOLD]]-=Resurssinkeruutaidot=-
|
||||
Stats.Header.Misc=[[GOLD]]-=SEKALAISET TAIDOT=-
|
||||
|
@ -1,6 +1,6 @@
|
||||
Acrobatics.Ability.Proc=[[GREEN]]**Atterrissage gracieux**
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**Esquiv\u00e9**
|
||||
Acrobatics.DodgeChance=[[RED]]Probabilit\u00e9 d\'esquive : [[YELLOW]]{0}
|
||||
Acrobatics.DodgeChance=Probabilit\u00e9 d\'esquive : [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Name=Roulade
|
||||
Acrobatics.SubSkill.Roll.Description=R\u00e9duit ou annule les d\u00e9g\u00e2ts de chute
|
||||
Acrobatics.SubSkill.GracefulRoll.Name=Roulade gracieuse
|
||||
@ -8,34 +8,34 @@ Acrobatics.SubSkill.GracefulRoll.Description=Deux fois plus efficace qu\'une rou
|
||||
Acrobatics.SubSkill.Dodge.Name=Esquive
|
||||
Acrobatics.SubSkill.Dodge.Description=R\u00e9duit de moiti\u00e9 les d\u00e9g\u00e2ts re\u00e7us
|
||||
Acrobatics.Listener=Acrobatie :
|
||||
Acrobatics.SubSkill.Roll.Chance=[[RED]]Probabilit\u00e9 de roulade : [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=[[RED]]Probabilit\u00e9 de roulade gracieuse : [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Chance=Probabilit\u00e9 de roulade : [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=Probabilit\u00e9 de roulade gracieuse : [[YELLOW]]{0}
|
||||
Acrobatics.Roll.Text=**ROULADE**
|
||||
Acrobatics.SkillName=ACROBATIE
|
||||
Acrobatics.Skillup=[[YELLOW]]Le talent Acrobatie augmente de {0}. Total ({1})
|
||||
Acrobatics.Skillup=Le talent Acrobatie augmente de {0}. Total ({1})
|
||||
Alchemy.SubSkill.Catalysis.Name=Catalyse
|
||||
Alchemy.SubSkill.Catalysis.Description=Augmente la vitesse de confection des potions
|
||||
Alchemy.SubSkill.Concoctions.Name=Concoctions
|
||||
Alchemy.SubSkill.Concoctions.Description=Confection des potions avec plus d\u2019ingr\u00e9dients
|
||||
Alchemy.Listener=Alchimie
|
||||
Alchemy.Ability.Locked.0=Bloqu\u00e9 jusqu\'\u00e0 {0}+ niveaux de talent (CATALYSE)
|
||||
Alchemy.Catalysis.Speed=[[RED]]Vitesse de confection des poitions : [[YELLOW]]{0}
|
||||
Alchemy.Concoctions.Rank=[[RED]]Classement des confectionneurs de potions: [[YELLOW]]{0}/{1}
|
||||
Alchemy.Concoctions.Ingredients=[[RED]]Ingr\u00e9dients [[[YELLOW]]{0}[[RED]]]: [[YELLOW]]{1}
|
||||
Alchemy.Catalysis.Speed=Vitesse de confection des poitions : [[YELLOW]]{0}
|
||||
Alchemy.Concoctions.Rank=Classement des confectionneurs de potions: [[YELLOW]]{0}/{1}
|
||||
Alchemy.Concoctions.Ingredients=Ingr\u00e9dients [[[YELLOW]]{0}[[RED]]]: [[YELLOW]]{1}
|
||||
Alchemy.SkillName=ALCHIMIE
|
||||
Alchemy.Skillup=Le talent Alchimie augmente de {0}. Total ({1})
|
||||
Archery.Combat.DazeChance=[[RED]]Probabilit\u00e9 de d\u00e9sorienter : [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=[[RED]]Probabilit\u00e9 de r\u00e9cup\u00e9rer des fl\u00e8ches : [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=[[RED]]Tir pr\u00e9cis, bonus de d\u00e9g\u00e2ts : [[YELLOW]]{0}
|
||||
Archery.Combat.DazeChance=Probabilit\u00e9 de d\u00e9sorienter : [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=Probabilit\u00e9 de r\u00e9cup\u00e9rer des fl\u00e8ches : [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=Tir pr\u00e9cis, bonus de d\u00e9g\u00e2ts : [[YELLOW]]{0}
|
||||
Archery.SubSkill.SkillShot.Name=Tir pr\u00e9cis
|
||||
Archery.SubSkill.SkillShot.Description=Augmente les d\u00e9g\u00e2ts inflig\u00e9s
|
||||
Archery.SubSkill.Daze.Name=[[RED]]Chance de d\u00e9sorienter : [[YELLOW]]{0}%
|
||||
Archery.SubSkill.Daze.Name=Chance de d\u00e9sorienter : [[YELLOW]]{0}%
|
||||
Archery.SubSkill.Daze.Description=D\u00e9soriente les adversaires en leur faisant {0} dommages
|
||||
Archery.SubSkill.ArrowRetrieval.Name=R\u00e9cup\u00e9ration de fl\u00e8che
|
||||
Archery.SubSkill.ArrowRetrieval.Description=Probabilit\u00e9 de r\u00e9cup\u00e9rer des fl\u00e8ches sur les corps
|
||||
Archery.Listener=Archerie :
|
||||
Archery.SkillName=ARCHERIE
|
||||
Archery.Skillup=[[YELLOW]]Le talent Archerie augmente de {0}. Total ({1})
|
||||
Archery.Skillup=Le talent Archerie augmente de {0}. Total ({1})
|
||||
Axes.Ability.Bonus.0=Ma\u00eetrise des haches
|
||||
Axes.Ability.Bonus.1={0} de d\u00e9g\u00e2ts en plus
|
||||
Axes.Ability.Bonus.2=Impact
|
||||
@ -45,12 +45,12 @@ Axes.Ability.Bonus.5=Inflige {0} de d\u00e9g\u00e2ts en plus aux ennemis sans ar
|
||||
Axes.Ability.Lower=[[GRAY]]**VOUS ABAISSEZ VOTRE HACHE**
|
||||
Axes.Ability.Ready=[[GREEN]]**VOUS LEVEZ VOTRE HACHE**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]Vous avez re\u00e7u un coup critique !
|
||||
Axes.Combat.CritChance=[[RED]]Chance d\'infliger un coup critique : [[YELLOW]]{0}%
|
||||
Axes.Combat.CriticalHit=[[RED]]COUP CRITIQUE !
|
||||
Axes.Combat.CritChance=Chance d\'infliger un coup critique : [[YELLOW]]{0}%
|
||||
Axes.Combat.CriticalHit=COUP CRITIQUE !
|
||||
Axes.Combat.GI.Proc=[[GREEN]]**FRAPP\u00c9 D\'UNE VIOLENTE INOU\u00cfE**
|
||||
Axes.Combat.GI.Struck=[[RED]]**TOUCH\u00c9 PAR UN IMPACT PUISSANT**
|
||||
Axes.Combat.GI.Struck=**TOUCH\u00c9 PAR UN IMPACT PUISSANT**
|
||||
Axes.Combat.SS.Struck=[[DARK_RED]]Bloqu\u00e9 par TRANCHE-CR\u00c2NE !
|
||||
Axes.Combat.SS.Length=[[RED]]Dur\u00e9e de Tranche-cr\u00e2ne : [[YELLOW]]{0}s
|
||||
Axes.Combat.SS.Length=Dur\u00e9e de Tranche-cr\u00e2ne : [[YELLOW]]{0}s
|
||||
Axes.SubSkill.SkullSplitter.Name=Tranche-cr\u00e2ne (Comp\u00e9tence)
|
||||
Axes.SubSkill.SkullSplitter.Description=Inflige des d\u00e9g\u00e2ts de zone
|
||||
Axes.SubSkill.CriticalStrikes.Name=Coup critique
|
||||
@ -63,12 +63,12 @@ Axes.SubSkill.GreaterImpact.Name=Impact puissant
|
||||
Axes.SubSkill.GreaterImpact.Description=Inflige des d\u00e9g\u00e2ts bonus aux ennemis sans armure
|
||||
Axes.Listener=Haches :
|
||||
Axes.SkillName=HACHES
|
||||
Axes.Skills.SS.Off=[[RED]]**Tranche-cr\u00e2ne est termin\u00e9**
|
||||
Axes.Skills.SS.Off=**Tranche-cr\u00e2ne est termin\u00e9**
|
||||
Axes.Skills.SS.On=[[GREEN]]**TRANCHE-CR\u00c2NE ACTIV\u00c9**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]Votre comp\u00e9tence [[YELLOW]]Tranche-cr\u00e2ne [[GREEN]]est pr\u00eate !
|
||||
Axes.Skills.SS.Other.Off=[[RED]]Tranche-cr\u00e2ne[[GREEN]] s\'est termin\u00e9 pour [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.Off=Tranche-cr\u00e2ne[[GREEN]] s\'est termin\u00e9 pour [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] a utilis\u00e9 [[RED]]Tranche-cr\u00e2ne !
|
||||
Axes.Skillup=[[YELLOW]]Le talent Haches augmente de {0}. Total ({1})
|
||||
Axes.Skillup=Le talent Haches augmente de {0}. Total ({1})
|
||||
|
||||
|
||||
Axes.Ability.Bonus.0=Ma\u00eetrise des haches
|
||||
@ -79,26 +79,26 @@ Excavation.SubSkill.GigaDrillBreaker.Name=Foreur (Comp\u00e9tence)
|
||||
Excavation.SubSkill.GigaDrillBreaker.Description=Drops x3, XP x3, plus rapide
|
||||
Excavation.SubSkill.TreasureHunter.Name=Chasseur de tr\u00e9sors
|
||||
Excavation.SubSkill.TreasureHunter.Description=Capacit\u00e9 \u00e0 d\u00e9terrer des tr\u00e9sors
|
||||
Excavation.Effect.Length=[[RED]]Dur\u00e9e de Foreur : [[YELLOW]]{0}s
|
||||
Excavation.Effect.Length=Dur\u00e9e de Foreur : [[YELLOW]]{0}s
|
||||
Excavation.Listener=Excavation:
|
||||
Excavation.SkillName=EXCAVATION
|
||||
Excavation.Skills.GigaDrillBreaker.Off=[[RED]]**Votre comp\u00e9tence Foreur est termin\u00e9e**
|
||||
Excavation.Skills.GigaDrillBreaker.Off=**Votre comp\u00e9tence Foreur est termin\u00e9e**
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**FOREUR ACTIV\u00c9**
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]Votre comp\u00e9tence [[YELLOW]]Foreur [[GREEN]]est pr\u00eate !
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=[[RED]]Foreur[[GREEN]] est termin\u00e9 pour [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=Foreur[[GREEN]] est termin\u00e9 pour [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] a utilis\u00e9 [[RED]]Foreur !
|
||||
Excavation.Skillup=[[YELLOW]]La comp\u00e9tence excavation augmente de {0}. Total ({1})
|
||||
Fishing.Ability.Chance=[[RED]]Chance que \u00e7a morde: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=[[RED]]P\u00eache magique : [[GRAY]] **S\'am\u00e9liore via Chasseur de tr\u00e9sors**
|
||||
Excavation.Skillup=La comp\u00e9tence excavation augmente de {0}. Total ({1})
|
||||
Fishing.Ability.Chance=Chance que \u00e7a morde: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=P\u00eache magique : [[GRAY]] **S\'am\u00e9liore via Chasseur de tr\u00e9sors**
|
||||
Fishing.Ability.Locked.0=BLOCKE JUSQU\'A {0}+ COMPETENCE (SHAKE)
|
||||
Fishing.Ability.Locked.1=Bloqu\u00e9 jusqu\'\u00e0 {0}+ niveaux de talent (PECHEUR SUR GLACE)
|
||||
Fishing.Ability.Locked.2=Bloqu\u00e9 jusqu\'\u00e0 {0}+ niveau(x) (Ma\u00eetre P\u00eacheur)
|
||||
Fishing.Ability.Rank=[[RED]]Chasseur de tr\u00e9sors : [[YELLOW]]{0}/{1}
|
||||
Fishing.Ability.TH.DropRate=[[RED]] Taux de Loot: [[DARK_RED]]Pi\u00e8ge: [[YELLOW]]{0} [[GRAY]]Commun: [[YELLOW]]{1} [[GREEN]]Non commun: [[YELLOW]]{2}\n[[BLUE]]Rare: [[YELLOW]]{3} [[LIGHT_PURPLE]]\u00c9pique: [[YELLOW]]{4} [[GOLD]]L\u00e9gendaire: [[YELLOW]]{5} [[AQUA]]Record: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=[[RED]]Chasse magique: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=[[RED]]Chance d\'esquive : [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=[[RED]]P\u00eache sur Glace: Allez p\u00eacher sur de la glace
|
||||
Fishing.Ability.FD=[[RED]]R\u00e9gime de p\u00e9cheur: [[YELLOW]]Classement {0}
|
||||
Fishing.Ability.Rank=Chasseur de tr\u00e9sors : [[YELLOW]]{0}/{1}
|
||||
Fishing.Ability.TH.DropRate= Taux de Loot: [[DARK_RED]]Pi\u00e8ge: [[YELLOW]]{0} [[GRAY]]Commun: [[YELLOW]]{1} [[GREEN]]Non commun: [[YELLOW]]{2}\n[[BLUE]]Rare: [[YELLOW]]{3} [[LIGHT_PURPLE]]\u00c9pique: [[YELLOW]]{4} [[GOLD]]L\u00e9gendaire: [[YELLOW]]{5} [[AQUA]]Record: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=Chasse magique: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=Chance d\'esquive : [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=P\u00eache sur Glace: Allez p\u00eacher sur de la glace
|
||||
Fishing.Ability.FD=R\u00e9gime de p\u00e9cheur: [[YELLOW]]Classement {0}
|
||||
Fishing.SubSkill.TreasureHunter.Name=Chasseur de tr\u00e9sors
|
||||
Fishing.SubSkill.TreasureHunter.Description=Remonte des objets inhabituels
|
||||
Fishing.SubSkill.MagicHunter.Name=P\u00eache magique
|
||||
@ -117,20 +117,20 @@ Fishing.Ability.TH.MagicFound=[[GRAY]]Vous ressentez quelque chose de magique da
|
||||
Fishing.Ability.TH.Boom=[[GRAY]]TEMPS D\'EXPLOSION !!!
|
||||
Fishing.Ability.TH.Poison=[[GRAY]]Quelque chose n\'a pas bien cuit...
|
||||
Fishing.SkillName=P\u00caCHE
|
||||
Fishing.Skillup=[[YELLOW]]Le talent p\u00eache augmente de {0}. Total ({1})
|
||||
Herbalism.Ability.DoubleDropChance=[[RED]]Double Drop: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=[[RED]]R\u00e9gime du fermier: [[YELLOW]]Classement {0}
|
||||
Herbalism.Ability.GTe.Length=[[RED]]Dur\u00e9e de Main verte : [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=[[RED]]Vous avez besoin de plus de graines pour r\u00e9pandre la terre verte
|
||||
Herbalism.Ability.GTh.Chance=[[RED]]Chances de Mains Vertes: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=[[RED]]**MAINS VERTES \u00c9CHOU\u00c9ES**
|
||||
Herbalism.Ability.GTh.Stage=[[RED]] Vos sens de jardinier vous indique que [[YELLOW]] Ce champ est en train de pousser {0}
|
||||
Fishing.Skillup=Le talent p\u00eache augmente de {0}. Total ({1})
|
||||
Herbalism.Ability.DoubleDropChance=Double Drop: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=R\u00e9gime du fermier: [[YELLOW]]Classement {0}
|
||||
Herbalism.Ability.GTe.Length=Dur\u00e9e de Main verte : [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=Vous avez besoin de plus de graines pour r\u00e9pandre la terre verte
|
||||
Herbalism.Ability.GTh.Chance=Chances de Mains Vertes: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=**MAINS VERTES \u00c9CHOU\u00c9ES**
|
||||
Herbalism.Ability.GTh.Stage= Vos sens de jardinier vous indique que [[YELLOW]] Ce champ est en train de pousser {0}
|
||||
Herbalism.Ability.GTh=[[GREEN]]**DOIGTS VERTS**
|
||||
Herbalism.Ability.HylianLuck=[[RED]]Probabilit\u00e9 de chance d\'Hylian: [[YELLOW]]{0}
|
||||
Herbalism.Ability.HylianLuck=Probabilit\u00e9 de chance d\'Hylian: [[YELLOW]]{0}
|
||||
Herbalism.Ability.Lower=[[GRAY]]**VOUS ABAISSEZ VOTRE HOUE**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**VOUS LEVEZ VOTRE HOUE**
|
||||
Herbalism.Ability.ShroomThumb.Chance=[[RED]]Doigts \u00e0 Champignons, Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=[[RED]]**DOIGTS VERTS \u00c9CHOU\u00c9**
|
||||
Herbalism.Ability.ShroomThumb.Chance=Doigts \u00e0 Champignons, Chance: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=**DOIGTS VERTS \u00c9CHOU\u00c9**
|
||||
Herbalism.SubSkill.GreenTerra.Name=Main verte (Comp\u00e9tence)
|
||||
Herbalism.SubSkill.GreenTerra.Description=Propage les plantes / triple drops
|
||||
Herbalism.SubSkill.GreenThumb.Name=Mains Vertes (Bl\u00e9)
|
||||
@ -148,13 +148,13 @@ Herbalism.SubSkill.ShroomThumb.Description=Etend le mycelium sur la terre et l\'
|
||||
Herbalism.HylianLuck=[[GREEN]]la chance d\'Hyrule est avec vous aujourd\'hui !
|
||||
Herbalism.Listener=Herboristerie :
|
||||
Herbalism.SkillName=HERBORISTERIE
|
||||
Herbalism.Skills.GTe.Off=[[RED]]**Votre comp\u00e9tence Main verte est termin\u00e9e**
|
||||
Herbalism.Skills.GTe.Off=**Votre comp\u00e9tence Main verte est termin\u00e9e**
|
||||
Herbalism.Skills.GTe.On=[[GREEN]]**MAIN VERTE ACTIV\u00c9**
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]Votre comp\u00e9tence [[YELLOW]]Main verte [[GREEN]]est pr\u00eate !
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]]Main verte[[GREEN]] est termin\u00e9 pour [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.Off=Main verte[[GREEN]] est termin\u00e9 pour [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]{0}[[DARK_GREEN]] a utilis\u00e9 [[RED]]Main verte !
|
||||
Herbalism.Skillup=[[YELLOW]]Le talent Herboristerie augmente de {0}. Total ({1})
|
||||
Mining.Ability.Length=[[RED]]Dur\u00e9e de Broyeur : [[YELLOW]]{0}s
|
||||
Herbalism.Skillup=Le talent Herboristerie augmente de {0}. Total ({1})
|
||||
Mining.Ability.Length=Dur\u00e9e de Broyeur : [[YELLOW]]{0}s
|
||||
Mining.Ability.Locked.0=Bloqu\u00e9 jusqu\'\u00e0 {0}+ niveaux du talent (MINAGE PAR EXPLOSIONS)
|
||||
Mining.Ability.Locked.1=Bloqu\u00e9 jusqu\'\u00e0 {0}+ niveau(x) (Grosses Explosions)
|
||||
Mining.Ability.Locked.2=Bloqu\u00e9 jusqu\'\u00e0 {0}+ niveau(x) (Expert en d\u00e9molition)
|
||||
@ -170,20 +170,20 @@ Mining.SubSkill.BiggerBombs.Name=Grosses explosions
|
||||
Mining.SubSkill.BiggerBombs.Description=Augmente le rayon d\'explosion de la TNT
|
||||
Mining.SubSkill.DemolitionsExpertise.Name=Expert en d\u00e9molition
|
||||
Mining.SubSkill.DemolitionsExpertise.Description=R\u00e9duit les d\u00e9g\u00e2ts provenant de la TNT
|
||||
Mining.Effect.Decrease=[[RED]]Baisse de l\'expertise en d\u00e9molition: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=[[RED]]Double Drop: [[YELLOW]]{0}
|
||||
Mining.Effect.Decrease=Baisse de l\'expertise en d\u00e9molition: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=Double Drop: [[YELLOW]]{0}
|
||||
Mining.Listener=Minage :
|
||||
Mining.SkillName=MINAGE
|
||||
Mining.Skills.SuperBreaker.Off=[[RED]]**Votre comp\u00e9tence Broyeur est termin\u00e9e**
|
||||
Mining.Skills.SuperBreaker.Off=**Votre comp\u00e9tence Broyeur est termin\u00e9e**
|
||||
Mining.Skills.SuperBreaker.On=[[GREEN]]**BROYEUR ACTIV\u00c9**
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[RED]]Broyeur[[GREEN]] est termin\u00e9 pour [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.Off=Broyeur[[GREEN]] est termin\u00e9 pour [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] a utilis\u00e9 [[RED]]Broyeur !
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]Votre comp\u00e9tence [[YELLOW]]Broyeur [[GREEN]]est pr\u00eate !
|
||||
Mining.Skillup=[[YELLOW]]Le talent Minage augmente de {0}. Total ({1})
|
||||
Mining.Skillup=Le talent Minage augmente de {0}. Total ({1})
|
||||
Mining.Blast.Boom=[[GRAY]]**BOUM**
|
||||
Mining.Blast.Effect=+{0} de r\u00e9colte des minerais, -{1} de r\u00e9colte des d\u00e9bris, {2}x les r\u00e9compenses
|
||||
Mining.Blast.Radius.Increase=[[RED]]Rayon d\'explosion : [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=[[RED]]Minage explosif : [[YELLOW]]Rang {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Radius.Increase=Rayon d\'explosion : [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=Minage explosif : [[YELLOW]]Rang {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Other.On=[[GREEN]]{0}[[DARK_GREEN]] a utilis\u00e9 [[RED]]Minage explosif !
|
||||
Mining.Blast.Refresh=[[GREEN]]Votre capacit\u00e9 [[YELLOW]]Minage Explosif[[GREEN]] est pr\u00eate !
|
||||
Repair.SubSkill.Repair.Name=R\u00e9paration
|
||||
@ -211,21 +211,21 @@ Repair.Skills.AdeptDiamond=[[DARK_RED]]Vous n\'\u00eates pas suffisamment comp\u
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]Vous n\'\u00eates pas suffisamment comp\u00e9tent pour r\u00e9parer l\'or.
|
||||
Repair.Skills.AdeptIron=[[DARK_RED]]Vous n\'\u00eates pas suffisamment comp\u00e9tent pour r\u00e9parer le fer.
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]Vous n\'\u00eates pas suffisamment comp\u00e9tent pour r\u00e9parer la pierre.
|
||||
Repair.Skills.Adept=[[RED]]Vous devez avoir le niveau [[YELLOW]]{0}[[RED]] pour pouvoir r\u00e9parer [[YELLOW]]{1}
|
||||
Repair.Skills.Adept=Vous devez avoir le niveau [[YELLOW]]{0}[[RED]] pour pouvoir r\u00e9parer [[YELLOW]]{1}
|
||||
Repair.Skills.FeltEasy=[[GRAY]]Plut\u00f4t facile.
|
||||
Repair.Skills.FullDurability=[[GRAY]]C\'est d\u00e9j\u00e0 r\u00e9par\u00e9.
|
||||
Repair.Skills.Mastery=[[RED]]Maitrise de la forge: [[YELLOW]]Extra {0} durabilit\u00e9 en place
|
||||
Repair.Skills.Mastery=Maitrise de la forge: [[YELLOW]]Extra {0} durabilit\u00e9 en place
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]Vous ne pouvez pas r\u00e9parer les objets empil\u00e9s.
|
||||
Repair.Skills.Super.Chance=[[RED]]Chance Super R\u00e9paration: [[YELLOW]]{0}
|
||||
Repair.Skillup=[[YELLOW]]Le talent R\u00e9paration augmente de {0}. Total ({1})
|
||||
Repair.Skills.Super.Chance=Chance Super R\u00e9paration: [[YELLOW]]{0}
|
||||
Repair.Skillup=Le talent R\u00e9paration augmente de {0}. Total ({1})
|
||||
Repair.Pretty.Name=R\u00e9paration
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]Forge arcanique, chance de d\u00e9gradation : [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]Forge arcanique, taux de succ\u00e8s : [[YELLOW]]{0}%
|
||||
Repair.Arcane.Downgrade=[[RED]]Les \u00e9nergies arcaniques ont \u00e9t\u00e9 affaiblies sur cet objet.
|
||||
Repair.Arcane.Fail=[[RED]]Les \u00e9nergies arcaniques ont quitt\u00e9 cet objet.
|
||||
Repair.Arcane.Lost=[[RED]]Vous n\'\u00e9tiez pas suffisamment comp\u00e9tent pour pr\u00e9server les enchantements.
|
||||
Repair.Arcane.Downgrade=Les \u00e9nergies arcaniques ont \u00e9t\u00e9 affaiblies sur cet objet.
|
||||
Repair.Arcane.Fail=Les \u00e9nergies arcaniques ont quitt\u00e9 cet objet.
|
||||
Repair.Arcane.Lost=Vous n\'\u00e9tiez pas suffisamment comp\u00e9tent pour pr\u00e9server les enchantements.
|
||||
Repair.Arcane.Perfect=[[GREEN]]Vous avez pr\u00e9serv\u00e9 les \u00e9nergies arcaniques de cet objet.
|
||||
Repair.Arcane.Rank=[[RED]]Forge arcanique : [[YELLOW]]Rang {0}/4
|
||||
Repair.Arcane.Rank=Forge arcanique : [[YELLOW]]Rang {0}/4
|
||||
Salvage.Pretty.Name=Recyclage
|
||||
Salvage.SubSkill.AdvancedSalvage.Name=Recyclage Avanc\u00e9
|
||||
Salvage.SubSkill.AdvancedSalvage.Description=Recyclage des objets endommag\u00e9s
|
||||
@ -234,28 +234,28 @@ Salvage.SubSkill.ArcaneSalvaging.Description=Extrait les enchantements des objet
|
||||
Salvage.Ability.Locked.0=Bloqu\u00e9 jusqu\'\u00e0 {0}+ niveau(x) du talent (Recyclage Avanc\u00e9)
|
||||
Salvage.Ability.Bonus.0=Recyclage Avanc\u00e9
|
||||
Salvage.Ability.Bonus.1=Rendement maximal {0} objet(s) d\u00e9truit(s)
|
||||
Salvage.Arcane.Rank=[[RED]]Recyclage Arcanique: [[YELLOW]]Rang {0}/{1}
|
||||
Salvage.Arcane.Rank=Recyclage Arcanique: [[YELLOW]]Rang {0}/{1}
|
||||
Salvage.Arcane.ExtractFull=[[GRAY]]Recyclage Arcanique : Chance d\'un enchantement complet
|
||||
Salvage.Arcane.ExtractPartial=[[GRAY]]Recyclage Arcanique : Chance d\'un enchantement partiel
|
||||
Salvage.Skills.Success=[[GREEN]]Objet recycl\u00e9 !
|
||||
Salvage.Skills.Adept.Damaged=[[DARK_RED]]Vous n\'\u00eates pas assez talentueux pour recycler des objets endommag\u00e9s.
|
||||
Salvage.Skills.Adept.Level=[[RED]]Vous devez \u00eatre niveau [[YELLOW]]{0}[[RED]] pour recycler [[YELLOW]]{1}
|
||||
Salvage.Skills.Adept.Level=Vous devez \u00eatre niveau [[YELLOW]]{0}[[RED]] pour recycler [[YELLOW]]{1}
|
||||
Salvage.Skills.TooDamaged=[[DARK_RED]]C\'est objet est trop endommag\u00e9 pour \u00eatre recycl\u00e9.
|
||||
Salvage.Skills.ArcaneFailed=[[RED]]Vous avez \u00e9t\u00e9 incapable d\'extraire la connaissance contenue dans cet objet.
|
||||
Salvage.Skills.ArcanePartial=[[YELLOW]]Vous avez \u00e9t\u00e9 capable d\'extraire toute la connaissance contenue dans cet objet.
|
||||
Salvage.Skills.ArcaneFailed=Vous avez \u00e9t\u00e9 incapable d\'extraire la connaissance contenue dans cet objet.
|
||||
Salvage.Skills.ArcanePartial=Vous avez \u00e9t\u00e9 capable d\'extraire toute la connaissance contenue dans cet objet.
|
||||
Salvage.Skills.ArcaneSuccess=[[GREEN]]Vous avez \u00e9t\u00e9 capable d\'extraire toute la connaissance contenue dans cet objet.
|
||||
Salvage.Listener.Anvil=[[DARK_RED]]Vous avez plac\u00e9 une enclume de r\u00e9paration, utilisez-la pour recycler vos outils et vos armures.
|
||||
Salvage.Listener=Recyclage:
|
||||
Salvage.SkillName=RECYCLAGE
|
||||
Swords.Ability.Lower=[[GRAY]]**VOUS ABAISSEZ VOTRE \u00c9P\u00c9E**
|
||||
Swords.Ability.Ready=[[GREEN]]**VOUS LEVEZ VOTRE \u00c9P\u00c9E**
|
||||
Swords.Combat.Bleed.Chance=[[RED]]Chance de saignement: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=[[RED]]Dur\u00e9e de saignement : [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Chance=Chance de saignement: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=Dur\u00e9e de saignement : [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Note=[[GRAY]]NOTE : [[YELLOW]]1 tick toutes les 2 secondes
|
||||
Swords.Combat.Bleeding.Started=[[DARK_RED]] Tu saignes!
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]Le saignement s\'est [[GREEN]]arr\u00eat\u00e9[[GRAY]] !
|
||||
Swords.Combat.Bleeding=[[GREEN]]**L\'ENNEMI SAIGNE**
|
||||
Swords.Combat.Counter.Chance=[[RED]]Chance de Contre Attaque: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Chance=Chance de Contre Attaque: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Hit=[[DARK_RED]]Touch\u00e9 par une contre-attaque !
|
||||
Swords.Combat.Countered=[[GREEN]]**CONTRE-ATTAQUE**
|
||||
Swords.Combat.SS.Struck=[[DARK_RED]]Frapp\u00e9 par ATTAQUE D\u00c9CHIRANTE !
|
||||
@ -269,13 +269,13 @@ Swords.SubSkill.Bleed.Name=Saignement
|
||||
Swords.SubSkill.Bleed.Description=Applique un saignement
|
||||
Swords.Listener=\u00c9p\u00e9es :
|
||||
Swords.SkillName=\u00c9P\u00c9ES
|
||||
Swords.Skills.SS.Off=[[RED]]**Votre comp\u00e9tence Attaque d\u00e9chirante est termin\u00e9e**
|
||||
Swords.Skills.SS.Off=**Votre comp\u00e9tence Attaque d\u00e9chirante est termin\u00e9e**
|
||||
Swords.Skills.SS.On=[[GREEN]]**ATTAQUE D\u00c9CHIRANTE ACTIV\u00c9E**
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]Votre comp\u00e9tence [[YELLOW]]Attaque d\u00e9chirante [[GREEN]]est pr\u00eate !
|
||||
Swords.Skills.SS.Other.Off=[[RED]]Attaque d\u00e9chirante[[GREEN]] s\'est termin\u00e9 pour [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.Off=Attaque d\u00e9chirante[[GREEN]] s\'est termin\u00e9 pour [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] a utilis\u00e9 [[RED]]Attaque d\u00e9chirante !
|
||||
Swords.Skillup=[[YELLOW]]Ep\u00e9e augmente de {0}. Total ({1})
|
||||
Swords.SS.Length=[[RED]]Dur\u00e9e d\'Attaque d\u00e9chirante : [[YELLOW]]{0}s
|
||||
Swords.Skillup=Ep\u00e9e augmente de {0}. Total ({1})
|
||||
Swords.SS.Length=Dur\u00e9e d\'Attaque d\u00e9chirante : [[YELLOW]]{0}s
|
||||
Taming.Ability.Bonus.0=Attentif \u00e0 l\'environnement
|
||||
Taming.Ability.Bonus.1=Les loups \u00e9vitent les dangers
|
||||
Taming.Ability.Bonus.2=Fourrure \u00e9paisse
|
||||
@ -296,7 +296,7 @@ Taming.Ability.Locked.4=Bloqu\u00e9 jusqu\'\u00e0 {0}+ niveau(x) (SERVICE FAST F
|
||||
Taming.Ability.Locked.5=Bloqu\u00e9 jusqu\'\u00e0 {0}+ niveaux du talent (Super chien de chasse)
|
||||
Taming.Ability.Lower=[[GRAY]]**VOS LOUPS SE METTENT EN RETRAIT**
|
||||
Taming.Ability.Ready=[[GRAY]]**VOUS PREPAREZ VOS LOUPS**
|
||||
Taming.Combat.Chance.Gore=[[RED]]Chance Gore: [[YELLOW]]{0}
|
||||
Taming.Combat.Chance.Gore=Chance Gore: [[YELLOW]]{0}
|
||||
Taming.SubSkill.BeastLore.Name=Connaissances des b\u00eates
|
||||
Taming.SubSkill.BeastLore.Description=Bone-whacking inspects wolves & ocelots
|
||||
Taming.SubSkill.ShockProof.Name=R\u00e9sistance aux chocs
|
||||
@ -321,28 +321,28 @@ Taming.SubSkill.Gore.Name1=Ennemi cible, Rapidit\u00e9 de Loup++
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]Votre loup se pr\u00e9cipite \u00e0 vos c\u00f4t\u00e9s...
|
||||
Taming.Listener=Apprivoisement :
|
||||
Taming.SkillName=APPRIVOISEMENT
|
||||
Taming.Skills.Charge.Off=[[RED]]**Charge s\'est arr\u00eat\u00e9e**
|
||||
Taming.Skills.Charge.Off=**Charge s\'est arr\u00eat\u00e9e**
|
||||
Taming.Skills.Charge.On=[[GREEN]]**CHARGE ACTIV\u00c9E**
|
||||
Taming.Skills.Charge.Other.Off=[[RED]]Charge[[GREEN]] s\'est arr\u00eat\u00e9e pour [[YELLOW]]{0}
|
||||
Taming.Skills.Charge.Other.Off=Charge[[GREEN]] s\'est arr\u00eat\u00e9e pour [[YELLOW]]{0}
|
||||
Taming.Skills.Charge.Other.On=[[GREEN]]{0}[[DARK_GREEN]] a utilis\u00e9 [[RED]]Charge!
|
||||
Taming.Skills.Charge.Refresh=[[GREEN]]Votre capacit\u00e9 [[YELLOW]]Charge [[GREEN]]a \u00e9t\u00e9 renouvel\u00e9e!
|
||||
Taming.Skills.Charge.NoneNearby=[[RED]]**AUCUN LOUP DISPONIBLE A PROXIMIT\u00c9**
|
||||
Taming.Skills.Charge.NoTarget=[[RED]]**AUCUNE CIBLE TROUV\u00c9E**
|
||||
Taming.Skillup=[[YELLOW]]Le talent Apprivoisement augmente de {0}. Total ({1})
|
||||
Taming.Skills.Charge.NoneNearby=**AUCUN LOUP DISPONIBLE A PROXIMIT\u00c9**
|
||||
Taming.Skills.Charge.NoTarget=**AUCUNE CIBLE TROUV\u00c9E**
|
||||
Taming.Skillup=Le talent Apprivoisement augmente de {0}. Total ({1})
|
||||
Taming.Summon.Complete=[[GREEN]]Appel r\u00e9ussi
|
||||
Taming.Summon.Lifespan=[[YELLOW]] (Dur\u00e9e de vie: {0}s)
|
||||
Taming.Summon.Fail.Ocelot=[[RED]]Il y a d\u00e9j\u00e0 trop d\'ocelots dans les environs.
|
||||
Taming.Summon.Fail.Wolf=[[RED]]Il y a d\u00e9j\u00e0 trop de loups dans les environs.
|
||||
Taming.Summon.Fail.Horse=[[RED]]Il y a d\u00e9j\u00e0 trop de chevaux dans les environs.
|
||||
Taming.Summon.Fail.TooMany=[[RED]]Vous ne pouvez pas appeler plus d\'animaux \u00e0 vos c\u00f4t\u00e9s. [[YELLOW]]({0})
|
||||
Taming.Summon.Lifespan= (Dur\u00e9e de vie: {0}s)
|
||||
Taming.Summon.Fail.Ocelot=Il y a d\u00e9j\u00e0 trop d\'ocelots dans les environs.
|
||||
Taming.Summon.Fail.Wolf=Il y a d\u00e9j\u00e0 trop de loups dans les environs.
|
||||
Taming.Summon.Fail.Horse=Il y a d\u00e9j\u00e0 trop de chevaux dans les environs.
|
||||
Taming.Summon.Fail.TooMany=Vous ne pouvez pas appeler plus d\'animaux \u00e0 vos c\u00f4t\u00e9s. [[YELLOW]]({0})
|
||||
Taming.Summon.Name.Format={1} de {0}
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]Dur\u00e9e de Berserk : [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Berserk.Length=Dur\u00e9e de Berserk : [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Bonus.0=Poings de fer
|
||||
Unarmed.Ability.Bonus.1=+{0} de d\u00e9g\u00e2ts
|
||||
Unarmed.Ability.Chance.ArrowDeflect=[[RED]]D\u00e9viation de fl\u00e8che: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=[[RED]]Chance D\u00e9sarmer: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=[[RED]]Chance de Poigne de Fer: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=[[RED]]Votre adversaire a une poigne de fer !
|
||||
Unarmed.Ability.Chance.ArrowDeflect=D\u00e9viation de fl\u00e8che: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=Chance D\u00e9sarmer: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=Chance de Poigne de Fer: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=Votre adversaire a une poigne de fer !
|
||||
Unarmed.Ability.IronGrip.Defender=Votre poigne de fer vous a emp\u00each\u00e9 d\'\u00eatre d\u00e9sarm\u00e9 !
|
||||
Unarmed.Ability.Lower=[[GRAY]]**VOUS ABAISSEZ VOS POINGS**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**VOUS LEVEZ VOS POINGS**
|
||||
@ -358,16 +358,16 @@ Unarmed.SubSkill.IronGrip.Name=Poigne de Fer
|
||||
Unarmed.SubSkill.IronGrip.Description=Vous emp\u00eache d\'\u00eatre d\u00e9sarm\u00e9
|
||||
Unarmed.Listener=Poings :
|
||||
Unarmed.SkillName=POINGS
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**Votre capacit\u00e9 Furie est termin\u00e9e**
|
||||
Unarmed.Skills.Berserk.Off=**Votre capacit\u00e9 Furie est termin\u00e9e**
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**BERSERK ACTIV\u0081\u00c9**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]]Berserk[[GREEN]] s\'est termin\u00e9 pour [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.Off=Berserk[[GREEN]] s\'est termin\u00e9 pour [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] a utilis\u00e9 [[RED]]Furie !
|
||||
Unarmed.Skills.Berserk.Refresh=[[GREEN]]Votre comp\u00e9tence [[YELLOW]]Berserk [[GREEN]]est pr\u00eate !
|
||||
Unarmed.Skillup=[[YELLOW]]La comp\u00e9tence Poings augmente de {0}. Total ({1})
|
||||
Unarmed.Skillup=La comp\u00e9tence Poings augmente de {0}. Total ({1})
|
||||
Woodcutting.Ability.0=Souffleur de Feuilles
|
||||
Woodcutting.Ability.1=Souffle les feuilles
|
||||
Woodcutting.Ability.Chance.DDrop=[[RED]]Double Drop: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=[[RED]]Dur\u00e9e d\'Abbateur : [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Chance.DDrop=Double Drop: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=Dur\u00e9e d\'Abbateur : [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Locked.0=Bloqu\u00e9 jusqu\'\u00e0 {0}+ niveaux du talent (EXPLOSEUR DE FEUILLES)
|
||||
Woodcutting.SubSkill.TreeFeller.Name=Abatteur (Comp\u00e9tence)
|
||||
Woodcutting.SubSkill.TreeFeller.Description=Fait exploser les arbres
|
||||
@ -377,30 +377,30 @@ Woodcutting.SubSkill.HarvestLumber.Name=Double drops
|
||||
Woodcutting.SubSkill.HarvestLumber.Description=Double la quantit\u00e9 r\u00e9colt\u00e9e
|
||||
Woodcutting.Listener=B\u00fbcheronnage :
|
||||
Woodcutting.SkillName=B\u00dbCHERONNAGE
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]]**Votre comp\u00e9tence Abatteur est termin\u00e9e**
|
||||
Woodcutting.Skills.TreeFeller.Off=**Votre comp\u00e9tence Abatteur est termin\u00e9e**
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**ABATTEUR ACTIV\u00c9**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]Votre comp\u00e9tence [[YELLOW]]Abatteur [[GREEN]]est pr\u00eate !
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]]Abatteur[[GREEN]] est termin\u00e9 pour [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=Abatteur[[GREEN]] est termin\u00e9 pour [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]] a utilis\u00e9 [[RED]]Abatteur !
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]VOTRE HACHE SE BRISE EN MILLE MORCEAUX !
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]Cet arbre est trop large!
|
||||
Woodcutting.Skillup=[[YELLOW]]La comp\u00e9tence B\u00fbcheronnage augmente de {0}. Total ({1})
|
||||
Woodcutting.Skills.TreeFeller.Splinter=VOTRE HACHE SE BRISE EN MILLE MORCEAUX !
|
||||
Woodcutting.Skills.TreeFeller.Threshold=Cet arbre est trop large!
|
||||
Woodcutting.Skillup=La comp\u00e9tence B\u00fbcheronnage augmente de {0}. Total ({1})
|
||||
Ability.Generic.Refresh=[[GREEN]]**COMP\u00c9TENCES RAFRA\u00ceCHIES !**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0} : [[YELLOW]]{1}
|
||||
Ability.Generic.Template={0} : [[YELLOW]]{1}
|
||||
Combat.ArrowDeflect=[[WHITE]]**FL\u00c8CHE DEVI\u00c9E**
|
||||
Combat.BeastLore=[[GREEN]]**CONNAISSANCE DES B\u00caTES**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]Vie ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]Propri\u00e9taire ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**SANG**
|
||||
Combat.StruckByGore=[[RED]]**FRAPP\u00c9 JUSQU\'AU SANG**
|
||||
Combat.StruckByGore=**FRAPP\u00c9 JUSQU\'AU SANG**
|
||||
Combat.TargetDazed=La cible a \u00e9t\u00e9 [[DARK_RED]]\u00c9tourdi
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]Vous voyez flou. Vous vous sentez \u00e9tourdi.
|
||||
mcMMO.Description=[[DARK_AQUA]]About the [[YELLOW]]mcMMO[[DARK_AQUA]] Project:,[[GOLD]]mcMMO is an [[RED]]open source[[GOLD]] RPG mod created in February 2011,[[GOLD]]by [[BLUE]]nossr50[[GOLD]]. The goal is to provide a quality RPG experience.,[[DARK_AQUA]]Tips:,[[GOLD]] - [[GREEN]]Use [[RED]]/mcmmo help[[GREEN]] to see commands,[[GOLD]] - [[GREEN]]Type [[RED]]/SKILLNAME[[GREEN]] to see detailed skill info,[[DARK_AQUA]]Developers:,[[GOLD]] - [[GREEN]]nossr50 [[BLUE]](Founder & Project Lead),[[GOLD]] - [[GREEN]]GJ [[BLUE]](Former Project Lead),[[GOLD]] - [[GREEN]]NuclearW [[BLUE]](Developer),[[GOLD]] - [[GREEN]]bm01 [[BLUE]](Developer),[[GOLD]] - [[GREEN]]TfT_02 [[BLUE]](Developer),[[GOLD]] - [[GREEN]]Glitchfinder [[BLUE]](Developer),[[GOLD]] - [[GREEN]]t00thpick1 [[BLUE]](Developer),[[DARK_AQUA]]Useful Links:,[[GOLD]] - [[GREEN]]https://github.com/mcMMO-Dev/mcMMO/issues[[GOLD]] Bug Reporting,[[GOLD]] - [[GREEN]]#mcmmo @ irc.esper.net[[GOLD]] IRC Chat,
|
||||
Commands.addlevels.AwardAll.1=[[GREEN]]Vous avez \u00e9t\u00e9 r\u00e9compens\u00e9 de {0} niveau(x) dans tous les talents !
|
||||
Commands.addlevels.AwardAll.2=[[RED]]Tous les talents ont \u00e9t\u00e9 modifi\u00e9s pour {0}.
|
||||
Commands.addlevels.AwardAll.2=Tous les talents ont \u00e9t\u00e9 modifi\u00e9s pour {0}.
|
||||
Commands.addlevels.AwardSkill.1=[[GREEN]]Vous avez re\u00e7u {0} niveau dans {1}!
|
||||
Commands.addlevels.AwardSkill.2=[[RED]]{0} a \u00e9t\u00e9 modifi\u00e9 pour {1}.
|
||||
Commands.addlevels.AwardSkill.2={0} a \u00e9t\u00e9 modifi\u00e9 pour {1}.
|
||||
Commands.addxp.AwardAll=[[GREEN]]Vous avez \u00e9t\u00e9 r\u00e9compens\u00e9 de {0} experiences dans chaque comp\u00e9tences!
|
||||
Commands.addxp.AwardSkill=[[GREEN]]Vous avez \u00e9t\u00e9 r\u00e9compens\u00e9 de {0} experiences dans {1} !
|
||||
Commands.Ability.Off=Utilisation des comp\u00e9tences [[RED]]Off
|
||||
@ -413,12 +413,12 @@ Commands.Chat.Console=*Console*
|
||||
Commands.Cooldowns.Header=[[GOLD]]--= [[GREEN]]Temps d\'attente des capacit\u00e9s McMMO[[GOLD]] =--
|
||||
Commands.Cooldowns.Row.N=\ [[RED]]{0}[[WHITE]] - [[GOLD]]{1} secondes restantes
|
||||
Commands.Cooldowns.Row.Y=\ [[AQUA]]{0}[[WHITE]] - [[DARK_GREEN]] Pr\u00eat !
|
||||
Commands.Database.Cooldown=[[RED]]Vous devez attendre 1 seconde avant de pouvoir utiliser cette commande de nouveau.
|
||||
Commands.Database.Processing=[[RED]]Votre commande pr\u00e9c\u00e9dente est toujours en ex\u00e9cution. Veuillez patienter.
|
||||
Commands.Disabled=[[RED]]Cette commande est d\u00e9sactiv\u00e9e.
|
||||
Commands.DoesNotExist=[[RED]]Ce joueur est absent de la base de donn\u00e9es !
|
||||
Commands.GodMode.Disabled=[[YELLOW]]mcMMO Godmode d\u00e9sactiv\u00e9
|
||||
Commands.GodMode.Enabled=[[YELLOW]]mcMMO Godmode activ\u00e9
|
||||
Commands.Database.Cooldown=Vous devez attendre 1 seconde avant de pouvoir utiliser cette commande de nouveau.
|
||||
Commands.Database.Processing=Votre commande pr\u00e9c\u00e9dente est toujours en ex\u00e9cution. Veuillez patienter.
|
||||
Commands.Disabled=Cette commande est d\u00e9sactiv\u00e9e.
|
||||
Commands.DoesNotExist=Ce joueur est absent de la base de donn\u00e9es !
|
||||
Commands.GodMode.Disabled=mcMMO Godmode d\u00e9sactiv\u00e9
|
||||
Commands.GodMode.Enabled=mcMMO Godmode activ\u00e9
|
||||
Commands.GodMode.Forbidden=[mcMMO] Le Godmode n\'est pas permis sur ce monde (voir les permissions)
|
||||
Commands.GodMode.Toggle=Le mode Dieu a \u00e9t\u00e9 modifi\u00e9 pour [[YELLOW]]{0}
|
||||
Commands.Healthbars.Changed.HEARTS=[mcMMO] Le type d\'affichage de la barre de vie a \u00e9t\u00e9 chang\u00e9 en [[RED]]C\u0153urs[[WHITE]].
|
||||
@ -428,40 +428,40 @@ Commands.Healthbars.Invalid=Type de barre de vie invalide !
|
||||
Commands.Inspect=<joueur> [[GREEN]]- Voir les infos d\u00e9taill\u00e9es sur le joueur
|
||||
Commands.Invite.Success=[[GREEN]]Invitation envoy\u00e9e.
|
||||
Commands.Leaderboards=<talent> <page> [[GREEN]]- Classement
|
||||
Commands.mcc.Header=[[RED]]---[][[GREEN]]Commandes McMMO[[RED]][]---
|
||||
Commands.mcc.Header=---[][[GREEN]]Commandes McMMO[[RED]][]---
|
||||
Commands.mcgod=[[GREEN]]- Active/D\u00e9sactive le \"Mode Dieu\"
|
||||
Commands.mchud.Invalid=[[RED]]Ce n\'est pas un type valide d\'HUD.
|
||||
Commands.mchud.Invalid=Ce n\'est pas un type valide d\'HUD.
|
||||
Commands.mcpurge.Success=[[GREEN]]La base de donn\u00e9es a \u00e9t\u00e9 purg\u00e9e avec succ\u00e8s !
|
||||
Commands.mcrank.Heading=[[GOLD]]-=CLASSEMENT PERSONNEL=-
|
||||
Commands.mcrank.Overall=[[YELLOW]]Toutes competences confondues[[GREEN]] - [[GOLD]]Classement [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=[[RED]]CIBLE : [[WHITE]]{0}
|
||||
Commands.mcrank.Skill=[[YELLOW]]{0}[[GREEN]] - [[GOLD]]Classement [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Overall=Toutes competences confondues[[GREEN]] - [[GOLD]]Classement [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=CIBLE : [[WHITE]]{0}
|
||||
Commands.mcrank.Skill={0}[[GREEN]] - [[GOLD]]Classement [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Unranked=[[WHITE]]Non class\u00e9
|
||||
Commands.mcrefresh.Success=[[RED]]Le temps d\'attente de {0} a \u00e9t\u00e9 refra\u00eechi.
|
||||
Commands.mcrefresh.Success=Le temps d\'attente de {0} a \u00e9t\u00e9 refra\u00eechi.
|
||||
Commands.mcremove.Success=[[GREEN]]{0} a \u00e9t\u00e9 enlev\u00e9(e) de la base de donn\u00e9es avec succ\u00e8s !
|
||||
Commands.mctop.Tip=[[GOLD]]Astuce : Utilisez [[RED]]/mcrank[[GOLD]] pour voir vos positions dans les diff\u00e9rents classements !
|
||||
Commands.mmoedit=[joueur] <comp\u00e9tence> <nouvellevaleur> [[GREEN]] - Modifie la cible
|
||||
Commands.mmoedit.AllSkills.1=[[GREEN]]Le niveau de tous vos talents a \u00e9t\u00e9 mis \u00e0 {0} !
|
||||
Commands.mmoedit.Modified.1=[[GREEN]]Votre niveau en {0} a \u00e9t\u00e9 modifi\u00e9 \u00e0 {1}!
|
||||
Commands.mmoedit.Modified.2=[[RED]]{0} a \u00e9t\u00e9 modifi\u00e9 pour {1}.
|
||||
Commands.mcconvert.Database.Same=[[RED]]Vous utilisez d\u00e9j\u00e0 le/la {0} base de donn\u00e9es !
|
||||
Commands.mcconvert.Database.InvalidType=[[RED]]{0} n\'est pas un type de base de donn\u00e9es valide.
|
||||
Commands.mmoedit.Modified.2={0} a \u00e9t\u00e9 modifi\u00e9 pour {1}.
|
||||
Commands.mcconvert.Database.Same=Vous utilisez d\u00e9j\u00e0 le/la {0} base de donn\u00e9es !
|
||||
Commands.mcconvert.Database.InvalidType={0} n\'est pas un type de base de donn\u00e9es valide.
|
||||
Commands.mcconvert.Database.Start=[[GRAY]]Commencement de la conversion de {0} \u00e0 {1}...
|
||||
Commands.mcconvert.Database.Finish=[[GRAY]]La migration de la base de donn\u00e9es a \u00e9t\u00e9 achev\u00e9e; la {1} base de donn\u00e9es a d\u00e9sormais toutes les donn\u00e9es de/du {0} base de donn\u00e9es.
|
||||
Commands.mmoshowdb=[[YELLOW]]La base de donn\u00e9es actuellement utilis\u00e9e est [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=[[RED]]Type de formule inconnu! Les types valides sont: [[GREEN]]LINEAR [[RED]]and [[GREEN]]EXPONENTIAL.
|
||||
Commands.mcconvert.Experience.Same=[[RED]]Vous utilisez d\u00e9j\u00e0 une formule type {0}
|
||||
Commands.mmoshowdb=La base de donn\u00e9es actuellement utilis\u00e9e est [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=Type de formule inconnu! Les types valides sont: [[GREEN]]LINEAR [[RED]]and [[GREEN]]EXPONENTIAL.
|
||||
Commands.mcconvert.Experience.Same=Vous utilisez d\u00e9j\u00e0 une formule type {0}
|
||||
Commands.mcconvert.Experience.Start=[[GRAY]]Commencement de la conversion de {0} \u00e0 {1}...
|
||||
Commands.mcconvert.Experience.Finish=[[GRAY]]Changement de formule appliqu\u00e9; utilisation d\u00e9sormais de {0} pour la courbe d\'EXP.
|
||||
Commands.ModDescription=[[GREEN]]- Lire la br\u00e8ve description du mod
|
||||
Commands.NoConsole=Cette commande ne peut \u00eatre utilis\u00e9e via la console.
|
||||
Commands.Notifications.Off=Les notifications des capacit\u00e9s ont \u00e9t\u00e9 [[RED]]d\u00e9sactiv\u00e9es
|
||||
Commands.Notifications.On=Les notifications des capacit\u00e9s ont \u00e9t\u00e9 [[GREEN]]activ\u00e9es
|
||||
Commands.Offline=[[RED]]Cette commande ne fonctionne pas sur les joueurs non connect\u00e9s.
|
||||
Commands.NotLoaded=[[RED]]Le profil du joueur n\'est pas encore charg\u00e9.
|
||||
Commands.Other=[[RED]]---[][[GREEN]]AUTRES COMMANDES[[RED]][]---
|
||||
Commands.Party.Header=[[RED]]-----[][[GREEN]]GUILDE[[RED]][]-----
|
||||
Commands.Party.Features.Header=[[RED]]-----[][[GREEN]]FONCTIONALIT\u00c9S[[RED]][]-----
|
||||
Commands.Offline=Cette commande ne fonctionne pas sur les joueurs non connect\u00e9s.
|
||||
Commands.NotLoaded=Le profil du joueur n\'est pas encore charg\u00e9.
|
||||
Commands.Other=---[][[GREEN]]AUTRES COMMANDES[[RED]][]---
|
||||
Commands.Party.Header=-----[][[GREEN]]GUILDE[[RED]][]-----
|
||||
Commands.Party.Features.Header=-----[][[GREEN]]FONCTIONALIT\u00c9S[[RED]][]-----
|
||||
Commands.Party.Status=[[DARK_GRAY]]NOM: [[WHITE]]{0} {1} [[DARK_GRAY]]NIVEAU: [[DARK_AQUA]]{2}
|
||||
Commands.Party.Status.Alliance=[[DARK_GRAY]]ALLIANCES: [[WHITE]]{0}
|
||||
Commands.Party.UnlockedFeatures=[[DARK_GRAY]]Fonctionnalit\u00e9s D\u00e9bloqu\u00e9es: [[GRAY]][[ITALIC]]{0}
|
||||
@ -473,9 +473,9 @@ Commands.Party.MembersNear=[[DARK_GRAY]]A C\u00d4T\u00c9 DE VOUS [[DARK_AQUA]]{0
|
||||
Commands.Party.Accept=[[GREEN]]- Accepter l\'invitation de la guilde
|
||||
Commands.Party.Chat.Off=Canal guilde [[RED]]d\u00e9sactiv\u00e9
|
||||
Commands.Party.Chat.On=Canal guilde [[RED]]activ\u00e9
|
||||
Commands.Party.Commands=[[RED]]---[][[GREEN]]COMMANDES DE GUILDE[[RED]][]---
|
||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]Vous avez re\u00e7u une invitation de {1} pour rejoindre la guilde {0}
|
||||
Commands.Party.Invite.1=[[YELLOW]]Tapez [[GREEN]]/party accept[[YELLOW]] pour accepter l\'invitation de guilde
|
||||
Commands.Party.Commands=---[][[GREEN]]COMMANDES DE GUILDE[[RED]][]---
|
||||
Commands.Party.Invite.0=ALERT: [[GREEN]]Vous avez re\u00e7u une invitation de {1} pour rejoindre la guilde {0}
|
||||
Commands.Party.Invite.1=Tapez [[GREEN]]/party accept[[YELLOW]] pour accepter l\'invitation de guilde
|
||||
Commands.Party.Invite=[[GREEN]]- Envoyer une invitation de groupe.
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]Invitation accept\u00e9e. Vous avez rejoint la guilde {0}
|
||||
Commands.Party.Join=[[GRAY]]a rejoint la guilde: {0}
|
||||
@ -484,42 +484,42 @@ Commands.Party.Rename=[[GRAY]]Le nom de la guilde a \u00e9t\u00e9 chang\u00e9 en
|
||||
Commands.Party.SetSharing=[[GRAY]]Le partage des {0} de la guilde a \u00e9t\u00e9 mis \u00e0: [[DARK_AQUA]]{1}
|
||||
Commands.Party.ToggleShareCategory=[[GRAY]]Le partage d\'objets de guilde [[GOLD]]{0} [[GRAY]]a \u00e9t\u00e9 [[DARK_AQUA]]{1}
|
||||
Commands.Party.AlreadyExists=[[DARK_RED]]La guilde {0} existe d\u00e9j\u00e0!
|
||||
Commands.Party.Kick=[[RED]]Vous avez \u00e9t\u00e9 \u00e9ject\u00e9 du groupe {0} !
|
||||
Commands.Party.Leave=[[RED]]Vous avez quitt\u00e9 la guilde.
|
||||
Commands.Party.Members.Header=[[RED]]-----[][[GREEN]]MEMBRES[[RED]][]-----
|
||||
Commands.Party.None=[[RED]]Vous n\'\u00eates pas dans une guilde.
|
||||
Commands.Party.Kick=Vous avez \u00e9t\u00e9 \u00e9ject\u00e9 du groupe {0} !
|
||||
Commands.Party.Leave=Vous avez quitt\u00e9 la guilde.
|
||||
Commands.Party.Members.Header=-----[][[GREEN]]MEMBRES[[RED]][]-----
|
||||
Commands.Party.None=Vous n\'\u00eates pas dans une guilde.
|
||||
Commands.Party.Quit=[[GREEN]]- Quitter votre pr\u00e9sente guilde
|
||||
Commands.Party.Teleport=[[GREEN]]- Vous t\u00e9l\u00e9porte \u00e0 un membre de la guilde
|
||||
Commands.Party.Toggle=[[GREEN]]- Active/d\u00e9sactive le tchat de guilde
|
||||
Commands.Party1=[[GREEN]]- Cr\u00e9er une nouvelle guilde
|
||||
Commands.Party2=[[GREEN]]- Rejoindre une guilde
|
||||
Commands.Party.Alliance.Header=[[RED]]-----[][[GREEN]]ALLIANCE DE LA GUILDE[[RED]][]-----
|
||||
Commands.Party.Alliance.Header=-----[][[GREEN]]ALLIANCE DE LA GUILDE[[RED]][]-----
|
||||
Commands.Party.Alliance.Ally=[[WHITE]]{0} [[DARK_GRAY]]EST ALLI\u00c9 AVEC : [[WHITE]]{1}
|
||||
Commands.Party.Alliance.Members.Header=[[RED]]-----[][[GREEN]]MEMBRES DE L\'ALLIANCE[[RED]][]-----
|
||||
Commands.Party.Alliance.Invite.0=[[RED]]ALERTE: [[GREEN]]Vous avez re\u00e7u une invitation d\'alliance de guilde de {1} pour {0}
|
||||
Commands.Party.Alliance.Invite.1=[[YELLOW]]Tapez [[GREEN]]/party alliance accept[[YELLOW]] pour accepter l\'invitation
|
||||
Commands.Party.Alliance.Members.Header=-----[][[GREEN]]MEMBRES DE L\'ALLIANCE[[RED]][]-----
|
||||
Commands.Party.Alliance.Invite.0=ALERTE: [[GREEN]]Vous avez re\u00e7u une invitation d\'alliance de guilde de {1} pour {0}
|
||||
Commands.Party.Alliance.Invite.1=Tapez [[GREEN]]/party alliance accept[[YELLOW]] pour accepter l\'invitation
|
||||
Commands.Party.Alliance.Invite.Accepted=[[GREEN]]Invitation d\'alliance accept\u00e9e.
|
||||
Commands.Party.Alliance.None=[[RED]]Votre groupe n\'a pas d\'alli\u00e9.
|
||||
Commands.Party.Alliance.AlreadyAllies=[[RED]]Votre groupe a d\u00e9j\u00e0 une alliance. D\u00e9faites-la avec [[DARK_AQUA]]/party alliance disband
|
||||
Commands.Party.Alliance.Help.0=[[RED]]Cette guilde n\'a pas form\u00e9 d\'alliance. Invitez un chef de groupe.
|
||||
Commands.Party.Alliance.Help.1=[[RED]] \u00e0 une alliance [[DARK_AQUA]]/party alliance invite <joueur>[[RED]].
|
||||
Commands.Party.Alliance.None=Votre groupe n\'a pas d\'alli\u00e9.
|
||||
Commands.Party.Alliance.AlreadyAllies=Votre groupe a d\u00e9j\u00e0 une alliance. D\u00e9faites-la avec [[DARK_AQUA]]/party alliance disband
|
||||
Commands.Party.Alliance.Help.0=Cette guilde n\'a pas form\u00e9 d\'alliance. Invitez un chef de groupe.
|
||||
Commands.Party.Alliance.Help.1= \u00e0 une alliance [[DARK_AQUA]]/party alliance invite <joueur>[[RED]].
|
||||
Commands.ptp.Enabled=T\u00e9l\u00e9portation de guilde [[GREEN]]activ\u00e9e
|
||||
Commands.ptp.Disabled=T\u00e9l\u00e9portation de guilde [[RED]]d\u00e9sactiv\u00e9e
|
||||
Commands.ptp.NoRequests=[[RED]]Vous n\'avez pas de requ\u00eates de t\u00e9l\u00e9portation en ce moment
|
||||
Commands.ptp.NoWorldPermissions=[[RED]][mcMMO] Vous n\'avez pas la permission de vous t\u00e9l\u00e9porter dans le monde {0}.
|
||||
Commands.ptp.Request1=[[YELLOW]]{0} [[GREEN]] vous a envoy\u00e9 une requ\u00eate de t\u00e9l\u00e9portation vers vous.
|
||||
Commands.ptp.NoRequests=Vous n\'avez pas de requ\u00eates de t\u00e9l\u00e9portation en ce moment
|
||||
Commands.ptp.NoWorldPermissions=[mcMMO] Vous n\'avez pas la permission de vous t\u00e9l\u00e9porter dans le monde {0}.
|
||||
Commands.ptp.Request1={0} [[GREEN]] vous a envoy\u00e9 une requ\u00eate de t\u00e9l\u00e9portation vers vous.
|
||||
Commands.ptp.Request2=[[GREEN]]pour vous t\u00e9l\u00e9porter, tapez [[YELLOW]]/ptp accept[[GREEN]]. La requ\u00eate expire dans [[RED]]{0} [[GREEN]]secondes.
|
||||
Commands.ptp.AcceptAny.Enabled=Confirmation de la demande de t\u00e9l\u00e9portation de guilde [[GREEN]]activ\u00e9e
|
||||
Commands.ptp.AcceptAny.Disabled=Confirmation de la demande de t\u00e9l\u00e9portation du guilde [[RED]]d\u00e9sactiv\u00e9e
|
||||
Commands.ptp.RequestExpired=[[RED]]La requ\u00eate de t\u00e9l\u00e9portation de guilde a expir\u00e9!
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--Classement mcMMO ([[BLUE]]Niveau Global[[YELLOW]])--
|
||||
Commands.ptp.RequestExpired=La requ\u00eate de t\u00e9l\u00e9portation de guilde a expir\u00e9!
|
||||
Commands.PowerLevel.Leaderboard=--Classement mcMMO ([[BLUE]]Niveau Global[[YELLOW]])--
|
||||
Commands.PowerLevel.Capped=[[DARK_RED]]NIVEAU GLOBAL: [[GREEN]]{0} [[DARK_RED]]NIVEAU MAX ATTEINT: [[YELLOW]]{1}
|
||||
Commands.PowerLevel=[[DARK_RED]]NIVEAU GLOBAL : [[GREEN]]{0}
|
||||
Commands.Reset.All=[[GREEN]]Toutes vos comp\u00e9tences ont \u00e9t\u00e9 remises \u00e0 zero.
|
||||
Commands.Reset.Single=[[GREEN]]Ta comp\u00e9tence {0} a \u00e9t\u00e9 remise \u00e0 zero.
|
||||
Commands.Reset=[[GREEN]]- Remise \u00e0 0 d\'un talent
|
||||
Commands.Scoreboard.Clear=[[DARK_AQUA]]Le tableau des scores McMMO a \u00e9t\u00e9 enlev\u00e9.
|
||||
Commands.Scoreboard.NoBoard=[[RED]]Le tableau des scores McMMO n\'est pas actif.
|
||||
Commands.Scoreboard.NoBoard=Le tableau des scores McMMO n\'est pas actif.
|
||||
Commands.Scoreboard.Keep=[[DARK_AQUA]]Le tableau des scores McMMO restera affich\u00e9 tant que vous n\'utiliserez pas [[GREEN]]/mcscoreboard clear[[DARK_AQUA]].
|
||||
Commands.Scoreboard.Timer=[[DARK_AQUA]]Le tableau des scores mcMMO sera enlev\u00e9 dans [[GOLD]]{0}[[DARK_AQUA]] secondes \u00e0 compter de maintenant.
|
||||
Commands.Scoreboard.Help.0=[[GOLD]] == [[GREEN]]Aide pour [[RED]]/mcscoreboard[[GOLD]] ==
|
||||
@ -528,16 +528,16 @@ Commands.Scoreboard.Help.2=[[DARK_AQUA]]/mcscoreboard[[AQUA]] keep [[WHITE]] - G
|
||||
Commands.Scoreboard.Help.3=[[DARK_AQUA]]/mcscoreboard[[AQUA]] time [n] [[WHITE]] - enl\u00e8ve le tableau des scores McMMO apr\u00e8s [[LIGHT_PURPLE]]n[[WHITE]] secondes
|
||||
Commands.Scoreboard.Tip.Keep=[[GOLD]]Astuce : Utilisez [[RED]]/mcscoreboard keep[[GOLD]] quand le tableau des scores est affich\u00e9 pour l\'emp\u00eacher de s\'en aller.
|
||||
Commands.Scoreboard.Tip.Clear=[[GOLD]]Astuce : Utilisez [[RED]]/mcscoreboard clear[[GOLD]] pour de d\u00e9barrasser du tableau des scores.
|
||||
Commands.Skill.Invalid=[[RED]]Ce talent n\'existe pas !
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--Classement mcMMO ([[BLUE]]{0}[[YELLOW]])--
|
||||
Commands.Skill.Invalid=Ce talent n\'existe pas !
|
||||
Commands.Skill.Leaderboard=--Classement mcMMO ([[BLUE]]{0}[[YELLOW]])--
|
||||
Commands.SkillInfo=[[GREEN]]- Voir des informations d\u00e9taill\u00e9es \u00e0 propos d\'un talent
|
||||
Commands.Stats.Self=VOS STATISTIQUES
|
||||
Commands.Stats=[[GREEN]]- Voir vos statistiques McMMO
|
||||
Commands.ToggleAbility=[[GREEN]]- Active/D\u00e9sactive la possibilit\u00e9 d\'activation d\'une capacit\u00e9 avec un clic droit
|
||||
Commands.Usage.0=[[RED]]L\'utilisation correcte est /{0}
|
||||
Commands.Usage.1=[[RED]]L\'utilisation correcte est /{0} {1}
|
||||
Commands.Usage.2=[[RED]]L\'utilisation correcte est /{0} {1} {2}
|
||||
Commands.Usage.3=[[RED]]L\'utilisation correcte est /{0} {1} {2} {3}
|
||||
Commands.Usage.0=L\'utilisation correcte est /{0}
|
||||
Commands.Usage.1=L\'utilisation correcte est /{0} {1}
|
||||
Commands.Usage.2=L\'utilisation correcte est /{0} {1} {2}
|
||||
Commands.Usage.3=L\'utilisation correcte est /{0} {1} {2} {3}
|
||||
Commands.Usage.FullClassName=nom de classe
|
||||
Commands.Usage.Level=niveau
|
||||
Commands.Usage.Message=message
|
||||
@ -548,59 +548,59 @@ Commands.Usage.Player=joueur
|
||||
Commands.Usage.Rate=taux
|
||||
Commands.Usage.Skill=Comp\u00e9tence
|
||||
Commands.Usage.XP=exp
|
||||
mcMMO.NoInvites=[[RED]]Vous n\'avez pas \u00e9t\u00e9 invit\u00e9
|
||||
mcMMO.NoInvites=Vous n\'avez pas \u00e9t\u00e9 invit\u00e9
|
||||
mcMMO.NoPermission=[[DARK_RED]]Vous n\'avez pas les droits.
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]Si vous n\'avez pas les droits pour une comp\u00e9tence, il n\'appara\u00eetra pas ici.
|
||||
Party.Forbidden=[mcMMO] Les groupes ne sont pas permis dans ce monde (voir les permissions)
|
||||
Party.Help.0=[[RED]]L\'utilisation correcte est [[DARK_AQUA]]{0} <joueur> [mot de passe].
|
||||
Party.Help.1=[[RED]]pour cr\u00e9er une guilde, utilisez [[DARK_AQUA]]{0} <name> [mot de passe].
|
||||
Party.Help.2=[[RED]]Consultez [[DARK_AQUA]]{0} [[RED]]pour plus d\'informations
|
||||
Party.Help.3=[[RED]]Utilisez [[DARK_AQUA]]{0} <player> [motdepasse] [[RED]]pour rejoindre, ou [[DARK_AQUA]]{1} [[RED]]pour quitter
|
||||
Party.Help.4=[[RED]]Pour bloquer ou d\u00e9bloquer votre groupe, utilisez [[DARK_AQUA]]{0}
|
||||
Party.Help.5=[[RED]]Pour prot\u00e9ger votre guilde avec un mot de passe, utilisez [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=[[RED]]Pour expulser un joueur de la guilde, utilisez [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.7=[[RED]]Pour transmettre la possession de votre groupe, utilisez [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=[[RED]]Pour d\u00e9faire le groupe, utilisez [[DARK_AQUA]]{0}
|
||||
Party.Help.9=[[RED]]Utilisez [[DARK_AQUA]]{0} [[RED]]pour partager des objets avec les membres du groupe
|
||||
Party.Help.10=[[RED]]Utilisez [[DARK_AQUA]]{0} [[RED]]pour activer le partage d\'EXP entre les membres du groupe.
|
||||
Party.Help.0=L\'utilisation correcte est [[DARK_AQUA]]{0} <joueur> [mot de passe].
|
||||
Party.Help.1=pour cr\u00e9er une guilde, utilisez [[DARK_AQUA]]{0} <name> [mot de passe].
|
||||
Party.Help.2=Consultez [[DARK_AQUA]]{0} [[RED]]pour plus d\'informations
|
||||
Party.Help.3=Utilisez [[DARK_AQUA]]{0} <player> [motdepasse] [[RED]]pour rejoindre, ou [[DARK_AQUA]]{1} [[RED]]pour quitter
|
||||
Party.Help.4=Pour bloquer ou d\u00e9bloquer votre groupe, utilisez [[DARK_AQUA]]{0}
|
||||
Party.Help.5=Pour prot\u00e9ger votre guilde avec un mot de passe, utilisez [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=Pour expulser un joueur de la guilde, utilisez [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.7=Pour transmettre la possession de votre groupe, utilisez [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=Pour d\u00e9faire le groupe, utilisez [[DARK_AQUA]]{0}
|
||||
Party.Help.9=Utilisez [[DARK_AQUA]]{0} [[RED]]pour partager des objets avec les membres du groupe
|
||||
Party.Help.10=Utilisez [[DARK_AQUA]]{0} [[RED]]pour activer le partage d\'EXP entre les membres du groupe.
|
||||
Party.InformedOnJoin={0} [[GREEN]]a rejoint votre groupe
|
||||
Party.InformedOnQuit={0} [[GREEN]]a quitt\u00e9 votre groupe
|
||||
Party.InformedOnNameChange=[[GOLD]]{0} [[GREEN]]a modifi\u00e9 le nom du groupe en [[WHITE]]{1}
|
||||
Party.InvalidName=[[DARK_RED]]Ce n\'est pas un nom valide de guilde.
|
||||
Party.Invite.Self=[[RED]]Vous ne pouvez pas vous inviter vous-m\u00eame !
|
||||
Party.IsLocked=[[RED]]Ce groupe est d\u00e9j\u00e0 verrouill\u00e9 !
|
||||
Party.IsntLocked=[[RED]]Cette guilde n\'est pas verrouill\u00e9e !
|
||||
Party.Locked=[[RED]]Le groupe est verrouill\u00e9, seul le chef de groupe peut inviter.
|
||||
Party.Invite.Self=Vous ne pouvez pas vous inviter vous-m\u00eame !
|
||||
Party.IsLocked=Ce groupe est d\u00e9j\u00e0 verrouill\u00e9 !
|
||||
Party.IsntLocked=Cette guilde n\'est pas verrouill\u00e9e !
|
||||
Party.Locked=Le groupe est verrouill\u00e9, seul le chef de groupe peut inviter.
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} n\'est pas dans votre guilde.
|
||||
Party.NotOwner=[[DARK_RED]]Vous n\'\u00eates pas le chef de cette guilde.
|
||||
Party.Target.NotOwner=[[DARK_RED]]{0} n\'est pas le chef de la guilde.
|
||||
Party.Owner.New=[[GREEN]]{0} est le nouveau chef de la guilde.
|
||||
Party.Owner.NotLeader=[[DARK_RED]]Vous n\'\u00eates d\u00e9sormais plus le chef de la guilde.
|
||||
Party.Owner.Player=[[GREEN]]Vous \u00eates d\u00e9sormais le chef de la guilde.
|
||||
Party.Password.None=[[RED]]Cette guilde est prot\u00e9g\u00e9e par un mot de passe. S\'il vous pla\u00eet, renseignez le mot de passe pour la rejoindre.
|
||||
Party.Password.Incorrect=[[RED]]Le mot de passe de la guilde est incorrect.
|
||||
Party.Password.None=Cette guilde est prot\u00e9g\u00e9e par un mot de passe. S\'il vous pla\u00eet, renseignez le mot de passe pour la rejoindre.
|
||||
Party.Password.Incorrect=Le mot de passe de la guilde est incorrect.
|
||||
Party.Password.Set=[[GREEN]]Mot de passe de la guilde r\u00e9gl\u00e9 \u00e0 {0}
|
||||
Party.Password.Removed=[[GREEN]]Le mot de passe du groupe a \u00e9t\u00e9 enlev\u00e9.
|
||||
Party.Player.Invalid=[[RED]]Ce joueur n\'existe pas.
|
||||
Party.Player.Invalid=Ce joueur n\'existe pas.
|
||||
Party.NotOnline=[[DARK_RED]]{0} n\'est pas connect\u00e9 !
|
||||
Party.Player.InSameParty=[[RED]]{0} est d\u00e9j\u00e0 dans votre guilde !
|
||||
Party.Player.InSameParty={0} est d\u00e9j\u00e0 dans votre guilde !
|
||||
Party.PlayerNotInParty=[[DARK_RED]]{0} n\'est pas dans votre guilde
|
||||
Party.Specify=[[RED]]Vous devez sp\u00e9cifier une guilde.
|
||||
Party.Teleport.Dead=[[RED]]Vous ne pouvez pas vous t\u00e9l\u00e9porter sur un joueur mort.
|
||||
Party.Teleport.Hurt=[[RED]]Vous avez \u00e9t\u00e9 bless\u00e9 dans les derni\u00e8res {0} secondes et vous ne pouvez par cons\u00e9quent pas \u00eatre t\u00e9l\u00e9port\u00e9.
|
||||
Party.Specify=Vous devez sp\u00e9cifier une guilde.
|
||||
Party.Teleport.Dead=Vous ne pouvez pas vous t\u00e9l\u00e9porter sur un joueur mort.
|
||||
Party.Teleport.Hurt=Vous avez \u00e9t\u00e9 bless\u00e9 dans les derni\u00e8res {0} secondes et vous ne pouvez par cons\u00e9quent pas \u00eatre t\u00e9l\u00e9port\u00e9.
|
||||
Party.Teleport.Player=[[GREEN]]Vous vous \u00eates t\u00e9l\u00e9port\u00e9 sur {0}.
|
||||
Party.Teleport.Self=[[RED]]Vous ne pouvez pas vous t\u00e9l\u00e9porter \u00e0 vous m\u00eame !
|
||||
Party.Teleport.Self=Vous ne pouvez pas vous t\u00e9l\u00e9porter \u00e0 vous m\u00eame !
|
||||
Party.Teleport.Target=[[GREEN]]{0} s\'est t\u00e9l\u00e9port\u00e9 sur vous.
|
||||
Party.Teleport.Disabled=[[RED]]{0} n\'a pas rendu possible la t\u00e9l\u00e9portation.
|
||||
Party.Rename.Same=[[RED]]C\'est d\u00e9j\u00e0 le nom de votre groupe!
|
||||
Party.Join.Self=[[RED]]Vous ne pouvez pas vous rejoindre vous-m\u00eame !
|
||||
Party.Teleport.Disabled={0} n\'a pas rendu possible la t\u00e9l\u00e9portation.
|
||||
Party.Rename.Same=C\'est d\u00e9j\u00e0 le nom de votre groupe!
|
||||
Party.Join.Self=Vous ne pouvez pas vous rejoindre vous-m\u00eame !
|
||||
Party.Unlocked=[[GRAY]]Le groupe est d\u00e9verrouill\u00e9.
|
||||
Party.Disband=[[GRAY]]La guilde a \u00e9t\u00e9 dissoute
|
||||
Party.Alliance.Formed=[[GRAY]]Votre groupe est d\u00e9sormais alli\u00e9 avec [[GREEN]]{0}
|
||||
Party.Alliance.Disband=[[GRAY]]Votre groupe n\'est d\u00e9sormais plus alli\u00e9 avec [[RED]]{0}
|
||||
Party.Status.Locked=[[DARK_RED]](INVITATION-SEULEMENT)
|
||||
Party.Status.Unlocked=[[DARK_GREEN]](OUVERT)
|
||||
Party.LevelUp=[[YELLOW]]Le niveau de votre guilde a \u00e9t\u00e9 augment\u00e9 de {0}. Total ({1})
|
||||
Party.LevelUp=Le niveau de votre guilde a \u00e9t\u00e9 augment\u00e9 de {0}. Total ({1})
|
||||
Party.Feature.Chat=Tchat de guilde
|
||||
Party.Feature.Teleport=T\u00e9l\u00e9portation de guilde
|
||||
Party.Feature.Alliance=Alliances
|
||||
@ -611,11 +611,11 @@ Party.Feature.Locked.Teleport=Bloqu\u00e9 jusqu\'\u00e0 {0}+ (T\u00e9l\u00e9port
|
||||
Party.Feature.Locked.Alliance=Bloqu\u00e9 jusqu\'\u00e0 {0}+ (Alliances)
|
||||
Party.Feature.Locked.ItemShare=Bloqu\u00e9 jusqu\'\u00e0 {0}+ (Partage d\'objets)
|
||||
Party.Feature.Locked.XpShare=Bloqu\u00e9 jusqu\'\u00e0 {0}+ (Partage d\'EXP)
|
||||
Party.Feature.Disabled.1=[[RED]]Le tchat de guilde n\'est pas d\u00e9bloqu\u00e9 pour le moment.
|
||||
Party.Feature.Disabled.2=[[RED]]La t\u00e9l\u00e9portation de guilde n\'est pas d\u00e9bloqu\u00e9e pour le moment.
|
||||
Party.Feature.Disabled.3=[[RED]]Les alliances de guilde ne sont pas d\u00e9bloqu\u00e9es pour le moment.
|
||||
Party.Feature.Disabled.4=[[RED]]Le partage d\'objets avec la guilde n\'est pas d\u00e9bloqu\u00e9 pour le moment.
|
||||
Party.Feature.Disabled.5=[[RED]]Le partage d\'EXP gr\u00e2ce \u00e0 la guilde n\'est pas d\u00e9bloqu\u00e9 pour le moment.
|
||||
Party.Feature.Disabled.1=Le tchat de guilde n\'est pas d\u00e9bloqu\u00e9 pour le moment.
|
||||
Party.Feature.Disabled.2=La t\u00e9l\u00e9portation de guilde n\'est pas d\u00e9bloqu\u00e9e pour le moment.
|
||||
Party.Feature.Disabled.3=Les alliances de guilde ne sont pas d\u00e9bloqu\u00e9es pour le moment.
|
||||
Party.Feature.Disabled.4=Le partage d\'objets avec la guilde n\'est pas d\u00e9bloqu\u00e9 pour le moment.
|
||||
Party.Feature.Disabled.5=Le partage d\'EXP gr\u00e2ce \u00e0 la guilde n\'est pas d\u00e9bloqu\u00e9 pour le moment.
|
||||
Party.ShareType.Xp=EXP
|
||||
Party.ShareType.Item=OBJET
|
||||
Party.ShareMode.None=AUCUN
|
||||
@ -643,11 +643,11 @@ Commands.XPGain.Woodcutting=Abbatage de bois
|
||||
Commands.XPGain=[[DARK_GRAY]]Gain d\'exp\u00e9rience: [[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]Votre barre d\'XP est maintenant verrouill\u00e9e sur {0} !
|
||||
Commands.xplock.unlocked=[[GOLD]]Votre barre d\'XP est maintenant [[GREEN]]D\u00c9VERROUILL\u00c9E[[GOLD]] !!
|
||||
Commands.xprate.modified=[[RED]]Le TAUX D\'EXP a \u00e9t\u00e9 pass\u00e9 \u00e0 {0}
|
||||
Commands.xprate.over=[[RED]]L\u2019\u00e9v\u00e9nement de bonus d\'XP mcMMO est TERMIN\u00c9 !!
|
||||
Commands.xprate.proper.0=[[RED]]L\'usage correct pour changer le taux d\'XP est /xprate <valeur> <true/false>
|
||||
Commands.xprate.proper.1=[[RED]]L\'usage correct pour restaurer le taux d\'XP est /xprate reset
|
||||
Commands.xprate.proper.2=[[RED]]Veuillez sp\u00e9cifier true ou false pour indiquer si il s\'agit ou pas d\'un \u00e9v\u00e9nement temporaire
|
||||
Commands.xprate.modified=Le TAUX D\'EXP a \u00e9t\u00e9 pass\u00e9 \u00e0 {0}
|
||||
Commands.xprate.over=L\u2019\u00e9v\u00e9nement de bonus d\'XP mcMMO est TERMIN\u00c9 !!
|
||||
Commands.xprate.proper.0=L\'usage correct pour changer le taux d\'XP est /xprate <valeur> <true/false>
|
||||
Commands.xprate.proper.1=L\'usage correct pour restaurer le taux d\'XP est /xprate reset
|
||||
Commands.xprate.proper.2=Veuillez sp\u00e9cifier true ou false pour indiquer si il s\'agit ou pas d\'un \u00e9v\u00e9nement temporaire
|
||||
Commands.xprate.started.0=[[GOLD]]L\u2019\u00c9V\u00c9NEMENT BONUS D\'XP mcMMO VIENT DE COMMENCER !
|
||||
Commands.xprate.started.1=[[GOLD]]Le bonus d\'XP mcMMO est maintenant de {0}x !
|
||||
XPRate.Event=[[GOLD]]Un \u00e9v\u00e9nement bonus d\'Exp\u00e9rience est actuellement lanc\u00e9 ! Le bonus est de {0}x !
|
||||
@ -660,7 +660,7 @@ Guides.Available=[[GRAY]]Guide pour le/la {0} est disponible - \u00e9crivez /{1}
|
||||
Guides.Header=[[GOLD]]-=[[GREEN]]{0} Guide[[GOLD]]=-
|
||||
Guides.Page.Invalid=Le num\u00e9ro de page est invalide
|
||||
Guides.Page.OutOfRange=Cette page n\'existe pas, il y a seulement {0} pages totales.
|
||||
Guides.Usage=[[RED]] L\'utilisation est /{0} ? [page]
|
||||
Guides.Usage= L\'utilisation est /{0} ? [page]
|
||||
Guides.Acrobatics.Section.0=[[DARK_AQUA]]A propos de l\'Acrobatie:\n[[YELLOW]]L\'acrobatie est l\'art de bouger gracieusement dans mcMMO.\n[[YELLOW]]Donne des bonus au combat et de r\u00e9sistance aux d\u00e9g\u00e2ts physiques.\n[[DARK_AQUA]]GAIN D\'XP:\n[[YELLOW]]Pour gagner de l\'exp\u00e9rience, vous devez esquiver des d\u00e9g\u00e2ts\n[[YELLOW]]en combat ou encaisser des d\u00e9g\u00e2ts de chute.
|
||||
Guides.Acrobatics.Section.1=[[DARK_AQUA]]Comment fonctionne la Roulade?\n[[YELLOW]]Vous avez une chance, lorsque vous prenez des d\u00e9g\u00e2ts dus \u00e0 une chute,\n[[YELLOW]]d\'esquiver ces d\u00e9g\u00e2ts. Maintenez la touche pour s\'accroupir\n[[YELLOW]]pour doubler les chances d\'esquiver ces d\u00e9g\u00e2ts.\n[[YELLOW]]Cette manipulation activera la Roulade Gracieuse. \n[[YELLOW]]La Roulade Gracieuse fonctionne comme une Roulade classique,\n[[YELLOW]]mais vous avez deux fois plus de chance d\'\u00e9chapper aux d\u00e9g\u00e2ts.\n[[YELLOW]]Votre pourcentage de chance de Roulade d\u00e9pend du niveau de votre Comp\u00e9tence.
|
||||
Guides.Acrobatics.Section.2=[[DARK_AQUA]]Comment fonctionne l\'esquive?\n[[YELLOW]]L\'esquive est une capacit\u00e9 passive qui peut vous permettre de\n[[YELLOW]]diminuer les d\u00e9g\u00e2ts de moiti\u00e9 lorsque vous \u00eates bless\u00e9 au combat.\n[[YELLOW]]Les chances d\'esquiver sont fonction de votre niveau de comp\u00e9tence.
|
||||
@ -742,15 +742,15 @@ Guides.Woodcutting.Section.0=[[DARK_AQUA]]A propos de b\u00fbcheronnage:\n[[YELL
|
||||
Guides.Woodcutting.Section.1=[[DARK_AQUA]]Comment fonctionne le Fendeur d\'Arbres?\n[[YELLOW]]Le Fendage d\'Arbres est une capacit\u00e9 active, en faisant un clic-droit\n[[YELLOW]]avec une hache \u00e0 la main, vous activerez cette capacit\u00e9. Ceci vous\n[[YELLOW]]permettra d\'abattre un arbre int\u00e9gralement, en r\u00e9cup\u00e9rant\n[[YELLOW]]toutes les b\u00fbches d\'un coup.
|
||||
Guides.Woodcutting.Section.2=[[DARK_AQUA]]Comment fonctionne le Souffleur de Feuilles?\n[[YELLOW]]Souffleur de Feuilles est une capacit\u00e9 passive qui permet de casser un\n[[YELLOW]]bloc de feuilles instantan\u00e9ment quand vous les cassez avec un hache. Par d\u00e9faut,\n[[YELLOW]]cette capacit\u00e9 est disponible au niveau 100 de la Comp\u00e9tence B\u00fbcheronnage.
|
||||
Guides.Woodcutting.Section.3=[[DARK_AQUA]]Comment fonctionne Double Bois?\n[[YELLOW]]Cette capacit\u00e9 passive vous donne une chance\n[[YELLOW]]de r\u00e9cup\u00e9rer une b\u00fbche suppl\u00e9mentaire par bloc de bois cass\u00e9.
|
||||
Inspect.Offline=[[RED]]Tu n\'as pas la permission d\'inspecter un joueur hors ligne!
|
||||
Inspect.Offline=Tu n\'as pas la permission d\'inspecter un joueur hors ligne!
|
||||
Inspect.OfflineStats=mcMMO Stats for Offline Player [[YELLOW]]{0}
|
||||
Inspect.Stats=[[GREEN]]mcMMO Stats for [[YELLOW]]{0}
|
||||
Inspect.TooFar=[[RED]]Vous \u00eates trop \u00e9loign\u00e9 de ce joueur pour l\'inspecter !
|
||||
Inspect.TooFar=Vous \u00eates trop \u00e9loign\u00e9 de ce joueur pour l\'inspecter !
|
||||
Item.ChimaeraWing.Fail=**\u00c9CHEC D\'AILE DE CHIM\u00c8RE !**
|
||||
Item.ChimaeraWing.Pass=**AILE DE CHIM\u00c8RE**
|
||||
Item.ChimaeraWing.Name=Aile de Chim\u00e8re
|
||||
Item.ChimaeraWing.Lore=[[GRAY]]Vous t\u00e9l\u00e9porte \u00e0 votre lit.
|
||||
Item.Generic.Wait=[[RED]]Vous devez attendre avant de pouvoir utiliser cela de nouveau ! [[YELLOW]]({0}s)
|
||||
Item.Generic.Wait=Vous devez attendre avant de pouvoir utiliser cela de nouveau ! [[YELLOW]]({0}s)
|
||||
Item.Injured.Wait=Vous avez \u00e9t\u00e9 bless\u00e9 r\u00e9cemment et devez attendre pour utiliser cela. [[YELLOW]]({0}s)
|
||||
Item.FluxPickaxe.Name=Pioche de Flux
|
||||
Item.FluxPickaxe.Lore.1=[[GRAY]]A une chance de fondre des minerais instantan\u00e9ment.
|
||||
@ -759,13 +759,13 @@ Teleport.Commencing=[[GRAY]]La t\u00e9l\u00e9portation commence dans [[GOLD]]({0
|
||||
Teleport.Cancelled=[[DARK_RED]]T\u00e9l\u00e9portation annul\u00e9e !
|
||||
Skills.Child=[[GOLD]](TALENT ENFANT)
|
||||
Skills.Disarmed=[[DARK_RED]]Vous avez \u00e9t\u00e9 d\u00e9sarm\u00e9 !
|
||||
Skills.Header=[[RED]]-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.Header=-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.NeedMore=[[DARK_RED]]Vous devez en avoir plus
|
||||
Skills.Parents=PARENTS
|
||||
Skills.Stats=[[YELLOW]]{0}[[GREEN]]{1}[[DARK_AQUA]] XP ([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats=[[YELLOW]]{0}[[GREEN]]{1}
|
||||
Skills.TooTired=[[RED]]Vous \u00eates trop fatigu\u00e9 pour r\u00e9utiliser cette comp\u00e9tence maintenant.
|
||||
Skills.Cancelled=[[RED]]{0} annul\u00e9(e) !
|
||||
Skills.Stats={0}[[GREEN]]{1}[[DARK_AQUA]] XP ([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats={0}[[GREEN]]{1}
|
||||
Skills.TooTired=Vous \u00eates trop fatigu\u00e9 pour r\u00e9utiliser cette comp\u00e9tence maintenant.
|
||||
Skills.Cancelled={0} annul\u00e9(e) !
|
||||
Skills.ConfirmOrCancel=[[GREEN]]Fa\u00eetes de nouveau un clic droit pour confirmer [[GOLD]]{0}[[GREEN]]. Clic gauche pour annuler.
|
||||
Stats.Header.Combat=[[GOLD]]-=COMP\u00c9TENCES DE COMBAT=-
|
||||
Stats.Header.Gathering=[[GOLD]]-=COMP\u00c9TENCES DE R\u00c9COLTE=-
|
||||
@ -797,15 +797,15 @@ MOTD.Donate=[[DARK_AQUA]]Donation Info:
|
||||
MOTD.Hardcore.Enabled=[[GOLD]][mcMMO] [[DARK_AQUA]]Mode Hardcore activ\u00e9 : [[DARK_RED]]{0}
|
||||
MOTD.Hardcore.DeathStatLoss.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]P\u00e9nalit\u00e9s sur les talents lors de la mort : [[DARK_RED]]{0}%
|
||||
MOTD.Hardcore.Vampirism.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Pourcentage de perte de statistiques de Vampirisme: [[DARK_RED]]{0}%
|
||||
MOTD.PerksPrefix=[[RED]][mcMMO Comp\u00e9tences]
|
||||
MOTD.PerksPrefix=[mcMMO Comp\u00e9tences]
|
||||
MOTD.Version=[[GOLD]][mcMMO] Version [[DARK_AQUA]]{0}
|
||||
MOTD.Website=[[GOLD]][mcMMO] [[GREEN]]{0}[[YELLOW]] - mcMMO Website
|
||||
Smelting.Ability.FluxMining=[[RED]]Chance de Minage en Flux : [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=[[RED]]Multiplicateur d\'efficacit\u00e9 des Combustibles: [[YELLOW]]{0}x
|
||||
Smelting.Ability.FluxMining=Chance de Minage en Flux : [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=Multiplicateur d\'efficacit\u00e9 des Combustibles: [[YELLOW]]{0}x
|
||||
Smelting.Ability.Locked.0=Bloqu\u00e9 jusqu\'\u00e0 {0}+ niveaux de talent (BOOST D\'EXPERIENCE VANILLA)
|
||||
Smelting.Ability.Locked.1=Bloqu\u00e9 jusqu\'\u00e0 {0}+ niveaux du talent (MINAGE PAR EXPLOSIONS)
|
||||
Smelting.Ability.SecondSmelt=[[RED]]Chance de seconde cuisson: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=[[RED]]Multiplicateur d\'EXP Vanilla: [[YELLOW]]{0}x
|
||||
Smelting.Ability.SecondSmelt=Chance de seconde cuisson: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=Multiplicateur d\'EXP Vanilla: [[YELLOW]]{0}x
|
||||
Smelting.SubSkill.FuelEfficiency.Name=Efficacit\u00e9 du combustible
|
||||
Smelting.SubSkill.FuelEfficiency.Description=Augmente la dur\u00e9e de vie du combustible utilis\u00e9 dans les fours lors des cuissons
|
||||
Smelting.SubSkill.SecondSmelt.Name=Seconde Cuisson
|
||||
@ -848,18 +848,18 @@ Commands.Description.xplock=Bloque votre barre d\'EXP McMMO pour un talent sp\u0
|
||||
Commands.Description.xprate=Modifie le taux d\'EXP McMMO ou d\u00e9bute un event XP McMMO
|
||||
UpdateChecker.Outdated=Vous utilisez une ancienne version de McMMO !
|
||||
UpdateChecker.NewAvailable=Une nouvelle version est disponible sur BukkitDev.
|
||||
Scoreboard.Header.PlayerStats=[[YELLOW]]Statistiques McMMO
|
||||
Scoreboard.Header.PlayerCooldowns=[[YELLOW]]Temps d\'attente McMMO
|
||||
Scoreboard.Header.PlayerRank=[[YELLOW]]Classement McMMO
|
||||
Scoreboard.Header.PlayerInspect=[[YELLOW]]Statistiques McMMO: {0}
|
||||
Scoreboard.Header.PowerLevel=[[RED]]Niveau de puissance
|
||||
Scoreboard.Header.PlayerStats=Statistiques McMMO
|
||||
Scoreboard.Header.PlayerCooldowns=Temps d\'attente McMMO
|
||||
Scoreboard.Header.PlayerRank=Classement McMMO
|
||||
Scoreboard.Header.PlayerInspect=Statistiques McMMO: {0}
|
||||
Scoreboard.Header.PowerLevel=Niveau de puissance
|
||||
Scoreboard.Misc.PowerLevel=[[GOLD]]Niveau de puissance
|
||||
Scoreboard.Misc.Level=[[DARK_AQUA]]Niveau
|
||||
Scoreboard.Misc.CurrentXP=[[GREEN]]EXP actuelle
|
||||
Scoreboard.Misc.RemainingXP=[[YELLOW]]EXP restante
|
||||
Scoreboard.Misc.RemainingXP=EXP restante
|
||||
Scoreboard.Misc.Cooldown=[[LIGHT_PURPLE]]Temps d\'attente
|
||||
Scoreboard.Misc.Overall=[[GOLD]]Global
|
||||
Scoreboard.Misc.Ability=Capacit\u00e9
|
||||
Profile.Loading.Success=[[GREEN]]G\u00e9nial! Vos donn\u00e9es McMMO ont \u00e9t\u00e9 charg\u00e9es.
|
||||
Profile.Loading.Failure=[[RED]]McMMO ne peut toujours pas charger vos donn\u00e9es. Vous devriez sans doute [[AQUA]]contacter le possesseur du serveur.\n[[YELLOW]]Vous pouvez toujours jouer sur le serveur, mais vous n\'aurez [[BOLD]]pas de niveaux McMMO[[YELLOW]] et chaque EXP obtenu[[BOLD]]ne sera pas sauvergard\u00e9[[YELLOW]].
|
||||
Profile.Loading.Failure=McMMO ne peut toujours pas charger vos donn\u00e9es. Vous devriez sans doute [[AQUA]]contacter le possesseur du serveur.\n[[YELLOW]]Vous pouvez toujours jouer sur le serveur, mais vous n\'aurez [[BOLD]]pas de niveaux McMMO[[YELLOW]] et chaque EXP obtenu[[BOLD]]ne sera pas sauvergard\u00e9[[YELLOW]].
|
||||
Profile.Loading.AdminFailureNotice=[[DARK_RED]][A][[RED]] McMMO a \u00e9t\u00e9 incapable de charger les donn\u00e9es du joueur [[YELLOW]]{0}[[RED]]. [[LIGHT_PURPLE]]Veuillez inspecter votre installation de la base de donn\u00e9es.
|
||||
|
@ -2,14 +2,14 @@ Acrobatics.Ability.Proc=[[GREEN]]**Kecses Landol\u00e1s**
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**Elker\u00fclve**
|
||||
Acrobatics.Listener=Akrobatika:
|
||||
Acrobatics.SkillName=AKROBATIKA
|
||||
Acrobatics.Skillup=[[YELLOW]]Akrobatika fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Acrobatics.Skillup=Akrobatika fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Archery.Listener=\u00cdj\u00e1szat:
|
||||
Archery.SkillName=\u00cdJ\u00c1SZAT
|
||||
Archery.Skillup=[[YELLOW]]\u00cdj\u00e1szat fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Archery.Skillup=\u00cdj\u00e1szat fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Axes.Ability.Bonus.0=Mesteri balta
|
||||
Axes.Ability.Lower=[[GRAY]]**LETETTED A BALT\u00c1DAT**
|
||||
Axes.Ability.Ready=[[GREEN]]**ELK\u00c9SZ\u00cdTETTED BALT\u00c1DAT**
|
||||
Axes.Combat.GI.Struck=[[RED]]**HATALMAS EREJ\u0170 \u00dcT\u00c9S**
|
||||
Axes.Combat.GI.Struck=**HATALMAS EREJ\u0170 \u00dcT\u00c9S**
|
||||
Axes.SubSkill.CriticalStrikes.Description=Dupla sebz\u00e9s
|
||||
Axes.SubSkill.AxeMastery.Name=Mesteri balta
|
||||
Axes.Listener=Balt\u00e1k:
|
||||
@ -22,7 +22,7 @@ Excavation.Listener=\u00c1s\u00e1s:
|
||||
Excavation.SkillName=\u00c1S\u00c1S
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]A TE [[YELLOW]]Giga B\u00e1ny\u00e1sz B\u00e1ny\u00e1sz Cs\u00e1k\u00e1ny [[GREEN]]k\u00e9pesseged friss\u00fclt!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] haszn\u00e1latban [[RED]]Giga B\u00e1ny\u00e1sz Cs\u00e1k\u00e1ny!
|
||||
Excavation.Skillup=[[YELLOW]]\u00c1s\u00e1s fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Excavation.Skillup=\u00c1s\u00e1s fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Fishing.SubSkill.IceFishing.Name=J\u00e9g Horg\u00e1szat
|
||||
Fishing.Listener=Horg\u00e1szat:
|
||||
Fishing.SkillName=HORG\u00c1SZAT
|
||||
@ -30,14 +30,14 @@ Herbalism.Ability.Lower=[[GRAY]]**LETETTED A KAP\u00c1DAT**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**EL\u0150K\u00c9SZ\u00cdTETTED A KAP\u00c1DAT**
|
||||
Herbalism.Listener=Gy\u00f3gyn\u00f6v\u00e9nytan:
|
||||
Herbalism.SkillName=GY\u00d3GYN\u00d6V\u00c9NYTAN
|
||||
Herbalism.Skillup=[[YELLOW]]Gy\u00f3gyn\u00f6v\u00e9nytan fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Mining.Ability.Length=[[RED]]Szupercs\u00e1k\u00e1ny t\u00e1vols\u00e1g: [[YELLOW]]{0}s
|
||||
Herbalism.Skillup=Gy\u00f3gyn\u00f6v\u00e9nytan fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Mining.Ability.Length=Szupercs\u00e1k\u00e1ny t\u00e1vols\u00e1g: [[YELLOW]]{0}s
|
||||
Mining.Ability.Lower=[[GRAY]]**LETETTED A CS\u00c1K\u00c1NYOD**
|
||||
Mining.Ability.Ready=[[GREEN]]**CS\u00c1K\u00c1NYOD K\u00c9SZEN \u00c1LL**
|
||||
Mining.Listener=B\u00e1ny\u00e1sz\u00e1s:
|
||||
Mining.SkillName=B\u00c1NY\u00c1SZ\u00c1S
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]A [[YELLOW]] Szuper Z\u00faz\u00f3 [[GREEN]]k\u00e9pess\u00e9ged \u00fajra haszn\u00e1lhat\u00f3!
|
||||
Mining.Skillup=[[YELLOW]]B\u00e1ny\u00e1szat fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Mining.Skillup=B\u00e1ny\u00e1szat fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Mining.Blast.Refresh=[[GREEN]]A [[YELLOW]]Robban\u00f3 B\u00e1ny\u00e1szat [[GREEN]]k\u00e9pess\u00e9ged \u00fajra el\u00e9rhet\u0151!
|
||||
Repair.SubSkill.Repair.Name=Jav\u00edt\u00e1s
|
||||
Repair.SubSkill.Repair.Description=Eszk\u00f6z\u00f6k \u00e9s felszerel\u00e9sek jav\u00edt\u00e1sa
|
||||
@ -55,9 +55,9 @@ Repair.Skills.AdeptGold=[[DARK_RED]]Nem vagy el\u00e9g k\u00e9pzett ahhoz, hogy
|
||||
Repair.Skills.AdeptIron=[[DARK_RED]]Nem vagy el\u00e9g k\u00e9pzett ahhoz, hogy vas t\u00e1rgyakat jav\u00edts.
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]Nem vagy el\u00e9g k\u00e9pzett ahhoz, hogy arany t\u00e1rgyakat jav\u00edts.
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]Nem tudsz jav\u00edtani st\u00f3colt t\u00e1rgyakat
|
||||
Repair.Skillup=[[YELLOW]]Jav\u00edt\u00e1s fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Repair.Skillup=Jav\u00edt\u00e1s fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Repair.Pretty.Name=Jav\u00edt\u00e1s
|
||||
Repair.Arcane.Fail=[[RED]]A t\u00e1rgyon l\u00e9v\u0151 var\u00e1zslat szertefoszlott.
|
||||
Repair.Arcane.Fail=A t\u00e1rgyon l\u00e9v\u0151 var\u00e1zslat szertefoszlott.
|
||||
Swords.Ability.Lower=[[GRAY]]**ELTETTED A KARDOD**
|
||||
Swords.Ability.Ready=[[GREEN]]**A KARDOD K\u00c9SZEN \u00c1LL**
|
||||
Swords.Combat.Bleeding.Started=[[DARK_RED]] V\u00e9rzel!
|
||||
@ -66,70 +66,70 @@ Swords.Combat.Bleeding=[[GREEN]]**ELLENS\u00c9G V\u00c9RZIK**
|
||||
Swords.Listener=Kardok:
|
||||
Swords.SkillName=KARDOK
|
||||
Swords.Skills.SS.On=[[GREEN]]**F\u0170R\u00c9SZES CSAP\u00c1S AKTIV\u00c1LVA**
|
||||
Swords.Skillup=[[YELLOW]]Harc fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Swords.Skillup=Harc fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Taming.SubSkill.ShockProof.Description=Robban\u00e1si Sebz\u00e9s Ellen\u00e1ll\u00e1s
|
||||
Taming.SubSkill.FastFoodService.Name=Gyors Kaja Szolg\u00e1ltat\u00e1s
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]A farkasod visszat\u00e9rt hozz\u00e1d...
|
||||
Taming.Listener=Szelid\u00edt\u00e9s:
|
||||
Taming.SkillName=SZELID\u00cdT\u00c9S
|
||||
Taming.Skillup=[[YELLOW]]Szelid\u00edt\u00e9s fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Taming.Skillup=Szelid\u00edt\u00e9s fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Unarmed.Ability.Lower=[[GRAY]]**LETETTED KEZEIDET**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**EL\u0150K\u00c9SZ\u00cdTETTED KEZEIDET**
|
||||
Unarmed.Listener=Fegyvertelen:
|
||||
Unarmed.SkillName=FEGYVERTELEN
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**Tombol\u00e1sod befejez\u0151d\u00f6tt**
|
||||
Unarmed.Skills.Berserk.Off=**Tombol\u00e1sod befejez\u0151d\u00f6tt**
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] haszn\u00e1lta a [[RED]]Tombol\u00e1st!
|
||||
Unarmed.Skillup=[[YELLOW]]Fegyvertelen fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Unarmed.Skillup=Fegyvertelen fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Woodcutting.Ability.0=Lev\u00e9l F\u00faj\u00f3
|
||||
Woodcutting.Ability.1=Elf\u00fajja a leveleket.
|
||||
Woodcutting.Listener=Fav\u00e1g\u00e1s:
|
||||
Woodcutting.SkillName=FAV\u00c1G\u00c1S
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]]**Fa D\u00f6nt\u00e9s befejezve**
|
||||
Woodcutting.Skills.TreeFeller.Off=**Fa D\u00f6nt\u00e9s befejezve**
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**FA D\u00d6NT\u0150 AKTIV\u00c1LVA **
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]] haszn\u00e1latban [[RED]]Fa D\u00f6nt\u0151!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]Ez a fa t\u00fal nagy!
|
||||
Woodcutting.Skillup=[[YELLOW]]Fav\u00e1g\u00e1s fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Woodcutting.Skills.TreeFeller.Threshold=Ez a fa t\u00fal nagy!
|
||||
Woodcutting.Skillup=Fav\u00e1g\u00e1s fejl\u0151d\u00f6tt {0} szinttel. \u00d6sszesen: ({1})
|
||||
Ability.Generic.Refresh=[[GREEN]]**K\u00c9PESS\u00c9GEK FRISS\u00cdTVE!**
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]\u00c9let ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]Tulajdonos ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]Bolyhosat \u00e9rintettem. Elsz\u00e9d\u00fcltem.
|
||||
Commands.AdminChat.Off=Admin Chat [[RED]]kikapcsolva
|
||||
Commands.AdminChat.On=Admin Chat [[RED]]bekapcsolva
|
||||
Commands.AdminToggle=[[RED]]- Admin chat \u00e1tv\u00e1ltva
|
||||
Commands.Disabled=[[RED]]Ez a parancs jelenleg le van tiltva.
|
||||
Commands.DoesNotExist=[[RED]]Ilyen nev\u0171 j\u00e1t\u00e9kos nincs az adatb\u00e1zisban!
|
||||
Commands.GodMode.Disabled=[[YELLOW]]mcMMO Istenm\u00f3d letiltva
|
||||
Commands.AdminToggle=- Admin chat \u00e1tv\u00e1ltva
|
||||
Commands.Disabled=Ez a parancs jelenleg le van tiltva.
|
||||
Commands.DoesNotExist=Ilyen nev\u0171 j\u00e1t\u00e9kos nincs az adatb\u00e1zisban!
|
||||
Commands.GodMode.Disabled=mcMMO Istenm\u00f3d letiltva
|
||||
Commands.GodMode.Forbidden=[mcMMO] Istenm\u00f3d nem lehets\u00e9ges ebben a vil\u00e1gban! (N\u00e9zd meg a jogokat)
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]Megh\u00edv\u00e1st sikeresen elfogadtad {0} party-ra!
|
||||
Commands.Invite.Success=[[GREEN]]Megh\u00edv\u00f3 sikeresen elk\u00fcldve.
|
||||
Commands.mcc.Header=[[RED]]---[][[YELLOW]]mcMMO Parancsok[[RED]][]---
|
||||
Commands.mcgod=[[RED]]- V\u00e1lt\u00e1s GodModba
|
||||
Commands.mcc.Header=---[][[YELLOW]]mcMMO Parancsok[[RED]][]---
|
||||
Commands.mcgod=- V\u00e1lt\u00e1s GodModba
|
||||
Commands.mmoedit=[player] <skill> <newvalue> [[RED]] - M\u00f3dos\u00edtva
|
||||
Commands.Other=[[GREEN]]--Egy\u00e9b Parancsok--
|
||||
Commands.Party.Accept=[[RED]]- Parti megh\u00edv\u00e1s elfogadva
|
||||
Commands.Party.Accept=- Parti megh\u00edv\u00e1s elfogadva
|
||||
Commands.Party.Chat.Off=Party Chat [[RED]]kikapcsolva
|
||||
Commands.Party.Chat.On=Party Chat [[GREEN]]bekapcsolva
|
||||
Commands.Party.Commands=[[GREEN]]--Party Parancsok--
|
||||
Commands.Party.Invite.0=[[RED]]FIGYELEM: [[GREEN]]Kapt\u00e1l egy party megh\u00edv\u00f3t a {0} party-ba. Megh\u00edv\u00f3: {1}
|
||||
Commands.Party.Invite.0=FIGYELEM: [[GREEN]]Kapt\u00e1l egy party megh\u00edv\u00f3t a {0} party-ba. Megh\u00edv\u00f3: {1}
|
||||
Commands.Party.Rename=[[GRAY]]A party \u00faj neve: [[WHITE]]{0}
|
||||
Commands.Party.Kick=[[RED]]Kidobtak a csoportb\u00f3l {0}!
|
||||
Commands.Party.Leave=[[RED]]Elhagytad a party-t
|
||||
Commands.Party.Quit=[[RED]]- Kil\u00e9pt\u00e9l a jelenlegi partib\u00f3l
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO[[BLUE]] Energia szint [[YELLOW]Ranglista--
|
||||
Commands.Party.Kick=Kidobtak a csoportb\u00f3l {0}!
|
||||
Commands.Party.Leave=Elhagytad a party-t
|
||||
Commands.Party.Quit=- Kil\u00e9pt\u00e9l a jelenlegi partib\u00f3l
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO[[BLUE]] Energia szint [[YELLOW]Ranglista--
|
||||
Commands.PowerLevel=[[DARK_RED]]POWER LEVEL: [[GREEN]]{0}
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--mcMMO [[BLUE]]{0}[[YELLOW]] Dics\u0151s\u00e9glista--
|
||||
Commands.Skill.Leaderboard=--mcMMO [[BLUE]]{0}[[YELLOW]] Dics\u0151s\u00e9glista--
|
||||
Commands.Stats.Self=STATISZTIK\u00c1ID
|
||||
Commands.Stats=[[RED]]- mcMMO Statisztik\u00e1d
|
||||
Commands.ToggleAbility=[[RED]]- K\u00e9pess\u00e9g aktiv\u00e1l\u00e1sa jobb gombbal
|
||||
Commands.Stats=- mcMMO Statisztik\u00e1d
|
||||
Commands.ToggleAbility=- K\u00e9pess\u00e9g aktiv\u00e1l\u00e1sa jobb gombbal
|
||||
Commands.Usage.PartyName=n\u00e9v
|
||||
Commands.Usage.Password=jelsz\u00f3
|
||||
Party.InformedOnJoin={0} [[GREEN]]csatlakozott a party-dba
|
||||
Party.InformedOnQuit={0} [[GREEN]]elment a party-db\u00f3l
|
||||
Party.Player.Invalid=[[RED]]Nincs ilyen nev\u0171 j\u00e1t\u00e9kos.
|
||||
Party.Player.InSameParty=[[RED]]{0} m\u00e1r bent van a party-dban!
|
||||
Party.Player.Invalid=Nincs ilyen nev\u0171 j\u00e1t\u00e9kos.
|
||||
Party.Player.InSameParty={0} m\u00e1r bent van a party-dban!
|
||||
Party.PlayerNotInParty=[[DARK_RED]]{0} nincs benne a party-ba
|
||||
Party.Teleport.Dead=[[RED]]Nem teleport\u00e1lhatsz halott j\u00e1t\u00e9kosra.
|
||||
Party.Teleport.Dead=Nem teleport\u00e1lhatsz halott j\u00e1t\u00e9kosra.
|
||||
Party.Teleport.Target=[[GREEN]]{0} hozz\u00e1d teleport\u00e1lt.
|
||||
Party.Unlocked=[[GRAY]]Csoport nyitva
|
||||
Party.ShareType.Item=T\u00c1RGY
|
||||
@ -153,8 +153,8 @@ Effects.Template=[[DARK_AQUA]]{0}: [[GREEN]]{1}
|
||||
Guides.Page.OutOfRange=Ez a lap nem l\u00e9tezik, \u00f6sszesen {0} lap van.
|
||||
Guides.Smelting.Section.0=Hamarosan...
|
||||
Skills.Disarmed=[[DARK_RED]]Lefegyvereztek!
|
||||
Skills.Stats=[[YELLOW]]{0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.TooTired=[[RED]]T\u00fal f\u00e1radt vagy hogy haszn\u00e1ld ezt a k\u00e9pess\u00e9get. [[YELLOW]]({0}s)
|
||||
Skills.Stats={0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.TooTired=T\u00fal f\u00e1radt vagy hogy haszn\u00e1ld ezt a k\u00e9pess\u00e9get. [[YELLOW]]({0}s)
|
||||
Stats.Header.Combat=[[GOLD]]-=HARCI K\u00c9PZETTS\u00c9GEK=-
|
||||
Stats.Header.Gathering=[[GOLD]]-= GY\u0170JT\u00d6GET\u0150 K\u00c9PESS\u00c9GEK=-
|
||||
Stats.Header.Misc=[[GOLD]]-=EGY\u00c9B SKILLEK=-
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ACROBATICS
|
||||
Acrobatics.Ability.Proc=[[GREEN]]**Atterraggio Aggraziato**
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**Schivato**
|
||||
Acrobatics.DodgeChance=[[RED]]Possibilit\u00E0 di Schivata: [[YELLOW]]{0}
|
||||
Acrobatics.DodgeChance=Possibilit\u00E0 di Schivata: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Name=Capriola
|
||||
Acrobatics.SubSkill.Roll.Description=Riduce o annulla il danno da caduta
|
||||
Acrobatics.SubSkill.GracefulRoll.Name=Capriola Aggraziata
|
||||
@ -9,11 +9,11 @@ Acrobatics.SubSkill.GracefulRoll.Description=Il doppio pi\u00F9 efficiente di un
|
||||
Acrobatics.SubSkill.Dodge.Name=Schivata
|
||||
Acrobatics.SubSkill.Dodge.Description=Riduce il danno degli attacchi della met\u00E0
|
||||
Acrobatics.Listener=Acrobatica:
|
||||
Acrobatics.SubSkill.Roll.Chance=[[RED]]Possibilit\u00E0 di Capriola: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=[[RED]]Possibilit\u00E0 di Capriola Aggraziata: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Chance=Possibilit\u00E0 di Capriola: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=Possibilit\u00E0 di Capriola Aggraziata: [[YELLOW]]{0}
|
||||
Acrobatics.Roll.Text=**Capriola Eseguita**
|
||||
Acrobatics.SkillName=ACROBATICA
|
||||
Acrobatics.Skillup=[[YELLOW]]L'abilit\u00E0 Acrobatica \u00E8 aumentata di {0}. Totale ({1})
|
||||
Acrobatics.Skillup=L'abilit\u00E0 Acrobatica \u00E8 aumentata di {0}. Totale ({1})
|
||||
|
||||
#ALCHEMY
|
||||
Alchemy.SubSkill.Catalysis.Name=Catalisi
|
||||
@ -22,16 +22,16 @@ Alchemy.SubSkill.Concoctions.Name=Intrugli
|
||||
Alchemy.SubSkill.Concoctions.Description=Crea pozioni con pi\u00F9 ingredienti
|
||||
Alchemy.Listener=Alchimia:
|
||||
Alchemy.Ability.Locked.0=BLOCCATO FINO AD ABILIT\u00C0 {0}+ (CATALISI)
|
||||
Alchemy.Catalysis.Speed=[[RED]]Velocit\u00E0 di Preparazione: [[YELLOW]]{0}
|
||||
Alchemy.Concoctions.Rank=[[RED]]Grado Intrugli: [[YELLOW]]{0}/{1}
|
||||
Alchemy.Concoctions.Ingredients=[[RED]]Ingredienti [[[YELLOW]]{0}[[RED]]]: [[YELLOW]]{1}
|
||||
Alchemy.Catalysis.Speed=Velocit\u00E0 di Preparazione: [[YELLOW]]{0}
|
||||
Alchemy.Concoctions.Rank=Grado Intrugli: [[YELLOW]]{0}/{1}
|
||||
Alchemy.Concoctions.Ingredients=Ingredienti [[[YELLOW]]{0}[[RED]]]: [[YELLOW]]{1}
|
||||
Alchemy.SkillName=ALCHIMIA
|
||||
Alchemy.Skillup=[[YELLOW]]L'abilit\u00E0 Alchimia \u00E8 aumentata di {0}. Totale ({1})
|
||||
Alchemy.Skillup=L'abilit\u00E0 Alchimia \u00E8 aumentata di {0}. Totale ({1})
|
||||
|
||||
#ARCHERY
|
||||
Archery.Combat.DazeChance=[[RED]]Possibilit\u00E0 di Stordire: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=[[RED]]Possibilit\u00E0 di Recuperare Frecce: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=[[RED]]Bonus al Danno di Tiro da Maestro: [[YELLOW]]{0}
|
||||
Archery.Combat.DazeChance=Possibilit\u00E0 di Stordire: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=Possibilit\u00E0 di Recuperare Frecce: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=Bonus al Danno di Tiro da Maestro: [[YELLOW]]{0}
|
||||
Archery.SubSkill.SkillShot.Name=Tiro da Maestro
|
||||
Archery.SubSkill.SkillShot.Description=Aumenta il danno fatto con gli archi
|
||||
Archery.SubSkill.Daze.Name=Stordire (Giocatori)
|
||||
@ -40,7 +40,7 @@ Archery.SubSkill.ArrowRetrieval.Name=Recupero Frecce
|
||||
Archery.SubSkill.ArrowRetrieval.Description=Probabilit\u00E0 di recuperare frecce dai cadaveri
|
||||
Archery.Listener=Tiro con l'Arco:
|
||||
Archery.SkillName=Arco
|
||||
Archery.Skillup=[[YELLOW]]L'abilit\u00E0 Tiro con l'Arco \u00E8 aumentata di {0}. Totale ({1})
|
||||
Archery.Skillup=L'abilit\u00E0 Tiro con l'Arco \u00E8 aumentata di {0}. Totale ({1})
|
||||
|
||||
#AXES
|
||||
Axes.Ability.Bonus.0=Maestria con l'Ascia
|
||||
@ -52,12 +52,12 @@ Axes.Ability.Bonus.5=Infliggi {0} danni bonus ai nemici senza armatura
|
||||
Axes.Ability.Lower=[[GRAY]]**ABBASSI L'ASCIA**
|
||||
Axes.Ability.Ready=[[GREEN]]**PREPARI L'ASCIA**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]Hai subito un colpo CRITICO!
|
||||
Axes.Combat.CritChance=[[RED]]Probabilit\u00E0 di un colpo critico: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=[[RED]]COLPO CRITICO!
|
||||
Axes.Combat.CritChance=Probabilit\u00E0 di un colpo critico: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=COLPO CRITICO!
|
||||
Axes.Combat.GI.Proc=[[GREEN]]**COLPITO CON GRANDE FORZA**
|
||||
Axes.Combat.GI.Struck=[[RED]]**COLPITO DA IMPATTO MAGGIORE**
|
||||
Axes.Combat.GI.Struck=**COLPITO DA IMPATTO MAGGIORE**
|
||||
Axes.Combat.SS.Struck=[[DARK_RED]]Colpito da SPACCA CRANI!
|
||||
Axes.Combat.SS.Length=[[RED]]Durata di Spacca Crani: [[YELLOW]]{0}s
|
||||
Axes.Combat.SS.Length=Durata di Spacca Crani: [[YELLOW]]{0}s
|
||||
Axes.SubSkill.SkullSplitter.Name=Spacca Crani (Capacit\u00E0)
|
||||
Axes.SubSkill.SkullSplitter.Description=Infligge Danno ad Area
|
||||
Axes.SubSkill.CriticalStrikes.Name=Colpi Critici
|
||||
@ -70,12 +70,12 @@ Axes.SubSkill.GreaterImpact.Name=Impatto Maggiore
|
||||
Axes.SubSkill.GreaterImpact.Description=Infligge danno bonus ai nemici senza armatura
|
||||
Axes.Listener=Asce:
|
||||
Axes.SkillName=ASCE
|
||||
Axes.Skills.SS.Off=[[RED]]**Spacca Crani si \u00E8 esaurito**
|
||||
Axes.Skills.SS.Off=**Spacca Crani si \u00E8 esaurito**
|
||||
Axes.Skills.SS.On=[[GREEN]]**Spacca Crani ATTIVATA**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]La tua capacit\u00E0 [[YELLOW]]Spacca Crani [[GREEN]]si \u00E8 rigenerata!
|
||||
Axes.Skills.SS.Other.Off=[[RED]]Spacca Crani[[GREEN]] si \u00E8 esaurito per [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.Off=Spacca Crani[[GREEN]] si \u00E8 esaurito per [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] ha usato [[RED]]Spacca Crani!
|
||||
Axes.Skillup=[[YELLOW]]L'abilit\u00E0 Asce \u00E8 aumentata di {0}. Totale ({1})
|
||||
Axes.Skillup=L'abilit\u00E0 Asce \u00E8 aumentata di {0}. Totale ({1})
|
||||
|
||||
#EXCAVATION
|
||||
Excavation.Ability.Lower=[[GRAY]]**ABBASSI LA PALA**
|
||||
@ -84,28 +84,28 @@ Excavation.SubSkill.GigaDrillBreaker.Name=Giga-Trivella Demolitrice (CAPACIT\u00
|
||||
Excavation.SubSkill.GigaDrillBreaker.Description=Drop x3, XP x3, +Velocit\u00E0
|
||||
Excavation.SubSkill.TreasureHunter.Name=Cacciatore di Tesori
|
||||
Excavation.SubSkill.TreasureHunter.Description=Capacit\u00E0 di disseppellire tesori
|
||||
Excavation.Effect.Length=[[RED]]Durata di Giga-Trivella Demolitrice: [[YELLOW]]{0}s
|
||||
Excavation.Effect.Length=Durata di Giga-Trivella Demolitrice: [[YELLOW]]{0}s
|
||||
Excavation.Listener=Escavazione:
|
||||
Excavation.SkillName=ESCAVAZIONE
|
||||
Excavation.Skills.GigaDrillBreaker.Off=[[RED]]**Giga-Trivella Demolitrice si \u00E8 esaurita**
|
||||
Excavation.Skills.GigaDrillBreaker.Off=**Giga-Trivella Demolitrice si \u00E8 esaurita**
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**GIGA-TRIVELLA DEMOLITRICE ATTIVATA**
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]La tua capacit\u00E0 [[YELLOW]]Giga-Trivella Demolitrice [[GREEN]]si \u00E8 rigenerata!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=[[RED]]Giga-Trivella Demolitrice[[GREEN]] si \u00E8 esaurita per [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=Giga-Trivella Demolitrice[[GREEN]] si \u00E8 esaurita per [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] ha usato [[RED]]Giga-Trivella Demolitrice!
|
||||
Excavation.Skillup=[[YELLOW]]L'abilit\u00E0 Escavazione \u00E8 aumentata di {0}. Totale ({1})
|
||||
Excavation.Skillup=L'abilit\u00E0 Escavazione \u00E8 aumentata di {0}. Totale ({1})
|
||||
|
||||
#FISHING
|
||||
Fishing.Ability.Chance=[[RED]]Possibilit\u00E0 di Morso: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=[[RED]]Cacciatore di Magia: [[GRAY]] **Migliora insieme al Grado di Cacciatore di Tesori**
|
||||
Fishing.Ability.Chance=Possibilit\u00E0 di Morso: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=Cacciatore di Magia: [[GRAY]] **Migliora insieme al Grado di Cacciatore di Tesori**
|
||||
Fishing.Ability.Locked.0=BLOCCATO FINO AD ABILIT\u00C0 {0}+ (SCUOTERE)
|
||||
Fishing.Ability.Locked.1=BLOCCATO FINO AD ABILIT\u00C0 {0}+ (PESCA SUL GHIACCIO)
|
||||
Fishing.Ability.Locked.2=BLOCCATO FINO AD ABILIT\u00C0 {0}+ (PESCATORE PROVETTO)
|
||||
Fishing.Ability.Rank=[[RED]]Grado di Cacciatore di Tesori: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.DropRate=[[RED]] Tasso di Drop: [[DARK_RED]]Trap: [[YELLOW]]{0} [[GRAY]]Comune: [[YELLOW]]{1} [[GREEN]]Non Comune: [[YELLOW]]{2}\n[[BLUE]]Raro: [[YELLOW]]{3} [[LIGHT_PURPLE]]Epico: [[YELLOW]]{4} [[GOLD]]Leggendario: [[YELLOW]]{5} [[AQUA]]Record: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=[[RED]]Possibilit\u00E0 di Cacciatore di Magia: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=[[RED]]Probabilit\u00E0 di Scuotere: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=[[RED]]Pesca sul Ghiaccio: Vai a pescare sul ghiaccio
|
||||
Fishing.Ability.FD=[[RED]]Dieta del Pescatore: [[YELLOW]]Grado {0}
|
||||
Fishing.Ability.Rank=Grado di Cacciatore di Tesori: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.DropRate= Tasso di Drop: [[DARK_RED]]Trap: [[YELLOW]]{0} [[GRAY]]Comune: [[YELLOW]]{1} [[GREEN]]Non Comune: [[YELLOW]]{2}\n[[BLUE]]Raro: [[YELLOW]]{3} [[LIGHT_PURPLE]]Epico: [[YELLOW]]{4} [[GOLD]]Leggendario: [[YELLOW]]{5} [[AQUA]]Record: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=Possibilit\u00E0 di Cacciatore di Magia: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=Probabilit\u00E0 di Scuotere: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=Pesca sul Ghiaccio: Vai a pescare sul ghiaccio
|
||||
Fishing.Ability.FD=Dieta del Pescatore: [[YELLOW]]Grado {0}
|
||||
Fishing.SubSkill.TreasureHunter.Name=Cacciatore di Tesori (Passivo)
|
||||
Fishing.SubSkill.TreasureHunter.Description=Ripesca oggetti vari
|
||||
Fishing.SubSkill.MagicHunter.Name=Cacciatore di Magia
|
||||
@ -124,22 +124,22 @@ Fishing.Ability.TH.MagicFound=[[GRAY]]Senti un tocco di magia in questa cattura.
|
||||
Fishing.Ability.TH.Boom=[[GRAY]]TEMPO DI BOOM!!!
|
||||
Fishing.Ability.TH.Poison=[[GRAY]]C'\u00E8 qualcosa che non va bene...
|
||||
Fishing.SkillName=PESCA
|
||||
Fishing.Skillup=[[YELLOW]]L'abilit\u00E0 Pesca \u00E8 aumentata di {0}. Totale ({1})
|
||||
Fishing.Skillup=L'abilit\u00E0 Pesca \u00E8 aumentata di {0}. Totale ({1})
|
||||
|
||||
#HERBALISM
|
||||
Herbalism.Ability.DoubleDropChance=[[RED]]Possibilit\u00E0 di Doppio Drop: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=[[RED]]Dieta del Contadino: [[YELLOW]]Grado {0}
|
||||
Herbalism.Ability.GTe.Length=[[RED]]Durata di Terra Verde: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=[[RED]]Ti servono pi\u00F9 semi per diffondere Terra Verde.
|
||||
Herbalism.Ability.GTh.Chance=[[RED]]Possibilit\u00E0 di Pollice Verde: [[YELLOW]]{0}
|
||||
Herbalism.Ability.DoubleDropChance=Possibilit\u00E0 di Doppio Drop: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=Dieta del Contadino: [[YELLOW]]Grado {0}
|
||||
Herbalism.Ability.GTe.Length=Durata di Terra Verde: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=Ti servono pi\u00F9 semi per diffondere Terra Verde.
|
||||
Herbalism.Ability.GTh.Chance=Possibilit\u00E0 di Pollice Verde: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail= [[RED]]**POLLICE VERDE FALLITO**
|
||||
Herbalism.Ability.GTh.Stage=[[RED]]Stadio di Pollice Verde: [[YELLOW]] Il raccolto cresce allo stadio {0}
|
||||
Herbalism.Ability.GTh.Stage=Stadio di Pollice Verde: [[YELLOW]] Il raccolto cresce allo stadio {0}
|
||||
Herbalism.Ability.GTh=[[GREEN]]**POLLICE VERDE**
|
||||
Herbalism.Ability.HylianLuck=[[RED]]Probabilit\u00E0 di Fortuna Hylian: [[YELLOW]]{0}
|
||||
Herbalism.Ability.HylianLuck=Probabilit\u00E0 di Fortuna Hylian: [[YELLOW]]{0}
|
||||
Herbalism.Ability.Lower=[[GRAY]]**ABBASSI LA ZAPPA**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**PREPARI LA ZAPPA**
|
||||
Herbalism.Ability.ShroomThumb.Chance=[[RED]]Possibilit\u00E0 di Pollice Fungo: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=[[RED]]**POLLICE FUNGO FALLITO**
|
||||
Herbalism.Ability.ShroomThumb.Chance=Possibilit\u00E0 di Pollice Fungo: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=**POLLICE FUNGO FALLITO**
|
||||
Herbalism.SubSkill.GreenTerra.Name=Terra Verde (CAPACIT\u00C0)
|
||||
Herbalism.SubSkill.GreenTerra.Description=Diffonde il Verde, Drop x3
|
||||
Herbalism.SubSkill.GreenThumb.Name=Pollice Verde (Grano)
|
||||
@ -157,15 +157,15 @@ Herbalism.SubSkill.ShroomThumb.Description=Diffonde il micelio su terra & erba
|
||||
Herbalism.HylianLuck=[[GREEN]]Oggi la fortuna di Hyrule \u00E8 con te!
|
||||
Herbalism.Listener=Erboristeria:
|
||||
Herbalism.SkillName=ERBORISTERIA
|
||||
Herbalism.Skills.GTe.Off=[[RED]]**Terra Verde si \u00E8 esaurita**
|
||||
Herbalism.Skills.GTe.Off=**Terra Verde si \u00E8 esaurita**
|
||||
Herbalism.Skills.GTe.On=[[GREEN]]**TERRA VERDE ATTIVATA**
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]La tua abilit\u00E0 [[YELLOW]]Terra Verde [[GREEN]]si \u00E8 rigenerata!
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]]Terra Verde[[GREEN]] si \u00E8 esaurita per [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.Off=Terra Verde[[GREEN]] si \u00E8 esaurita per [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]{0}[[DARK_GREEN]] ha usato [[RED]]Terra Verde!
|
||||
Herbalism.Skillup=[[YELLOW]]L'abilit\u00E0 Erboristeria \u00E8 aumentata di {0}. Totale ({1})
|
||||
Herbalism.Skillup=L'abilit\u00E0 Erboristeria \u00E8 aumentata di {0}. Totale ({1})
|
||||
|
||||
#MINING
|
||||
Mining.Ability.Length=[[RED]]Durata di Super Demolitore: [[YELLOW]]{0}s
|
||||
Mining.Ability.Length=Durata di Super Demolitore: [[YELLOW]]{0}s
|
||||
Mining.Ability.Locked.0=BLOCCATO FINO AD ABILIT\u00C0 {0}+ (ESTRAZIONE ESPLOSIVA)
|
||||
Mining.Ability.Locked.1=BLOCCATO FINO AD ABILIT\u00C0 {0} (BOMBE PI\u00D9 GRANDI)
|
||||
Mining.Ability.Locked.2=BLOCCATO FINO AD ABILIT\u00C0 {0}+ (PERIZIA NELLE DEMOLIZIONI)
|
||||
@ -181,22 +181,22 @@ Mining.SubSkill.BiggerBombs.Name=Bombe Pi\u00F9 Grandi
|
||||
Mining.SubSkill.BiggerBombs.Description=Incrementa il raggio di esplosione del TNT
|
||||
Mining.SubSkill.DemolitionsExpertise.Name=Perizia nelle Demolizioni
|
||||
Mining.SubSkill.DemolitionsExpertise.Description=Riduce il danno da esplosioni di TNT
|
||||
Mining.Effect.Decrease=[[RED]]Riduzione del Danno da Esperto di Demolizioni: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=[[RED]]Possibilit\u00E0 di Doppio Drop: [[YELLOW]]{0}
|
||||
Mining.Effect.Decrease=Riduzione del Danno da Esperto di Demolizioni: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=Possibilit\u00E0 di Doppio Drop: [[YELLOW]]{0}
|
||||
Mining.Listener=Estrazione:
|
||||
Mining.SkillName=ESTRAZIONE
|
||||
Mining.Skills.SuperBreaker.Off=[[RED]]**Super Demolitore si \u00E8 esaurito**
|
||||
Mining.Skills.SuperBreaker.Off=**Super Demolitore si \u00E8 esaurito**
|
||||
Mining.Skills.SuperBreaker.On=[[GREEN]]**SUPER DEMOLITORE ATTIVATO**
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[RED]]Super Demolitore[[GREEN]] si \u00E8 esaurito per [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.Off=Super Demolitore[[GREEN]] si \u00E8 esaurito per [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] ha usato [[RED]]Super Demolitore!
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]La tua capacit\u00E0 [[YELLOW]]Super Demolitore [[GREEN]]si \u00E8 rigenerata!
|
||||
Mining.Skillup=[[YELLOW]]L'abilit\u00E0 Estrazione \u00E8 aumentata di {0}. Totale ({1})
|
||||
Mining.Skillup=L'abilit\u00E0 Estrazione \u00E8 aumentata di {0}. Totale ({1})
|
||||
|
||||
#Blast Mining
|
||||
Mining.Blast.Boom=[[GRAY]]**BOOM**
|
||||
Mining.Blast.Effect=+{0} minerale raccolto, -{1} macerie prodotte, drop x{2}
|
||||
Mining.Blast.Radius.Increase=[[RED]]Incremento del Raggio di Esplosione: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=[[RED]]Estrazione Esplosiva: [[YELLOW]] Grado {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Radius.Increase=Incremento del Raggio di Esplosione: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=Estrazione Esplosiva: [[YELLOW]] Grado {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Other.On=[[GREEN]]{0}[[DARK_GREEN]] ha usato [[RED]]Estrazione Esplosiva!
|
||||
Mining.Blast.Refresh=[[GREEN]]La tua capacit\u00E0 [[YELLOW]]Estrazione Esplosiva [[GREEN]]si \u00E8 rigenerata!
|
||||
|
||||
@ -225,23 +225,23 @@ Repair.Skills.AdeptDiamond= [[DARK_RED]]Non sei abbastanza abile da riparare il
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]Non sei abbastanza abile da riparare l'Oro.
|
||||
Repair.Skills.AdeptIron=[[DARK_RED]]Non sei abbastanza abile da riparare il Ferro.
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]Non sei abbastanza abile da riparare la Pietra.
|
||||
Repair.Skills.Adept=[[RED]]Devi essere di livello [[YELLOW]]{0}[[RED]] per riparare [[YELLOW]]{1}
|
||||
Repair.Skills.Adept=Devi essere di livello [[YELLOW]]{0}[[RED]] per riparare [[YELLOW]]{1}
|
||||
Repair.Skills.FeltEasy=[[GRAY]]Ti \u00E8 sembrato facile.
|
||||
Repair.Skills.FullDurability=[[GRAY]]\u00C8 gi\u00E0 a piena durevolezza.
|
||||
Repair.Skills.Mastery=[[RED]]Maestria nella Riparazione: [[YELLOW]]{0} durabilit\u00E0 aggiuntiva ripristinata
|
||||
Repair.Skills.Mastery=Maestria nella Riparazione: [[YELLOW]]{0} durabilit\u00E0 aggiuntiva ripristinata
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]Non puoi riparare oggetti ammucchiati.
|
||||
Repair.Skills.Super.Chance=[[RED]]Possibilit\u00E0 Super Riparazione: [[YELLOW]]{0}
|
||||
Repair.Skillup=[[YELLOW]]L'abilit\u00E0 Riparazione \u00E8 aumentata di {0}. Totale ({1})
|
||||
Repair.Skills.Super.Chance=Possibilit\u00E0 Super Riparazione: [[YELLOW]]{0}
|
||||
Repair.Skillup=L'abilit\u00E0 Riparazione \u00E8 aumentata di {0}. Totale ({1})
|
||||
Repair.Pretty.Name=Riparazione
|
||||
|
||||
#Arcane Forging
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]Probabilit\u00E0 di Degradazione di FA: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]Tasso di Successo di FA: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Downgrade=[[RED]]Il potere arcano di questo oggetto \u00E8 diminuito.
|
||||
Repair.Arcane.Fail=[[RED]]Il potere arcano ha abbandonato l'oggetto permanentemente.
|
||||
Repair.Arcane.Lost=[[RED]]Non sei stato abbastanza abile da mantenere alcun incantesimo.
|
||||
Repair.Arcane.Downgrade=Il potere arcano di questo oggetto \u00E8 diminuito.
|
||||
Repair.Arcane.Fail=Il potere arcano ha abbandonato l'oggetto permanentemente.
|
||||
Repair.Arcane.Lost=Non sei stato abbastanza abile da mantenere alcun incantesimo.
|
||||
Repair.Arcane.Perfect=[GREEN]]Hai mantenuto le energie arcane in questo oggetto.
|
||||
Repair.Arcane.Rank=[[RED]]Forgiatura Arcana: [[YELLOW]]Grado {0}/4
|
||||
Repair.Arcane.Rank=Forgiatura Arcana: [[YELLOW]]Grado {0}/4
|
||||
|
||||
#SALVAGE
|
||||
Salvage.Pretty.Name=Rottamazione
|
||||
@ -252,15 +252,15 @@ Salvage.SubSkill.ArcaneSalvaging.Description=Estrai incantesimi dagli oggetti
|
||||
Salvage.Ability.Locked.0=BLOCCATO FINO AD ABILIT\u00C0 {0}+ (ROTTAMAZIONE AVANZATA)
|
||||
Salvage.Ability.Bonus.0=Rottamazione Avanzata
|
||||
Salvage.Ability.Bonus.1=Massima resa {0} oggetti distrutti
|
||||
Salvage.Arcane.Rank=[[RED]]Recupero Arcano: [[YELLOW]]Grado {0}/{1}
|
||||
Salvage.Arcane.Rank=Recupero Arcano: [[YELLOW]]Grado {0}/{1}
|
||||
Salvage.Arcane.ExtractFull=[[GRAY]]Probabilit\u00E0 di incantamento AS completo
|
||||
Salvage.Arcane.ExtractPartial=[[GRAY]]Probabilit\u00E0 di incantamento AS parziale
|
||||
Salvage.Skills.Success=[[GREEN]]Oggetto rottamato!
|
||||
Salvage.Skills.Adept.Damaged=[[DARK_RED]]Non sei abbastanza abile da rottamare gli oggetti danneggiati.
|
||||
Salvage.Skills.Adept.Level=[[RED]]Devi essere di livello [[YELLOW]]{0}[[RED]] per rottamare [[YELLOW]]{1}
|
||||
Salvage.Skills.Adept.Level=Devi essere di livello [[YELLOW]]{0}[[RED]] per rottamare [[YELLOW]]{1}
|
||||
Salvage.Skills.TooDamaged= [[DARK_RED]]Questo oggetto \u00E8 troppo danneggiato per essere rottamato.
|
||||
Salvage.Skills.ArcaneFailed=[[RED]]Non sei stato capace di estrarre la conoscenza contenuta in questo oggetto.
|
||||
Salvage.Skills.ArcanePartial=[[YELLOW]]Sei stato solo in grado di estrarre alcune delle conoscenze contenute all'interno di questo oggetto.
|
||||
Salvage.Skills.ArcaneFailed=Non sei stato capace di estrarre la conoscenza contenuta in questo oggetto.
|
||||
Salvage.Skills.ArcanePartial=Sei stato solo in grado di estrarre alcune delle conoscenze contenute all'interno di questo oggetto.
|
||||
Salvage.Skills.ArcaneSuccess=[[GREEN]]Sei in grado di estrarre tutte le conoscenze contenute in questo oggetto!
|
||||
Salvage.Listener.Anvil=[[DARK_RED]]Hai piazzato un'incudine da Rottamazione, usala per Rottamare attrezzi e armature.
|
||||
Salvage.Listener=Rottamazione:
|
||||
@ -269,13 +269,13 @@ Salvage.SkillName=ROTTAMAZIONE
|
||||
#SWORDS
|
||||
Swords.Ability.Lower=[[GRAY]]**ABBASSI LA SPADA**
|
||||
Swords.Ability.Ready=[[GREEN]]**PREPARI LA SPADA**
|
||||
Swords.Combat.Bleed.Chance=[[RED]]Possibilit\u00E0 di Emorragia: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=[[RED]]Durata di Emorragia: [[YELLOW]]{0} tick
|
||||
Swords.Combat.Bleed.Chance=Possibilit\u00E0 di Emorragia: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=Durata di Emorragia: [[YELLOW]]{0} tick
|
||||
Swords.Combat.Bleed.Note=[[GRAY]]NOTA: [[YELLOW]]1 Tick si verifica ogni 2 secondi
|
||||
Swords.Combat.Bleeding.Started=[[DARK_RED]] Stai sanguinando!
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]L'emorragia si \u00E8 [[GREEN]]fermata[[GRAY]]!
|
||||
Swords.Combat.Bleeding=[[GREEN]]**IL NEMICO HA UN'EMORRAGIA**
|
||||
Swords.Combat.Counter.Chance=[[RED]]Possibilit\u00E0 di Contrattacco: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Chance=Possibilit\u00E0 di Contrattacco: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Hit=[[DARK_RED]]Colpisci con un contrattacco!
|
||||
Swords.Combat.Countered=[[GREEN]]**CONTRATTACCATO**
|
||||
Swords.Combat.SS.Struck=[[DARK_RED]]Colpito da COLPI SEGHETTATI!
|
||||
@ -289,13 +289,13 @@ Swords.SubSkill.Bleed.Name=Emorragia
|
||||
Swords.SubSkill.Bleed.Description=Infligge danno ciclico da sanguinamento
|
||||
Swords.Listener=Spade:
|
||||
Swords.SkillName=SPADE
|
||||
Swords.Skills.SS.Off=[[RED]]**Colpi Seghettati si \u00E8 esaurito**
|
||||
Swords.Skills.SS.Off=**Colpi Seghettati si \u00E8 esaurito**
|
||||
Swords.Skills.SS.On=[[GREEN]]**SERRATED STRIKES ACTIVATED**
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]La tua capacit\u00E0 [[YELLOW]]Colpi Seghettati [[GREEN]]si \u00E8 rigenerata!
|
||||
Swords.Skills.SS.Other.Off=[[RED]]Colpi Seghettati[[GREEN]] si \u00E8 esaurito per [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.Off=Colpi Seghettati[[GREEN]] si \u00E8 esaurito per [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] ha usato [[RED]]Colpi Seghettati!
|
||||
Swords.Skillup=[[YELLOW]]L'abilit\u00E0 Spade \u00E8 aumentata di {0}. Totale ({1})
|
||||
Swords.SS.Length=[[RED]]Durata di Colpi Seghettati: [[YELLOW]]{0}s
|
||||
Swords.Skillup=L'abilit\u00E0 Spade \u00E8 aumentata di {0}. Totale ({1})
|
||||
Swords.SS.Length=Durata di Colpi Seghettati: [[YELLOW]]{0}s
|
||||
|
||||
#TAMING
|
||||
Taming.Ability.Bonus.0=Sicurezza Ambientale
|
||||
@ -316,7 +316,7 @@ Taming.Ability.Locked.2=BLOCCATO FINO AD ABILIT\u00C0 {0}+ (A PROVA D'URTO)
|
||||
Taming.Ability.Locked.3=BLOCCATO FINO AD ABILIT\u00C0 {0}+ (ARTIGLI AFFILATI)
|
||||
Taming.Ability.Locked.4=BLOCCATO FINO AD ABILIT\u00C0 {0}+ (SERVIZIO FAST FOOD)
|
||||
Taming.Ability.Locked.5=BLOCCATO FINO AD ABILIT\u00C0 {0}+ (SEGUGIO DEL CIELO)
|
||||
Taming.Combat.Chance.Gore=[[RED]]Possibilit\u00E0 di Sbranare: [[YELLOW]]{0}
|
||||
Taming.Combat.Chance.Gore=Possibilit\u00E0 di Sbranare: [[YELLOW]]{0}
|
||||
Taming.SubSkill.BeastLore.Name=Conoscenza delle Bestie
|
||||
Taming.SubSkill.BeastLore.Description=Esamina lupi e ocelot picchiandoli con un osso
|
||||
Taming.SubSkill.ShockProof.Name=A Prova d'Urto
|
||||
@ -339,23 +339,23 @@ Taming.SubSkill.ThickFur.Description=Riduzione del Danno, Resistenza al Fuoco
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]Il tuo lupo si precipita da te...
|
||||
Taming.Listener=Addomesticamento:
|
||||
Taming.SkillName=ADDOMESTICAMENTO
|
||||
Taming.Skillup=[[YELLOW]]L'abilit\u00E0 Addomesticamento \u00E8 aumentata di {0}. Totale ({1})
|
||||
Taming.Skillup=L'abilit\u00E0 Addomesticamento \u00E8 aumentata di {0}. Totale ({1})
|
||||
Taming.Summon.Complete=[[GREEN]]Evocazione completa
|
||||
Taming.Summon.Lifespan=[[YELLOW]] (Durata: {0}s)
|
||||
Taming.Summon.Fail.Ocelot=[[RED]]Hai troppi ocelot vicino per poterne evocare degli altri.
|
||||
Taming.Summon.Fail.Wolf=[[RED]]Hai troppi lupi vicino per poterne evocare degli altri.
|
||||
Taming.Summon.Fail.Horse=[[RED]]Hai troppi cavalli nelle vicinanze per evocarne altri.
|
||||
Taming.Summon.Fail.TooMany=[[RED]]Hai raggiunto il limite massimo di animali evocabili. [[YELLOW]]({0})
|
||||
Taming.Summon.Lifespan= (Durata: {0}s)
|
||||
Taming.Summon.Fail.Ocelot=Hai troppi ocelot vicino per poterne evocare degli altri.
|
||||
Taming.Summon.Fail.Wolf=Hai troppi lupi vicino per poterne evocare degli altri.
|
||||
Taming.Summon.Fail.Horse=Hai troppi cavalli nelle vicinanze per evocarne altri.
|
||||
Taming.Summon.Fail.TooMany=Hai raggiunto il limite massimo di animali evocabili. [[YELLOW]]({0})
|
||||
Taming.Summon.Name.Format={1} di {0}
|
||||
|
||||
#UNARMED
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]Durata di Furore: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Berserk.Length=Durata di Furore: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Bonus.0=Stile del Braccio di Ferro
|
||||
Unarmed.Ability.Bonus.1=Potenziamento Danno +{0}
|
||||
Unarmed.Ability.Chance.ArrowDeflect=[[RED]]Possibilit\u00E0 di Deviare Freccia: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=[[RED]]Possibilit\u00E0 di Disarmare: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=[[RED]]Probabilit\u00E0 di Presa di Ferro: [[YELLOW]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=[[RED]]Il tuo avversario ha una presa di ferro!
|
||||
Unarmed.Ability.Chance.ArrowDeflect=Possibilit\u00E0 di Deviare Freccia: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=Possibilit\u00E0 di Disarmare: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=Probabilit\u00E0 di Presa di Ferro: [[YELLOW]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=Il tuo avversario ha una presa di ferro!
|
||||
Unarmed.Ability.IronGrip.Defender=[[GREEN]]La tua presa di ferro ha evitato che venissi disarmato!
|
||||
Unarmed.Ability.Lower=[[GRAY]]**ABBASSI I PUGNI**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**PREPARI I PUGNI**
|
||||
@ -371,18 +371,18 @@ Unarmed.SubSkill.IronGrip.Name=Presa di Ferro
|
||||
Unarmed.SubSkill.IronGrip.Description=Ti impedisce di venire disarmato
|
||||
Unarmed.Listener=Lotta:
|
||||
Unarmed.SkillName=LOTTA
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**Furore si \u00E8 esaurito**
|
||||
Unarmed.Skills.Berserk.Off=**Furore si \u00E8 esaurito**
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**FURORE ATTIVATO**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]]Furore[[GREEN]] si \u00E8 esaurito per [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.Off=Furore[[GREEN]] si \u00E8 esaurito per [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] ha usato [[RED]]Furore!
|
||||
Unarmed.Skills.Berserk.Refresh=[[GREEN]]La tua capacit\u00E0 [[YELLOW]]Furore [[GREEN]]si \u00E8 rigenerata!
|
||||
Unarmed.Skillup=[[YELLOW]]L'abilit\u00E0 Lotta \u00E8 aumentata di {0}. Totale ({1})
|
||||
Unarmed.Skillup=L'abilit\u00E0 Lotta \u00E8 aumentata di {0}. Totale ({1})
|
||||
|
||||
#WOODCUTTING
|
||||
Woodcutting.Ability.0=Soffia Foglie
|
||||
Woodcutting.Ability.1=Soffia via le foglie
|
||||
Woodcutting.Ability.Chance.DDrop=[[RED]]Possibilit\u00E0 di Doppio Drop: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=[[RED]]Durata di Abbatti Alberi: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Chance.DDrop=Possibilit\u00E0 di Doppio Drop: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=Durata di Abbatti Alberi: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Locked.0=BLOCCATO FINO AD ABILIT\u00C0 {0}+ (SOFFIA FOGLIE)
|
||||
Woodcutting.SubSkill.TreeFeller.Name=Abbattitore d'Alberi (CAPACIT\u00C0)
|
||||
Woodcutting.SubSkill.TreeFeller.Description=Fa esplodere gli alberi
|
||||
@ -392,20 +392,20 @@ Woodcutting.SubSkill.HarvestLumber.Name=Doppi Drop
|
||||
Woodcutting.SubSkill.HarvestLumber.Description=Raddoppia il normale drop
|
||||
Woodcutting.Listener=Taglialegna:
|
||||
Woodcutting.SkillName=TAGLIALEGNA
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]]**Abbattitore d'Alberi si \u00E8 esaurito**
|
||||
Woodcutting.Skills.TreeFeller.Off=**Abbattitore d'Alberi si \u00E8 esaurito**
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**ABBATTITORE D'ALBERI ATTIVATO**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]La tua capacit\u00E0 [[YELLOW]]Abbattitore d'Alberi [[GREEN]]si \u00E8 rigenerata!
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]]Abbattitore d'Alberi[[GREEN]] si \u00E8 esaurito per [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=Abbattitore d'Alberi[[GREEN]] si \u00E8 esaurito per [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]] ha usato [[RED]]Abbattitore d'Alberi!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]LA TUA ASCIA SI FRANTUMA IN DECINE DI PEZZI!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]Quell'albero \u00E8 troppo grande!
|
||||
Woodcutting.Skillup=[[YELLOW]]L'abilit\u00E0 Taglialegna \u00E8 aumentata di {0}. Totale ({1})
|
||||
Woodcutting.Skills.TreeFeller.Splinter=LA TUA ASCIA SI FRANTUMA IN DECINE DI PEZZI!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=Quell'albero \u00E8 troppo grande!
|
||||
Woodcutting.Skillup=L'abilit\u00E0 Taglialegna \u00E8 aumentata di {0}. Totale ({1})
|
||||
|
||||
#ABILITIY
|
||||
##generic
|
||||
Ability.Generic.Refresh=[[GREEN]]**CAPACIT\u00C0 RIGENERATE!**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
|
||||
#COMBAT
|
||||
Combat.ArrowDeflect=[[WHITE]]**FRECCIA DEVIATA**
|
||||
@ -413,7 +413,7 @@ Combat.BeastLore=[[GREEN]]**CONOSCENZA DELLE BESTIE**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]Salute ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]Proprietario ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**SBRANATO**
|
||||
Combat.StruckByGore=[[RED]]**SEI STATO SBRANATO**
|
||||
Combat.StruckByGore=**SEI STATO SBRANATO**
|
||||
Combat.TargetDazed=Il bersaglio \u00E8 rimasto [[DARK_RED]]Stordito
|
||||
Combat.TouchedFuzzy=Urto Stordino. Vado nel Pallone.
|
||||
|
||||
@ -421,9 +421,9 @@ Combat.TouchedFuzzy=Urto Stordino. Vado nel Pallone.
|
||||
##generic
|
||||
mcMMO.Description=[[DARK_AQUA]]Riguardo il [[DARK_AQUA]]Progetto [[YELLOW]]mcMMO:,[[GOLD]]mcMMO \u00E8 una mod GdR [[RED]]open source[[GOLD]] creata nel Febbraio 2011,[[GOLD]]da [[BLUE]]nossr50[[GOLD]]. L'obiettivo \u00E8 quello di fornire un'esperienza GdR di qualit\u00E0.,[[DARK_AQUA]]Suggerimenti:,[[GOLD]] - [[GREEN]]Usa [[RED]]/mcmmo help[[GREEN]] per vedere i comandi,[[GOLD]] - [[GREEN]]Digita [[RED]]/NOMEABILIT\u00C0[[GREEN]] per vedere informazioni dettagliate su un'abilit\u00E0,[[DARK_AQUA]]Sviluppatori:,[[GOLD]] - [[GREEN]]nossr50 [[BLUE]](Fondatore),[[GOLD]] - [[GREEN]]GJ [[BLUE]](Capo Progetto),[[GOLD]] - [[GREEN]]NuclearW [[BLUE]](Sviluppatore),[[GOLD]] - [[GREEN]]bm01 [[BLUE]](Sviluppatore),[[GOLD]] - [[GREEN]]TfT_02 [[BLUE]](Sviluppatore),[[GOLD]] - [[GREEN]]Glitchfinder [[BLUE]](Sviluppatore),[[GOLD]] - [[GREEN]]t00thpick1 [[BLUE]](Sviluppatore),[[DARK_AQUA]]Link Utili:,[[GOLD]] - [[GREEN]]https://github.com/mcMMO-Dev/mcMMO/issues[[GOLD]] Segnalazione Bug,[[GOLD]] - [[GREEN]]#mcmmo @ irc.esper.net[[GOLD]] IRC Chat,
|
||||
Commands.addlevels.AwardAll.1=[[GREEN]]Ti sono stati aggiudicati {0} livelli in tutte le abilit\u00E0!
|
||||
Commands.addlevels.AwardAll.2=[[RED]]Tutte le abilit\u00E0 sono state modificate per {0}.
|
||||
Commands.addlevels.AwardAll.2=Tutte le abilit\u00E0 sono state modificate per {0}.
|
||||
Commands.addlevels.AwardSkill.1=[[GREEN]]Ti sono stati aggiudicati {0} livelli in {1}!
|
||||
Commands.addlevels.AwardSkill.2=[[RED]]{0} \u00E8 stata modificata per {1}.
|
||||
Commands.addlevels.AwardSkill.2={0} \u00E8 stata modificata per {1}.
|
||||
Commands.addxp.AwardAll=[[GREEN]]Ti sono stati aggiudicati {0} punti esperienza in tutte le abilit\u00E0!
|
||||
Commands.addxp.AwardSkill=[[GREEN]]Ti sono stati aggiudicati {0} punti esperienza in {1}!
|
||||
Commands.Ability.Off=Uso delle capacit\u00E0 [[RED]]disattivato
|
||||
@ -436,12 +436,12 @@ Commands.Chat.Console=*Console*
|
||||
Commands.Cooldowns.Header=[[GOLD]]--= [[GREEN]]Ricariche Abilit\u00E0 mcMMO[[GOLD]] =--
|
||||
Commands.Cooldowns.Row.N=\ [[RED]]{0}[[WHITE]] - [[GOLD]]{1} secondi rimanenti
|
||||
Commands.Cooldowns.Row.Y=\ [[AQUA]]{0}[[WHITE]] - [[DARK_GREEN]]Pronto!
|
||||
Commands.Database.Cooldown=[[RED]]Devi aspettare {0} secondi prima di poter usare questo comando ancora.
|
||||
Commands.Database.Processing=[[RED]]Il comando precedente \u00E8 ancora in fase di elaborazione. Attendere prego.
|
||||
Commands.Disabled=[[RED]]Questo comando \u00E8 disabilitato.
|
||||
Commands.DoesNotExist=[[RED]]Il giocatore non esiste nel database!
|
||||
Commands.GodMode.Disabled=[[YELLOW]]Modalit\u00E0 Dio di mcMMO Disabilitata
|
||||
Commands.GodMode.Enabled=[[YELLOW]]Modalit\u00E0 Dio di mcMMO Abilitata
|
||||
Commands.Database.Cooldown=Devi aspettare {0} secondi prima di poter usare questo comando ancora.
|
||||
Commands.Database.Processing=Il comando precedente \u00E8 ancora in fase di elaborazione. Attendere prego.
|
||||
Commands.Disabled=Questo comando \u00E8 disabilitato.
|
||||
Commands.DoesNotExist=Il giocatore non esiste nel database!
|
||||
Commands.GodMode.Disabled=Modalit\u00E0 Dio di mcMMO Disabilitata
|
||||
Commands.GodMode.Enabled=Modalit\u00E0 Dio di mcMMO Abilitata
|
||||
Commands.GodMode.Forbidden=[mcMMO] Modalit\u00E0 Dio non permessa in questo mondo (Vedi i Permessi)
|
||||
Commands.GodMode.Toggle=La modalit\u00E0 Dio \u00E8 stata attivata/disattivata per [[YELLOW]]{0}
|
||||
Commands.Healthbars.Changed.HEARTS=[mcMMO] Il tuo tipo di barra della salute \u00E8 stato cambiato a [[RED]]Cuori[[WHITE]].
|
||||
@ -451,40 +451,40 @@ Commands.Healthbars.Invalid=Tipo di barra della salute non valido!
|
||||
Commands.Inspect=<giocatore> [[GREEN]]- Visualizza informazioni dettagliate sul giocatore
|
||||
Commands.Invite.Success=[[GREEN]]Invito inviato con successo.
|
||||
Commands.Leaderboards=<abilit\u00E0> <pagina> [[GREEN]]- Classifiche
|
||||
Commands.mcc.Header=[[RED]]---[][[GREEN]]Comandi di mcMMO[[RED]][]---
|
||||
Commands.mcc.Header=---[][[GREEN]]Comandi di mcMMO[[RED]][]---
|
||||
Commands.mcgod=[[GREEN]]- Attiva o disattiva la Modalit\u00E0 Dio
|
||||
Commands.mchud.Invalid=[[RED]]Quello non \u00E8 un tipo di HUD valido.
|
||||
Commands.mchud.Invalid=Quello non \u00E8 un tipo di HUD valido.
|
||||
Commands.mcpurge.Success=[[GREEN]]Il database \u00E8 stato ripulito con successo!
|
||||
Commands.mcrank.Heading=[[GOLD]]-=GRADUATORIA PERSONALE=-
|
||||
Commands.mcrank.Overall=[[YELLOW]]Complessivo[[GREEN]] - [[GOLD]]Grado [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=[[RED]]BERSAGLIO: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill=[[YELLOW]]{0}[[GREEN]] - [[GOLD]]Grado [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Overall=Complessivo[[GREEN]] - [[GOLD]]Grado [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=BERSAGLIO: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill={0}[[GREEN]] - [[GOLD]]Grado [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Unranked=[[WHITE]]Non Classificato
|
||||
Commands.mcrefresh.Success=[[RED]]Le ricariche di {0} sono stati rigenerate.
|
||||
Commands.mcrefresh.Success=Le ricariche di {0} sono stati rigenerate.
|
||||
Commands.mcremove.Success=[[GREEN]]{0} \u00E8 stato rimosso con successo dal database!
|
||||
Commands.mctop.Tip=[[GOLD]]Suggerimento: Usa [[RED]]/mcrank[[GOLD]] per visualizzare tutte le tue graduatorie personali!
|
||||
Commands.mmoedit=[giocatore] <abilit\u00E0> <nuovovalore> [[GREEN]] - Modifica il bersaglio
|
||||
Commands.mmoedit.AllSkills.1=[[GREEN]]Il tuo livello in tutte le abilit\u00E0 \u00E8 stato portato a {0}!
|
||||
Commands.mmoedit.Modified.1=[[GREEN]]Il tuo livello di {0} \u00E8 stato portato a {1}!
|
||||
Commands.mmoedit.Modified.2=[[RED]]{0} \u00E8 stata modificata per {1}.
|
||||
Commands.mcconvert.Database.Same=[[RED]]Stai gi\u00E0 usando il database {0}!
|
||||
Commands.mcconvert.Database.InvalidType=[[RED]]{0} non \u00E8 un tipo di database valido.
|
||||
Commands.mmoedit.Modified.2={0} \u00E8 stata modificata per {1}.
|
||||
Commands.mcconvert.Database.Same=Stai gi\u00E0 usando il database {0}!
|
||||
Commands.mcconvert.Database.InvalidType={0} non \u00E8 un tipo di database valido.
|
||||
Commands.mcconvert.Database.Start=[[GRAY]]Avviando la conversione da {0} a {1}...
|
||||
Commands.mcconvert.Database.Finish=[[GRAY]]Migrazione del database completa; il database {1} ora ha tutti i dati dal database {0}.
|
||||
Commands.mmoshowdb=[[YELLOW]]Il database attualmente in uso \u00E8 [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=[[RED]]Tipo di formula sconosciuta! I tipi validi sono: [[GREEN]]LINEAR [[RED]]e [[GREEN]]EXPONENTIAL.
|
||||
Commands.mcconvert.Experience.Same=[[RED]]Tipo di formula {0} gi\u00E0 in uso
|
||||
Commands.mmoshowdb=Il database attualmente in uso \u00E8 [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=Tipo di formula sconosciuta! I tipi validi sono: [[GREEN]]LINEAR [[RED]]e [[GREEN]]EXPONENTIAL.
|
||||
Commands.mcconvert.Experience.Same=Tipo di formula {0} gi\u00E0 in uso
|
||||
Commands.mcconvert.Experience.Start=[[GRAY]]Avviando conversione da {0} a {1}
|
||||
Commands.mcconvert.Experience.Finish=[[GRAY]]Conversione formula completata; adesso in uso {0} XP.
|
||||
Commands.ModDescription=[[GREEN]]- Leggi breve descrizione di mod
|
||||
Commands.NoConsole=Questo comando non supporta l'uso da console.
|
||||
Commands.Notifications.Off=Notifiche delle capacit\u00E0 [[RED]]disattivate
|
||||
Commands.Notifications.On=Notifiche delle capacit\u00E0 [[GREEN]]attivate
|
||||
Commands.Offline=[[RED]]Questo comando non funziona per i giocatori offline.
|
||||
Commands.NotLoaded=[[RED]]Il profilo del giocatore non \u00E8 stato ancora caricato.
|
||||
Commands.Other=[[RED]]---[][[GREEN]]ALTRI COMANDI[[RED]][]---
|
||||
Commands.Party.Header=[[RED]]-----[][[GREEN]]GRUPPO[[RED]][]-----
|
||||
Commands.Party.Features.Header=[[RED]]-----[][[GREEN]]CARATTERISTICHE[[RED]][]-----
|
||||
Commands.Offline=Questo comando non funziona per i giocatori offline.
|
||||
Commands.NotLoaded=Il profilo del giocatore non \u00E8 stato ancora caricato.
|
||||
Commands.Other=---[][[GREEN]]ALTRI COMANDI[[RED]][]---
|
||||
Commands.Party.Header=-----[][[GREEN]]GRUPPO[[RED]][]-----
|
||||
Commands.Party.Features.Header=-----[][[GREEN]]CARATTERISTICHE[[RED]][]-----
|
||||
Commands.Party.Status=[[DARK_GRAY]]NOME: [[WHITE]]{0} {1} [[DARK_GRAY]]LIVELLO: [[DARK_AQUA]]{2}
|
||||
Commands.Party.Status.Alliance=[[DARK_GRAY]]ALLEATO: [[WHITE]]{0}
|
||||
Commands.Party.UnlockedFeatures=[[DARK_GRAY]]Caratteristiche sbloccate: [[GRAY]][[ITALIC]]{0}
|
||||
@ -496,9 +496,9 @@ Commands.Party.MembersNear=[[DARK_GRAY]]VICINO A TE [[DARK_AQUA]]{0}[[DARK_GRAY]
|
||||
Commands.Party.Accept=[[GREEN]]- Accetta l'invito di un gruppo
|
||||
Commands.Party.Chat.Off=Chat Gruppo [[GREEN]]Inattiva
|
||||
Commands.Party.Chat.On=Chat Gruppo [[GREEN]]Attiva
|
||||
Commands.Party.Commands=[[RED]]---[][[GREEN]]COMANDI GRUPPO[[RED]][]---
|
||||
Commands.Party.Invite.0=[[RED]]AVVISO: [[GREEN]]Hai ricevuto un invito ad unirti al gruppo {0} da {1}
|
||||
Commands.Party.Invite.1=[[YELLOW]]Digita [[GREEN]]/party accept[[YELLOW]] per accettare l'invito
|
||||
Commands.Party.Commands=---[][[GREEN]]COMANDI GRUPPO[[RED]][]---
|
||||
Commands.Party.Invite.0=AVVISO: [[GREEN]]Hai ricevuto un invito ad unirti al gruppo {0} da {1}
|
||||
Commands.Party.Invite.1=Digita [[GREEN]]/party accept[[YELLOW]] per accettare l'invito
|
||||
Commands.Party.Invite=[[GREEN]]- Invia un invito a entrare nel gruppo
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]Invito Accettato. Ti sei unito al gruppo {0}
|
||||
Commands.Party.Join=[[GRAY]]Ti sei unito al Gruppo: {0}
|
||||
@ -507,42 +507,42 @@ Commands.Party.Rename=[[GRAY]]Nome del gruppo cambiato a: [[WHITE]]{0}
|
||||
Commands.Party.SetSharing=[[GRAY]]Modalit\u00E0 spartizione del gruppo {0} impostata a: [[DARK_AQUA]]{1}
|
||||
Commands.Party.ToggleShareCategory=[[GRAY]]La condivisione oggetti del gruppo per [[GOLD]]{0} [[GRAY]]\u00E8 stata [[DARK_AQUA]]{1}
|
||||
Commands.Party.AlreadyExists=[[DARK_RED]]Il gruppo {0} esiste gi\u00E0!
|
||||
Commands.Party.Kick=[[RED]]Sei stato espulso dal gruppo {0}!
|
||||
Commands.Party.Leave=[[RED]]Hai abbandonato quel gruppo
|
||||
Commands.Party.Members.Header=[[RED]]-----[][[GREEN]]MEMBRI[[RED]][]-----
|
||||
Commands.Party.None=[[RED]]Non sei in un gruppo.
|
||||
Commands.Party.Kick=Sei stato espulso dal gruppo {0}!
|
||||
Commands.Party.Leave=Hai abbandonato quel gruppo
|
||||
Commands.Party.Members.Header=-----[][[GREEN]]MEMBRI[[RED]][]-----
|
||||
Commands.Party.None=Non sei in un gruppo.
|
||||
Commands.Party.Quit=[[GREEN]]- Abbandona il tuo gruppo attuale
|
||||
Commands.Party.Teleport=[[GREEN]]- Teletrasportati da un membro del gruppo
|
||||
Commands.Party.Toggle=[[GREEN]]- Attiva/disattiva la Chat Gruppo
|
||||
Commands.Party1=[[GREEN]]- Crea un nuovo gruppo
|
||||
Commands.Party2=[[GREEN]]- Unisciti a un gruppo di giocatori
|
||||
Commands.Party.Alliance.Header=[[RED]]-----[][[GREEN]]ALLEANZA DEL GRUPPO[[RED]][]-----
|
||||
Commands.Party.Alliance.Header=-----[][[GREEN]]ALLEANZA DEL GRUPPO[[RED]][]-----
|
||||
Commands.Party.Alliance.Ally=[[WHITE]]{0} [[DARK_GRAY]]\u00C8 ALLEATO CON: [[WHITE]]{1}
|
||||
Commands.Party.Alliance.Members.Header=[[RED]]-----[][[GREEN]]MEMBRI ALLEANZA[[RED]][]-----
|
||||
Commands.Party.Alliance.Invite.0=[[RED]]AVVISO: [[GREEN]]Hai ricevuto un invito di alleanza del gruppo per {0} da {1}
|
||||
Commands.Party.Alliance.Invite.1=[[YELLOW]]Digita [[GREEN]]/party alliance accept[[YELLOW]] per accettare l'invito
|
||||
Commands.Party.Alliance.Members.Header=-----[][[GREEN]]MEMBRI ALLEANZA[[RED]][]-----
|
||||
Commands.Party.Alliance.Invite.0=AVVISO: [[GREEN]]Hai ricevuto un invito di alleanza del gruppo per {0} da {1}
|
||||
Commands.Party.Alliance.Invite.1=Digita [[GREEN]]/party alliance accept[[YELLOW]] per accettare l'invito
|
||||
Commands.Party.Alliance.Invite.Accepted=[[GREEN]]Invito di alleanza accettato.
|
||||
Commands.Party.Alliance.None=[[RED]]Il tuo gruppo non ha un alleato.
|
||||
Commands.Party.Alliance.AlreadyAllies=[[RED]]Il tuo gruppo ha gi\u00E0 un'alleato. Sciogli l'alleanza con [[DARK_AQUA]]/party alliance disband
|
||||
Commands.Party.Alliance.Help.0=[[RED]]Questo gruppo non ha formato un'alleanza. Invita un capo gruppo.
|
||||
Commands.Party.Alliance.Help.1=[[RED]] fai un'alleanza con [[DARK_AQUA]]/party alliance invite <giocatore>[[RED]].
|
||||
Commands.Party.Alliance.None=Il tuo gruppo non ha un alleato.
|
||||
Commands.Party.Alliance.AlreadyAllies=Il tuo gruppo ha gi\u00E0 un'alleato. Sciogli l'alleanza con [[DARK_AQUA]]/party alliance disband
|
||||
Commands.Party.Alliance.Help.0=Questo gruppo non ha formato un'alleanza. Invita un capo gruppo.
|
||||
Commands.Party.Alliance.Help.1= fai un'alleanza con [[DARK_AQUA]]/party alliance invite <giocatore>[[RED]].
|
||||
Commands.ptp.Enabled=Teletrasporto del gruppo [[GREEN]]abilitato
|
||||
Commands.ptp.Disabled=Teletrasporto del gruppo [[RED]]disabilitato
|
||||
Commands.ptp.NoRequests=[[RED]]Non hai richieste di teletrasporto in questo momento
|
||||
Commands.ptp.NoWorldPermissions=[[RED]][mcMMO] Non hai il permesso di teletrasportarti verso il mondo {0}.
|
||||
Commands.ptp.Request1=[[YELLOW]]{0} [[GREEN]]ha richiesto di teletrasportarsi da te.
|
||||
Commands.ptp.NoRequests=Non hai richieste di teletrasporto in questo momento
|
||||
Commands.ptp.NoWorldPermissions=[mcMMO] Non hai il permesso di teletrasportarti verso il mondo {0}.
|
||||
Commands.ptp.Request1={0} [[GREEN]]ha richiesto di teletrasportarsi da te.
|
||||
Commands.ptp.Request2=[[GREEN]]Per teletrasportarti digita [[YELLOW]]/ptp accept[[GREEN]]. La richiesta scadr\u00E0 tra [[RED]]{0} [[GREEN]]secondi.
|
||||
Commands.ptp.AcceptAny.Enabled=Conferma delle richieste di teletrasporto del gruppo [[GREEN]]abilitata
|
||||
Commands.ptp.AcceptAny.Disabled=Conferma delle richieste di teletrasporto del gruppo [[RED]]disabilitata
|
||||
Commands.ptp.RequestExpired=[[RED]]La richiesta di teletrasporto del gruppo \u00E8 scaduta!
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--Classifica mcMMO dei [[BLUE]]Livelli di Potere[[YELLOW]]--
|
||||
Commands.ptp.RequestExpired=La richiesta di teletrasporto del gruppo \u00E8 scaduta!
|
||||
Commands.PowerLevel.Leaderboard=--Classifica mcMMO dei [[BLUE]]Livelli di Potere[[YELLOW]]--
|
||||
Commands.PowerLevel.Capped=[[DARK_RED]]LIVELLO DI POTERE: [[GREEN]]{0} [[DARK_RED]]LIVELLO MASSIMO: [[YELLOW]]{1}
|
||||
Commands.PowerLevel=[[DARK_RED]]LIVELLO DI POTERE: [[GREEN]]{0}
|
||||
Commands.Reset.All=[[GREEN]]Tutti i tuoi livelli di abilit\u00E0 sono stati azzerati con successo.
|
||||
Commands.Reset.Single=[[GREEN]]La tua abilit\u00E0 {0} \u00E8 stata azzerata con successo.
|
||||
Commands.Reset=[[GREEN]]- Reimposta un livello di abilit\u00E0 a 0
|
||||
Commands.Scoreboard.Clear=[[DARK_AQUA]]scoreboard mcMMO cancellata.
|
||||
Commands.Scoreboard.NoBoard=[[RED]]La scoreboard mcMMO non \u00E8 attiva.
|
||||
Commands.Scoreboard.NoBoard=La scoreboard mcMMO non \u00E8 attiva.
|
||||
Commands.Scoreboard.Keep=[[DARK_AQUA]]La scoreboard mcMMO rimmarr\u00E0 fino a quando non userai [[GREEN]]/mcscoreboard clear[[DARK_AQUA]].
|
||||
Commands.Scoreboard.Timer=[[DARK_AQUA]]La scoreboard mcMMO sar\u00E0 cancellata tra [[GOLD]]{0}[[DARK_AQUA]] secondi da adesso.
|
||||
Commands.Scoreboard.Help.0=[[GOLD]] == [[GREEN]]Aiuto per [[RED]]/mcscoreboard[[GOLD]] ==
|
||||
@ -551,16 +551,16 @@ Commands.Scoreboard.Help.2=[[DARK_AQUA]]/mcscoreboard[[AQUA]] keep [[WHITE]] - m
|
||||
Commands.Scoreboard.Help.3=[[DARK_AQUA]]/mcscoreboard[[AQUA]] time [n] [[WHITE]] - cancella la scoreboard McMMO dopo [[LIGHT_PURPLE]]n[[WHITE]] secondi
|
||||
Commands.Scoreboard.Tip.Keep=[[GOLD]]Suggerimento: Usa [[RED]]/mcscoreboard keep[[GOLD]] mentre la scoreboard \u00E8 attiva per evitare che vada via.
|
||||
Commands.Scoreboard.Tip.Clear=[[GOLD]]Suggerimento: Usa [[RED]]/mcscoreboard clear[[GOLD]] per sbarazzarti della scoreboard.
|
||||
Commands.Skill.Invalid=[[RED]]Questo non \u00E8 un nome di abilit\u00E0 valido!
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--Classifica mcMMO di [[BLUE]]{0}[[YELLOW]]--
|
||||
Commands.Skill.Invalid=Questo non \u00E8 un nome di abilit\u00E0 valido!
|
||||
Commands.Skill.Leaderboard=--Classifica mcMMO di [[BLUE]]{0}[[YELLOW]]--
|
||||
Commands.SkillInfo=[[GREEN]]- Vedi informazioni dettagliate su un'abilit\u00E0
|
||||
Commands.Stats.Self=LE TUE STATISTICHE
|
||||
Commands.Stats=[[GREEN]]- Visualizza le tue statistiche mcMMO
|
||||
Commands.ToggleAbility=[[GREEN]]- Attiva o disattiva l'attivazione delle abilit\u00E0 con click destro
|
||||
Commands.Usage.0= [[RED]]L'uso appropriato \u00E8 /{0}
|
||||
Commands.Usage.1=[[RED]]L'uso appropriato \u00E8 /{0} {1}
|
||||
Commands.Usage.2=[[RED]]L'uso appropriato \u00E8 /{0} {1} {2}
|
||||
Commands.Usage.3=[[RED]]L'uso appropriato \u00E8 /{0} {1} {2} {3}
|
||||
Commands.Usage.1=L'uso appropriato \u00E8 /{0} {1}
|
||||
Commands.Usage.2=L'uso appropriato \u00E8 /{0} {1} {2}
|
||||
Commands.Usage.3=L'uso appropriato \u00E8 /{0} {1} {2} {3}
|
||||
Commands.Usage.FullClassName=nome classe
|
||||
Commands.Usage.Level=livello
|
||||
Commands.Usage.Message=messaggio
|
||||
@ -571,61 +571,61 @@ Commands.Usage.Player=giocatore
|
||||
Commands.Usage.Rate=tasso
|
||||
Commands.Usage.Skill=abilit\u00E0
|
||||
Commands.Usage.XP=xp
|
||||
mcMMO.NoInvites=[[RED]]Non hai inviti in questo momento
|
||||
mcMMO.NoInvites=Non hai inviti in questo momento
|
||||
mcMMO.NoPermission=[[DARK_RED]]Permessi insufficienti.
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]Se non hai accesso a un'abilit\u00E0 non sar\u00E0 mostrata qui.
|
||||
|
||||
##party
|
||||
Party.Forbidden=[mcMMO] I gruppi non sono permessi in questo mondo (vedi i Permessi)
|
||||
Party.Help.0=[[RED]]L'uso appropriato \u00E8 [[DARK_AQUA]]{0} <giocatore> [password].
|
||||
Party.Help.1=[[RED]]Per creare un gruppo, usa [[DARK_AQUA]]{0} <nome> [password].
|
||||
Party.Help.2=[[RED]]Consulta [[DARK_AQUA]]{0} [[RED]]per maggiori informazioni
|
||||
Party.Help.3=[[RED]]Usa [[DARK_AQUA]]{0} <giocatore> [password] [[RED]]per unirti o [[DARK_AQUA]]{1} [[RED]]per congedarti
|
||||
Party.Help.4=[[RED]]Per chiudere o aprire il tuo gruppo, usa [[DARK_AQUA]]{0}
|
||||
Party.Help.5=[[RED]]Per proteggere il tuo gruppo con una password, usa [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=[[RED]]Per espellere un giocatore dal tuo gruppo, usa [[DARK_AQUA]]{0} <giocatore>
|
||||
Party.Help.7=[[RED]]Per trasferire la propriet\u00E0 del tuo gruppo, usa [[DARK_AQUA]]{0} <giocatore>
|
||||
Party.Help.8=[[RED]]Per sciogliere il tuo gruppo, usa [[DARK_AQUA]]{0}
|
||||
Party.Help.9=[[RED]]Usa [[DARK_AQUA]]{0} [[RED]]per condividere oggetti con i membri del tuo gruppo
|
||||
Party.Help.10=[[RED]]Usa [[DARK_AQUA]]{0} [[RED]]per abilitare la condivisione di XP con i membri del tuo gruppo
|
||||
Party.Help.0=L'uso appropriato \u00E8 [[DARK_AQUA]]{0} <giocatore> [password].
|
||||
Party.Help.1=Per creare un gruppo, usa [[DARK_AQUA]]{0} <nome> [password].
|
||||
Party.Help.2=Consulta [[DARK_AQUA]]{0} [[RED]]per maggiori informazioni
|
||||
Party.Help.3=Usa [[DARK_AQUA]]{0} <giocatore> [password] [[RED]]per unirti o [[DARK_AQUA]]{1} [[RED]]per congedarti
|
||||
Party.Help.4=Per chiudere o aprire il tuo gruppo, usa [[DARK_AQUA]]{0}
|
||||
Party.Help.5=Per proteggere il tuo gruppo con una password, usa [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=Per espellere un giocatore dal tuo gruppo, usa [[DARK_AQUA]]{0} <giocatore>
|
||||
Party.Help.7=Per trasferire la propriet\u00E0 del tuo gruppo, usa [[DARK_AQUA]]{0} <giocatore>
|
||||
Party.Help.8=Per sciogliere il tuo gruppo, usa [[DARK_AQUA]]{0}
|
||||
Party.Help.9=Usa [[DARK_AQUA]]{0} [[RED]]per condividere oggetti con i membri del tuo gruppo
|
||||
Party.Help.10=Usa [[DARK_AQUA]]{0} [[RED]]per abilitare la condivisione di XP con i membri del tuo gruppo
|
||||
Party.InformedOnJoin={0} [[GREEN]]si \u00E8 unito al tuo gruppo
|
||||
Party.InformedOnQuit={0} [[GREEN]]ha abbandonato il tuo gruppo
|
||||
Party.InformedOnNameChange=[[GOLD]]{0} [[GREEN]]ha impostato il nome del gruppo a [[WHITE]]{1}
|
||||
Party.InvalidName=[[DARK_RED]]Questo non \u00E8 un nome di gruppo valido.
|
||||
Party.Invite.Self=[[RED]]Non puoi invitare te stesso!
|
||||
Party.IsLocked=[[RED]]Questo gruppo \u00E8 gi\u00E0 chiuso!
|
||||
Party.IsntLocked=[[RED]]Questo gruppo non \u00E8 chiuso!
|
||||
Party.Locked=[[RED]]Il gruppo \u00E8 chiuso, solo il capo del gruppo pu\u00F2 fare inviti.
|
||||
Party.Invite.Self=Non puoi invitare te stesso!
|
||||
Party.IsLocked=Questo gruppo \u00E8 gi\u00E0 chiuso!
|
||||
Party.IsntLocked=Questo gruppo non \u00E8 chiuso!
|
||||
Party.Locked=Il gruppo \u00E8 chiuso, solo il capo del gruppo pu\u00F2 fare inviti.
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} non \u00E8 nel tuo gruppo
|
||||
Party.NotOwner=[[DARK_RED]]Non sei il capo del gruppo.
|
||||
Party.Target.NotOwner=[[DARK_RED]]{0} non \u00E8 il capo del gruppo.
|
||||
Party.Owner.New=[[GREEN]]{0} \u00E8 il nuovo capo del gruppo.
|
||||
Party.Owner.NotLeader=[[DARK_RED]]Non sei pi\u00F9 il capo del gruppo.
|
||||
Party.Owner.Player=[[GREEN]]Ora sei il capo del gruppo.
|
||||
Party.Password.None=[[RED]]Questo gruppo \u00E8 protetto da password. Sei pregato di fornire una password per unirti ad esso.
|
||||
Party.Password.Incorrect=[[RED]]La password del gruppo \u00E8 errata.
|
||||
Party.Password.None=Questo gruppo \u00E8 protetto da password. Sei pregato di fornire una password per unirti ad esso.
|
||||
Party.Password.Incorrect=La password del gruppo \u00E8 errata.
|
||||
Party.Password.Set=[[GREEN]]Password del gruppo impostata a {0}
|
||||
Party.Password.Removed=[[GREEN]]La password del gruppo \u00E8 stata rimossa.
|
||||
Party.Player.Invalid=[[RED]]Quello non \u00E8 un giocatore valido.
|
||||
Party.Player.Invalid=Quello non \u00E8 un giocatore valido.
|
||||
Party.NotOnline=[[DARK_RED]]{0} non \u00E8 online!
|
||||
Party.Player.InSameParty=[[RED]]{0} \u00E8 gi\u00E0 nel tuo gruppo!
|
||||
Party.Player.InSameParty={0} \u00E8 gi\u00E0 nel tuo gruppo!
|
||||
Party.PlayerNotInParty=[[DARK_RED]]{0} non \u00E8 in un gruppo
|
||||
Party.Specify=[[RED]]Devi specificare un gruppo.
|
||||
Party.Teleport.Dead=[[RED]]Non puoi teletrasportarti da un giocatore morto.
|
||||
Party.Teleport.Hurt=[[RED]]Sei stato ferito negli ultimi {0} secondi e non puoi teletrasportarti.
|
||||
Party.Specify=Devi specificare un gruppo.
|
||||
Party.Teleport.Dead=Non puoi teletrasportarti da un giocatore morto.
|
||||
Party.Teleport.Hurt=Sei stato ferito negli ultimi {0} secondi e non puoi teletrasportarti.
|
||||
Party.Teleport.Player=[[GREEN]]Ti sei teletrasportato da {0}.
|
||||
Party.Teleport.Self=[[RED]]Non puoi teletrasportarti verso te stesso!
|
||||
Party.Teleport.Self=Non puoi teletrasportarti verso te stesso!
|
||||
Party.Teleport.Target=[[GREEN]]{0} ti ha teletrasportato.
|
||||
Party.Teleport.Disabled=[[RED]]{0} non consente il teletrasporto del gruppo.
|
||||
Party.Rename.Same=[[RED]]Questo \u00E8 gi\u00E0 il nome del tuo gruppo!
|
||||
Party.Join.Self=[[RED]]Non puoi unirti a te stesso!
|
||||
Party.Teleport.Disabled={0} non consente il teletrasporto del gruppo.
|
||||
Party.Rename.Same=Questo \u00E8 gi\u00E0 il nome del tuo gruppo!
|
||||
Party.Join.Self=Non puoi unirti a te stesso!
|
||||
Party.Unlocked=[[GRAY]]Il gruppo \u00E8 aperto
|
||||
Party.Disband=[[GRAY]]Il gruppo \u00E8 stato sciolto
|
||||
Party.Alliance.Formed=[[GRAY]]Il tuo gruppo \u00E8 ora alleato con [[GREEN]]{0}
|
||||
Party.Alliance.Disband=[[GRAY]]Il tuo gruppo non \u00E8 pi\u00F9 alleato con [[RED]]{0}
|
||||
Party.Status.Locked=[[DARK_RED]](SOLO SU INVITO)
|
||||
Party.Status.Unlocked=[[DARK_GREEN]](APERTO)
|
||||
Party.LevelUp=[[YELLOW]]Livello del gruppo aumentato di {0}. Totale ({1})
|
||||
Party.LevelUp=Livello del gruppo aumentato di {0}. Totale ({1})
|
||||
Party.Feature.Chat=Chat Gruppo
|
||||
Party.Feature.Teleport=Teletrasporto del Gruppo
|
||||
Party.Feature.Alliance=Alleanze
|
||||
@ -636,11 +636,11 @@ Party.Feature.Locked.Teleport=BLOCCATO FINO A {0}+ (TELETRASPORTO DEL GRUPPO)
|
||||
Party.Feature.Locked.Alliance=BLOCCATO FINO A {0}+ (ALLEANZE)
|
||||
Party.Feature.Locked.ItemShare=BLOCCATO FINO A {0}+ (CONDIVISIONE OGGETTI)
|
||||
Party.Feature.Locked.XpShare=BLOCCATO FINO A {0}+ (CONDIVISIONE XP)
|
||||
Party.Feature.Disabled.1=[[RED]]La chat del gruppo non \u00E8 stata ancora sbloccata.
|
||||
Party.Feature.Disabled.2=[[RED]]Il teletrasporto del gruppo non \u00E8 stato ancora sbloccato.
|
||||
Party.Feature.Disabled.3=[[RED]]Le alleanze del gruppo non sono ancora state sbloccate.
|
||||
Party.Feature.Disabled.4=[[RED]]La condivisione del gruppo degli oggetti non \u00E8 ancora sbloccata.
|
||||
Party.Feature.Disabled.5=[[RED]]La condivisione di XP del gruppo non \u00E8 stata ancora sbloccata.
|
||||
Party.Feature.Disabled.1=La chat del gruppo non \u00E8 stata ancora sbloccata.
|
||||
Party.Feature.Disabled.2=Il teletrasporto del gruppo non \u00E8 stato ancora sbloccato.
|
||||
Party.Feature.Disabled.3=Le alleanze del gruppo non sono ancora state sbloccate.
|
||||
Party.Feature.Disabled.4=La condivisione del gruppo degli oggetti non \u00E8 ancora sbloccata.
|
||||
Party.Feature.Disabled.5=La condivisione di XP del gruppo non \u00E8 stata ancora sbloccata.
|
||||
Party.ShareType.Xp=XP
|
||||
Party.ShareType.Item=OGGETTO
|
||||
Party.ShareMode.None=NESSUNA
|
||||
@ -670,11 +670,11 @@ Commands.XPGain.Woodcutting=Abbattere alberi
|
||||
Commands.XPGain=[[DARK_GRAY]]GUADAGNO XP: [[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]La tua BARRA XP \u00E8 ora bloccata a {0}!
|
||||
Commands.xplock.unlocked=[[GOLD]]La tua BARRA XP \u00E8 ora [[GREEN]]SBLOCCATA[[GOLD]]!
|
||||
Commands.xprate.modified=[[RED]]Il TASSO XP \u00E8 stato portato a {0}
|
||||
Commands.xprate.over=[[RED]]L'evento mcMMO di tasso XP \u00E8 FINITO!!
|
||||
Commands.xprate.proper.0=[[RED]]L'uso corretto per cambiare il tasso di XP \u00E8 /xprate <numero intero> <true/false>
|
||||
Commands.xprate.proper.1=[[RED]]L'uso corretto per ripristinare il tasso di XP al valore originale \u00E8 /xprate reset
|
||||
Commands.xprate.proper.2=[[RED]]Per favore specifica "true" o "false" per indicare se questo \u00E8 un evento XP o meno
|
||||
Commands.xprate.modified=Il TASSO XP \u00E8 stato portato a {0}
|
||||
Commands.xprate.over=L'evento mcMMO di tasso XP \u00E8 FINITO!!
|
||||
Commands.xprate.proper.0=L'uso corretto per cambiare il tasso di XP \u00E8 /xprate <numero intero> <true/false>
|
||||
Commands.xprate.proper.1=L'uso corretto per ripristinare il tasso di XP al valore originale \u00E8 /xprate reset
|
||||
Commands.xprate.proper.2=Per favore specifica "true" o "false" per indicare se questo \u00E8 un evento XP o meno
|
||||
Commands.xprate.started.0=[[GOLD]]\u00C8 INIZIATO UN EVENTO XP PER mcMMO!
|
||||
Commands.xprate.started.1=[[GOLD]]IL TASSO DI XP DI mcMMO ORA \u00C8 {0}x!
|
||||
XPRate.Event=[[GOLD]]\u00C8 in corso un evento mcMMO sul tasso XP! Il tasso XP \u00E8 {0}x!
|
||||
@ -684,7 +684,7 @@ XPRate.Event=[[GOLD]]\u00C8 in corso un evento mcMMO sul tasso XP! Il tasso XP \
|
||||
Effects.Effects=EFFETTI
|
||||
Effects.Child=[[DARK_GRAY]]LVL: [[GREEN]]{0}
|
||||
Effects.Level=[[DARK_GRAY]]LVL: [[GREEN]]{0} [[DARK_AQUA]]XP[[YELLOW]]([[GOLD]]{1}[[YELLOW]]/[[GOLD]]{2}[[YELLOW]])
|
||||
Effects.Parent = [[GOLD]]{0} -
|
||||
Effects.Parent= [[GOLD]]{0} -
|
||||
Effects.Template=[[DARK_AQUA]]{0}: [[GREEN]]{1}
|
||||
|
||||
#GUIDES
|
||||
@ -692,7 +692,7 @@ Guides.Available=[[GRAY]]Guida per {0} disponibile - digita /{1} ? [pagina]
|
||||
Guides.Header=[[GOLD]]-=[[GREEN]]{0} Guida[[GOLD]]=-
|
||||
Guides.Page.Invalid=Non \u00E8 un numero di pagina valido!
|
||||
Guides.Page.OutOfRange=Quella pagina non esiste, ci sono solo {0} pagine in totale.
|
||||
Guides.Usage=[[RED]] L'uso \u00E8 /{0} ? [pagina]
|
||||
Guides.Usage= L'uso \u00E8 /{0} ? [pagina]
|
||||
|
||||
##Acrobatics
|
||||
Guides.Acrobatics.Section.0=[[DARK_AQUA]]Riguardo L'Acrobatica:\n[[YELLOW]]L'Acrobatica \u00E8 l'arte di muoversi con grazia in mcMMO.\n[[YELLOW]]Essa fornisce bonus di combattimento e bonus di danni ambientali.\n\n[[DARK_AQUA]]GUADAGNO XP:\n[[YELLOW]]Per guadagnare XP in questa abilit\u00E0 \u00E8 necessario\n[[YELLOW]]eseguire schivate in combattimento\n[[YELLOW]]o sopravvivere a cadute che danneggiano.
|
||||
@ -806,17 +806,17 @@ Guides.Woodcutting.Section.2=[[DARK_AQUA]]Come funziona Soffia Foglie?\n[[YELLOW
|
||||
Guides.Woodcutting.Section.3=[[DARK_AQUA]]Come funziona Doppi Drop?\n[[YELLOW]]Questa \u00E8 una capacit\u00E0 passiva che permette di ottenere\n[[YELLOW]]un blocco extra per ogni ceppo di legno che si taglia.
|
||||
|
||||
#INSPECT
|
||||
Inspect.Offline=[[RED]]Non hai il permesso di esaminare giocatori disconnessi!
|
||||
Inspect.Offline=Non hai il permesso di esaminare giocatori disconnessi!
|
||||
Inspect.OfflineStats=Statistiche mcMMO del Giocatore Disconnesso [[YELLOW]]{0}
|
||||
Inspect.Stats=[[GREEN]]Statistiche mcMMO di [[YELLOW]]{0}
|
||||
Inspect.TooFar=[[RED]]Sei troppo lontano da quel giocatore per esaminarlo!
|
||||
Inspect.TooFar=Sei troppo lontano da quel giocatore per esaminarlo!
|
||||
|
||||
#ITEMS
|
||||
Item.ChimaeraWing.Fail=**ALA CHIMERICA FALLITA!**
|
||||
Item.ChimaeraWing.Pass=**ALA CHIMERICA**
|
||||
Item.ChimaeraWing.Name=Ala Chimerica
|
||||
Item.ChimaeraWing.Lore=[[GRAY]]Ti teletrasporta al tuo letto.
|
||||
Item.Generic.Wait=[[RED]]Devi aspettare prima di poterlo usare di nuovo! [[YELLOW]]({0}s)
|
||||
Item.Generic.Wait=Devi aspettare prima di poterlo usare di nuovo! [[YELLOW]]({0}s)
|
||||
Item.Injured.Wait=Sei stato ferito di recente e devi aspettare per usarlo. [[YELLOW]]({0}s)
|
||||
Item.FluxPickaxe.Name=Piccone Cuocente
|
||||
Item.FluxPickaxe.Lore.1=[[GRAY]]Ha la possibilit\u00E0 di fusione immediata dei minerali.
|
||||
@ -829,13 +829,13 @@ Teleport.Cancelled=[[DARK_RED]]Teletrasporto annullato!
|
||||
#SKILLS
|
||||
Skills.Child=[[GOLD]](ABILIT\u00C0 FIGLIA)
|
||||
Skills.Disarmed=[[DARK_RED]]Sei stato disarmato!
|
||||
Skills.Header=[[RED]]-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.Header=-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.NeedMore=[[DARK_RED]]Hai bisogno di pi\u00F9 [[GRAY]]{0}
|
||||
Skills.Parents=ABILIT\u00C0 MADRI
|
||||
Skills.Stats=[[YELLOW]]{0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats=[[YELLOW]]{0}[[GREEN]]{1}
|
||||
Skills.TooTired=[[RED]]Sei troppo stanco per usare ancora questa capacit\u00E0. [[YELLOW]]({0}s)
|
||||
Skills.Cancelled=[[RED]]{0} annullata!
|
||||
Skills.Stats={0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats={0}[[GREEN]]{1}
|
||||
Skills.TooTired=Sei troppo stanco per usare ancora questa capacit\u00E0. [[YELLOW]]({0}s)
|
||||
Skills.Cancelled={0} annullata!
|
||||
Skills.ConfirmOrCancel=[[GREEN]]Clicca ancora col destro per confermare [[GOLD]]{0}[[GREEN]]. Clicca col sinistro per annullare.
|
||||
|
||||
#STATISTICS
|
||||
@ -875,17 +875,17 @@ MOTD.Donate=[[DARK_AQUA]]Info Donazioni:
|
||||
MOTD.Hardcore.Enabled=[[GOLD]][mcMMO] [[DARK_AQUA]]Modalit\u00E0 hardcore abilitata: [[DARK_RED]]{0}
|
||||
MOTD.Hardcore.DeathStatLoss.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Penalit\u00E0 alle Abilit\u00E0 causa Morte: [[DARK_RED]]{0}%
|
||||
MOTD.Hardcore.Vampirism.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Salasso di Statistiche da Vampirismo: [[DARK_RED]]{0}%
|
||||
MOTD.PerksPrefix=[[RED]][Vantaggi mcMMO]
|
||||
MOTD.PerksPrefix=[Vantaggi mcMMO]
|
||||
MOTD.Version=[[GOLD]][mcMMO] versione [[DARK_AQUA]]{0}
|
||||
MOTD.Website=[[GOLD]][mcMMO] [[GREEN]]{0}[[YELLOW]] - Sito di mcMMO
|
||||
|
||||
#SMELTING
|
||||
Smelting.Ability.FluxMining=[[RED]]Possibilit\u00E0 di Estrazione Cuocente: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=[[RED]]Moltiplicatore di Efficienza Combustibile: [[YELLOW]]{0}x
|
||||
Smelting.Ability.FluxMining=Possibilit\u00E0 di Estrazione Cuocente: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=Moltiplicatore di Efficienza Combustibile: [[YELLOW]]{0}x
|
||||
Smelting.Ability.Locked.0=BLOCCATO FINO AD ABILIT\u00C0 {0}+ (INCREMENTO XP VANILLA)
|
||||
Smelting.Ability.Locked.1=BLOCCATO FINO AD ABILIT\u00C0 {0}+ (ESTRAZIONE CUOCENTE)
|
||||
Smelting.Ability.SecondSmelt=[[RED]]Possibilit\u00E0 di Seconda Fusione: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=[[RED]]Moltiplicatore XP Vanilla: [[YELLOW]]{0}x
|
||||
Smelting.Ability.SecondSmelt=Possibilit\u00E0 di Seconda Fusione: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=Moltiplicatore XP Vanilla: [[YELLOW]]{0}x
|
||||
Smelting.SubSkill.FuelEfficiency.Name=Efficienza Combustibile
|
||||
Smelting.SubSkill.FuelEfficiency.Description=Aumenta il tempo di combustione del carburante usato nelle fornaci
|
||||
Smelting.SubSkill.SecondSmelt.Name=Seconda Fusione
|
||||
@ -934,20 +934,20 @@ UpdateChecker.Outdated=Stai usando una versione non aggiornata di mcMMO!
|
||||
UpdateChecker.NewAvailable=\u00C8 disponibile una nuova versione su BukkitDev.
|
||||
|
||||
#SCOREBOARD HEADERS
|
||||
Scoreboard.Header.PlayerStats=[[YELLOW]]Statistiche mcMMO
|
||||
Scoreboard.Header.PlayerCooldowns=[[YELLOW]]Ricariche mcMMO
|
||||
Scoreboard.Header.PlayerRank=[[YELLOW]]Graduatorie McMMO
|
||||
Scoreboard.Header.PlayerInspect=[[YELLOW]]Statistiche mcMMO: {0}
|
||||
Scoreboard.Header.PowerLevel=[[RED]]Livello di Potere
|
||||
Scoreboard.Header.PlayerStats=Statistiche mcMMO
|
||||
Scoreboard.Header.PlayerCooldowns=Ricariche mcMMO
|
||||
Scoreboard.Header.PlayerRank=Graduatorie McMMO
|
||||
Scoreboard.Header.PlayerInspect=Statistiche mcMMO: {0}
|
||||
Scoreboard.Header.PowerLevel=Livello di Potere
|
||||
Scoreboard.Misc.PowerLevel=[[GOLD]]Livello di Potere
|
||||
Scoreboard.Misc.Level=[[DARK_AQUA]]Livello
|
||||
Scoreboard.Misc.CurrentXP=[[GREEN]]XP attuali
|
||||
Scoreboard.Misc.RemainingXP=[[YELLOW]]XP restanti
|
||||
Scoreboard.Misc.RemainingXP=XP restanti
|
||||
Scoreboard.Misc.Cooldown=[[LIGHT_PURPLE]]Ricarica
|
||||
Scoreboard.Misc.Overall=[[GOLD]]Complessivo
|
||||
Scoreboard.Misc.Ability=Capacit\u00E0
|
||||
|
||||
#DATABASE RECOVERY
|
||||
Profile.Loading.Success=[[GREEN]]Il tuo profilo mcMMO \u00E8 stato caricato.
|
||||
Profile.Loading.Failure=[[RED]]mcMMO non pu\u00F2 ancora caricare i tuoi dati. Si consiglia di [[AQUA]]contattare il proprietario del server.\n[[YELLOW]]Puoi ancora giocare sul server, ma non avrai [[BOLD]]livelli mcMMO[[YELLOW]] e gli XP che otterrai [[BOLD]]non verranno salvati[[YELLOW]].
|
||||
Profile.Loading.Failure=mcMMO non pu\u00F2 ancora caricare i tuoi dati. Si consiglia di [[AQUA]]contattare il proprietario del server.\n[[YELLOW]]Puoi ancora giocare sul server, ma non avrai [[BOLD]]livelli mcMMO[[YELLOW]] e gli XP che otterrai [[BOLD]]non verranno salvati[[YELLOW]].
|
||||
Profile.Loading.AdminFailureNotice=[[DARK_RED]][A][[RED]] mcMMO non \u00E8 stato in grado di caricare i dati del giocatore [[YELLOW]]{0}[[RED]]. [[LIGHT_PURPLE]]Si prega di controllare la configurazione del database.
|
||||
|
@ -1,29 +1,29 @@
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**\u907f\u3051\u3089\u308c\u307e\u3059**
|
||||
Acrobatics.Listener=\u30a2\u30af\u30ed\u30d0\u30c6\u30a3\u30c3\u30af:
|
||||
Acrobatics.SkillName=\u30a2\u30af\u30ed\u30d0\u30c3\u30c8
|
||||
Acrobatics.Skillup=[[YELLOW]]\u30de\u30a4\u30cb\u30f3\u30b0\u304c{0}\u4e0a\u6607\u3057\u305f\u3002\u5408\u8a08\uff08{1}\uff09
|
||||
Acrobatics.Skillup=\u30de\u30a4\u30cb\u30f3\u30b0\u304c{0}\u4e0a\u6607\u3057\u305f\u3002\u5408\u8a08\uff08{1}\uff09
|
||||
Archery.Listener=\u5f13\u77e2:
|
||||
Archery.Skillup=[[YELLOW]]\u5f13\u30b9\u30ad\u30eb(Archery)\u304c{0}\u4e0a\u304c\u3063\u305f\uff01 \u30ec\u30d9\u30eb[{1}]
|
||||
Axes.Combat.SS.Length=[[RED]]\u30b9\u30fc\u30d1\u30fc\u30d6\u30ec\u30a4\u30ab\u30fc\u306e\u767a\u52d5\u6642\u9593: [[YELLOW]]{0}\u79d2
|
||||
Archery.Skillup=\u5f13\u30b9\u30ad\u30eb(Archery)\u304c{0}\u4e0a\u304c\u3063\u305f\uff01 \u30ec\u30d9\u30eb[{1}]
|
||||
Axes.Combat.SS.Length=\u30b9\u30fc\u30d1\u30fc\u30d6\u30ec\u30a4\u30ab\u30fc\u306e\u767a\u52d5\u6642\u9593: [[YELLOW]]{0}\u79d2
|
||||
Axes.SubSkill.CriticalStrikes.Description=\u30c0\u30d6\u30eb\u30c0\u30e1\u30fc\u30b8
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u306f [[RED]]\u30b9\u30ab\u30eb\u30b9\u30d7\u30ea\u30c3\u30bf\u30fc[[DARK_GREEN]]\u3092\u4f7f\u7528\u3057\u305f\uff01
|
||||
Axes.Skillup=[[YELLOW]]\u65a7\u30b9\u30ad\u30eb\u306f{0}\u306e\u5897\u52a0\u3068\u306a\u308a\u307e\u3057\u305f\u3002\u5408\u8a08\uff08{1}\uff09
|
||||
Axes.Skillup=\u65a7\u30b9\u30ad\u30eb\u306f{0}\u306e\u5897\u52a0\u3068\u306a\u308a\u307e\u3057\u305f\u3002\u5408\u8a08\uff08{1}\uff09
|
||||
Excavation.Ability.Lower=[[GRAY]]**\u30b7\u30e3\u30d9\u30eb\u3092\u4e0b\u3052\u305f**
|
||||
Excavation.Ability.Ready=[[GREEN]]**\u30b7\u30e3\u30d9\u30eb\u3092\u69cb\u3048\u305f**
|
||||
Excavation.Listener=\u767a\u6398
|
||||
Excavation.SkillName=\u767a\u6398
|
||||
Excavation.Skillup=[[YELLOW]]\u30de\u30a4\u30cb\u30f3\u30b0\u30b9\u30ad\u30eb{0}\u306f\u5897\u3048\u305f\u3002\u5408\u8a08\uff08{1}\uff09
|
||||
Excavation.Skillup=\u30de\u30a4\u30cb\u30f3\u30b0\u30b9\u30ad\u30eb{0}\u306f\u5897\u3048\u305f\u3002\u5408\u8a08\uff08{1}\uff09
|
||||
Fishing.SubSkill.IceFishing.Name=\u30a2\u30a4\u30b9\u30d5\u30a3\u30c3\u30b7\u30f3\u30b0
|
||||
Herbalism.Listener=\u85ac\u8349\u5b66\uff1a
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]\u3042\u306a\u305f\u306e[[YELLOW]]\u30b0\u30ea\u30fc\u30f3\u30c6\u30e9[[GREEN]]\u30a2\u30d3\u30ea\u30c6\u30a3\u304c\u4f7f\u3048\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3057\u305f\uff01
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]]\u304d\u3053\u308a[[GREEN]]\u30b9\u30ad\u30eb\u306f\u3042\u3068[[YELLOW]]{0}\u79d2\u9593[[GREEN]]\u4f7f\u3048\u307e\u305b\u3093\u3002
|
||||
Herbalism.Skills.GTe.Other.Off=\u304d\u3053\u308a[[GREEN]]\u30b9\u30ad\u30eb\u306f\u3042\u3068[[YELLOW]]{0}\u79d2\u9593[[GREEN]]\u4f7f\u3048\u307e\u305b\u3093\u3002
|
||||
Herbalism.Skills.GTe.Other.On=[[\u7dd1]] {0} [[DARK_GREEN]]\u306f[[RED]]\u30b9\u30ab\u30eb\u30b9\u30d7\u30ea\u30c3\u30bf\u30fc[[DARK_GREEN]]\u3092\u4f7f\u7528\u3057\u305f\uff01
|
||||
Mining.Ability.Length=[[RED]]\u30b9\u30fc\u30d1\u30fc\u30d6\u30ec\u30a4\u30ab\u30fc\u306e\u767a\u52d5\u6642\u9593: [[YELLOW]]{0}\u79d2
|
||||
Mining.Ability.Length=\u30b9\u30fc\u30d1\u30fc\u30d6\u30ec\u30a4\u30ab\u30fc\u306e\u767a\u52d5\u6642\u9593: [[YELLOW]]{0}\u79d2
|
||||
Mining.Ability.Ready=[[GREEN]]**\u30c4\u30eb\u30cf\u30b7\u3092\u69cb\u3048\u305f**
|
||||
Mining.Listener=\u30de\u30a4\u30cb\u30f3\u30b0:
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]\u3042\u306a\u305f\u306e[[YELLOW]]\u30b9\u30fc\u30d1\u30fc\u30d6\u30ec\u30a4\u30ab\u30fc[[GREEN]]\u30a2\u30d3\u30ea\u30c6\u30a3\u304c\u518d\u4f7f\u7528\u53ef\u80fd\u306b\u306a\u308a\u307e\u3057\u305f\uff01
|
||||
Mining.Skillup=[[YELLOW]]\u30de\u30a4\u30cb\u30f3\u30b0\u30b9\u30ad\u30eb\u304c{0}\u4e0a\u6607\u3057\u305f\u3002\u5408\u8a08\uff08{1}\uff09
|
||||
Mining.Blast.Radius.Increase=[[RED]]\u7206\u767a\u306e\u534a\u5f84\u304c\u5897\u3048\u305f[[YELLOW]]+{0}
|
||||
Mining.Skillup=\u30de\u30a4\u30cb\u30f3\u30b0\u30b9\u30ad\u30eb\u304c{0}\u4e0a\u6607\u3057\u305f\u3002\u5408\u8a08\uff08{1}\uff09
|
||||
Mining.Blast.Radius.Increase=\u7206\u767a\u306e\u534a\u5f84\u304c\u5897\u3048\u305f[[YELLOW]]+{0}
|
||||
Mining.Blast.Refresh=[[GREEN]]\u3042\u306a\u305f\u306e[[YELLOW]]\u30d6\u30e9\u30b9\u30c8\u30de\u30a4\u30cb\u30f3\u30b0[[GREEN]]\u30a2\u30d3\u30ea\u30c6\u30a3\u306f\u30ea\u30d5\u30ec\u30c3\u30b7\u30e5\u3055\u308c\u307e\u3057\u305f\uff01
|
||||
Repair.SubSkill.Repair.Name=\u4fee\u7e55
|
||||
Repair.SubSkill.SuperRepair.Name=\u30b9\u30fc\u30d1\u30fc\u30ea\u30da\u30a2
|
||||
@ -34,10 +34,10 @@ Repair.SkillName=\u4fee\u7e55
|
||||
Repair.Skills.AdeptDiamond=[[DARK_RED]]\u30c0\u30a4\u30e4\u30e2\u30f3\u30c9\u30c4\u30fc\u30eb\u3092\u4fee\u5fa9\u3059\u308b\u70ba\u306e\u5341\u5206\u306a\u30b9\u30ad\u30eb\u304c\u3042\u308a\u307e\u305b\u3093\uff01
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]\u3042\u306a\u305f\u306f\u91d1\u3092\u4fee\u5fa9\u3059\u308b\u305f\u3081\u306b\u5341\u5206\u306a\u30b9\u30ad\u30eb\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u3002
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]\u77f3\u30c4\u30fc\u30eb\u3092\u4fee\u5fa9\u3059\u308b\u70ba\u306e\u5341\u5206\u306a\u30b9\u30ad\u30eb\u304c\u3042\u308a\u307e\u305b\u3093\uff01
|
||||
Repair.Skillup=[[YELLOW]]\u30ea\u30da\u30a2\u304c{0}\u4e0a\u6607\u3057\u305f\u3002\u5408\u8a08({1})
|
||||
Repair.Skillup=\u30ea\u30da\u30a2\u304c{0}\u4e0a\u6607\u3057\u305f\u3002\u5408\u8a08({1})
|
||||
Repair.Pretty.Name=\u4fee\u7406
|
||||
Salvage.Pretty.Name=\u30b5\u30eb\u30d9\u30fc\u30b8
|
||||
Repair.Arcane.Fail=[[RED]]\u79d8\u5100\u30d1\u30ef\u30fc\u304c\u6c38\u4e45\u30a2\u30a4\u30c6\u30e0\u3092\u6b8b\u3057\u3066\u3044\u308b\u3002
|
||||
Repair.Arcane.Fail=\u79d8\u5100\u30d1\u30ef\u30fc\u304c\u6c38\u4e45\u30a2\u30a4\u30c6\u30e0\u3092\u6b8b\u3057\u3066\u3044\u308b\u3002
|
||||
Swords.Ability.Lower=[[GRAY]]**\u5263\u3092\u4e0b\u3052\u305f**
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]\u51fa\u8840\u306f [[GREEN]]\u6b62\u307e\u308a\u307e\u3057\u305f[[GRAY]]!
|
||||
Swords.Combat.Bleeding=[[GREEN]]**\u6575\u304c\u51fa\u8840**
|
||||
@ -47,43 +47,43 @@ Swords.SubSkill.SerratedStrikes.Name=[[\u7dd1]] **\u8d77\u52d5\u3059\u308b\u30ae
|
||||
Swords.Listener=Swords(\u5263\u30b9\u30ad\u30eb):
|
||||
Swords.SkillName=SWORDS(\u5263\u30b9\u30ad\u30eb)
|
||||
Swords.Skills.SS.On=[[GREEN]]**\u8d77\u52d5\u3059\u308b\u30ae\u30b6\u30ae\u30b6\u306e\u30b9\u30c8\u30e9\u30a4\u30ad**
|
||||
Swords.Skills.SS.Other.Off=[[RED]]\u304d\u3053\u308a[[GREEN]]\u30b9\u30ad\u30eb\u306f\u3042\u3068[[YELLOW]]{0}\u79d2\u9593[[GREEN]]\u4f7f\u3048\u307e\u305b\u3093\u3002
|
||||
Swords.Skills.SS.Other.Off=\u304d\u3053\u308a[[GREEN]]\u30b9\u30ad\u30eb\u306f\u3042\u3068[[YELLOW]]{0}\u79d2\u9593[[GREEN]]\u4f7f\u3048\u307e\u305b\u3093\u3002
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u306f [[RED]]\u30b9\u30ab\u30eb\u30b9\u30d7\u30ea\u30c3\u30bf\u30fc[[DARK_GREEN]]\u3092\u4f7f\u7528\u3057\u305f\uff01
|
||||
Swords.Skillup=[[YELLOW]]\u7740\u5730\u30b9\u30ad\u30eb(ACROBATICS)\u304c{0}\u4e0a\u6607\u3057\u305f\u3000\u5408\u8a08 ({1})
|
||||
Swords.Skillup=\u7740\u5730\u30b9\u30ad\u30eb(ACROBATICS)\u304c{0}\u4e0a\u6607\u3057\u305f\u3000\u5408\u8a08 ({1})
|
||||
Taming.Ability.Bonus.2=\u539a\u3044\u6bdb\u76ae
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]\u3042\u306a\u305f\u306e\u72fc\u306f\u3042\u306a\u305f\u306b\u3064\u3044\u3066\u3044\u304d\u307e\u3059
|
||||
Taming.Skillup=[[YELLOW]\u30de\u30a4\u30cb\u30f3\u30b0\u30b9\u30ad\u30eb{0}\u306f\u5897\u3048\u305f\u3002\u5408\u8a08\uff08{1}\uff09
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]\u30b9\u30fc\u30d1\u30fc\u30d6\u30ec\u30a4\u30ab\u30fc\u306e\u767a\u52d5\u6642\u9593: [[YELLOW]]{0}\u79d2
|
||||
Unarmed.Ability.Berserk.Length=\u30b9\u30fc\u30d1\u30fc\u30d6\u30ec\u30a4\u30ab\u30fc\u306e\u767a\u52d5\u6642\u9593: [[YELLOW]]{0}\u79d2
|
||||
Unarmed.Listener=\u7d20\u624b:
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**\u30d0\u30fc\u30b5\u30fc\u30af\u304c\u30aa\u30d5\u306b\u306a\u308a\u307e\u3057\u305f**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]]\u304d\u3053\u308a[[GREEN]]\u30b9\u30ad\u30eb\u306f\u3042\u3068[[YELLOW]]{0}\u79d2\u9593[[GREEN]]\u4f7f\u3048\u307e\u305b\u3093\u3002
|
||||
Unarmed.Skills.Berserk.Off=**\u30d0\u30fc\u30b5\u30fc\u30af\u304c\u30aa\u30d5\u306b\u306a\u308a\u307e\u3057\u305f**
|
||||
Unarmed.Skills.Berserk.Other.Off=\u304d\u3053\u308a[[GREEN]]\u30b9\u30ad\u30eb\u306f\u3042\u3068[[YELLOW]]{0}\u79d2\u9593[[GREEN]]\u4f7f\u3048\u307e\u305b\u3093\u3002
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u306f [[RED]]\u30b9\u30ab\u30eb\u30b9\u30d7\u30ea\u30c3\u30bf\u30fc[[DARK_GREEN]]\u3092\u4f7f\u7528\u3057\u305f\uff01
|
||||
Woodcutting.Ability.0=\u30ea\u30fc\u30d5\u30d6\u30ed\u30ef\u30fc
|
||||
Woodcutting.Ability.1=\u8449\u3063\u3071\u3092\u5439\u304d\u98db\u3070\u3059
|
||||
Woodcutting.Listener=\u6728\u3053\u308a:
|
||||
Woodcutting.SkillName=\u304d\u3053\u308a
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]\u3042\u306a\u305f\u306e[[YELLOW]]\u30c4\u30ea\u30fc\u30d5\u30a3\u30e9\u30fc[[GREEN]]\u30a2\u30d3\u30ea\u30c6\u30a3\u304c\u4f7f\u3048\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3057\u305f\uff01
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]]\u304d\u3053\u308a[[GREEN]]\u30b9\u30ad\u30eb\u306f\u3042\u3068[[YELLOW]]{0}\u79d2\u9593[[GREEN]]\u4f7f\u3048\u307e\u305b\u3093\u3002
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]\u3042\u306a\u305f\u306e\u65a7\u306f\u5341\u6570\u500b\u306e\u7834\u7247\u306b\u306a\u3063\u305f\uff01
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=\u304d\u3053\u308a[[GREEN]]\u30b9\u30ad\u30eb\u306f\u3042\u3068[[YELLOW]]{0}\u79d2\u9593[[GREEN]]\u4f7f\u3048\u307e\u305b\u3093\u3002
|
||||
Woodcutting.Skills.TreeFeller.Splinter=\u3042\u306a\u305f\u306e\u65a7\u306f\u5341\u6570\u500b\u306e\u7834\u7247\u306b\u306a\u3063\u305f\uff01
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]{0}: [[GREEN]]{1}
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]\u3042\u3044\u307e\u3044\u306a\u611f\u3058\u304c\u3057\u307e\u3057\u305f\u3002\u30d5\u30a7\u30eb\u30c8\u30fb\u30c7\u30a3\u30b8\u30fc\u3002
|
||||
Commands.AdminChat.Off=\u7ba1\u7406\u8005\u5c02\u7528\u30c1\u30e3\u30c3\u30c8\u306f[[RED]]off[[WHITE]]\u3067\u3059\u3002
|
||||
Commands.AdminToggle=[[RED]]- \u7ba1\u7406\u8005\u30c1\u30e3\u30c3\u30c8\u306b\u5207\u308a\u66ff\u3048
|
||||
Commands.Disabled=[[RED]]\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306f\u7121\u52b9\u5316\u3055\u308c\u3066\u3044\u307e\u3059\u3002
|
||||
Commands.DoesNotExist=[[RED]]\u305d\u306e\u30d7\u30ec\u30fc\u30e4\u30fc\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002
|
||||
Commands.AdminToggle=- \u7ba1\u7406\u8005\u30c1\u30e3\u30c3\u30c8\u306b\u5207\u308a\u66ff\u3048
|
||||
Commands.Disabled=\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306f\u7121\u52b9\u5316\u3055\u308c\u3066\u3044\u307e\u3059\u3002
|
||||
Commands.DoesNotExist=\u305d\u306e\u30d7\u30ec\u30fc\u30e4\u30fc\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]\u62db\u5f85\u304c\u627f\u8a8d\u3055\u308c\u307e\u3057\u305f\u3002\u30d1\u30fc\u30c6\u30a3\u30fc {0} \u306b\u53c2\u52a0\u3057\u307e\u3057\u305f\u3002
|
||||
Commands.mcgod=[[RED]]- GodMode\u306e\u5207\u308a\u66ff\u3048
|
||||
Commands.mcgod=- GodMode\u306e\u5207\u308a\u66ff\u3048
|
||||
Commands.mmoedit=[player] <skill> <newvalue> [[RED]] - \u30bf\u30fc\u30b2\u30c3\u30c8\u3092\u5909\u66f4\u3057\u307e\u3059
|
||||
Commands.Party.Kick=[[RED]]\u3042\u306a\u305f\u306f\u3001\u30d1\u30fc\u30c6\u30a3\u30fc{0}\u304b\u3089\u8ffd\u3044\u51fa\u3055\u308c\u307e\u3057\u305f
|
||||
Commands.Party.Leave=[[RED]]\u30d1\u30fc\u30c6\u30a3\u30fc\u304b\u3089\u8131\u9000\u3057\u307e\u3057\u305f\u3002
|
||||
Commands.Party.Kick=\u3042\u306a\u305f\u306f\u3001\u30d1\u30fc\u30c6\u30a3\u30fc{0}\u304b\u3089\u8ffd\u3044\u51fa\u3055\u308c\u307e\u3057\u305f
|
||||
Commands.Party.Leave=\u30d1\u30fc\u30c6\u30a3\u30fc\u304b\u3089\u8131\u9000\u3057\u307e\u3057\u305f\u3002
|
||||
Commands.PowerLevel.Leaderboard=[[DARK_RED]]\u30d1\u30ef\u30fc\u30ec\u30d9\u30eb:[[GREEN]]{0}
|
||||
Commands.PowerLevel=[[DARK_RED]]\u30d1\u30ef\u30fc\u30ec\u30d9\u30eb:[[GREEN]]{0}
|
||||
Commands.Usage.PartyName=\u540d\u524d
|
||||
Commands.Usage.Password=\u30d1\u30b9\u30ef\u30fc\u30c9
|
||||
Party.Player.Invalid=[[RED]]\u6709\u52b9\u306a\u30d7\u30ec\u30fc\u30e4\u30fc\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002
|
||||
Party.Teleport.Dead=[[RED]]\u6b7b\u3093\u3060\u30d7\u30ec\u30a4\u30e4\u30fc\u306e\u5834\u6240\u306b\u30c6\u30ec\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002
|
||||
Party.Player.Invalid=\u6709\u52b9\u306a\u30d7\u30ec\u30fc\u30e4\u30fc\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002
|
||||
Party.Teleport.Dead=\u6b7b\u3093\u3060\u30d7\u30ec\u30a4\u30e4\u30fc\u306e\u5834\u6240\u306b\u30c6\u30ec\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002
|
||||
Party.Teleport.Target=[[GREEN]]{0} \u306f\u3042\u306a\u305f\u306e\u5834\u6240\u306b\u30c6\u30ec\u30dd\u30fc\u30c8\u3057\u307e\u3057\u305f\u3002
|
||||
Party.Unlocked=[[GRAY]]\u30d1\u30fc\u30c6\u30a3\u30fc\u306e\u30ed\u30c3\u30af\u304c\u89e3\u9664\u3055\u308c\u305f
|
||||
Party.ItemShare.Category.Mining=\u9271\u696d
|
||||
@ -93,7 +93,7 @@ Commands.XPGain.Herbalism=Harvesting Herbs
|
||||
Commands.XPGain.Mining=\u9271\u696d\u77f3\u3068\u9271\u77f3
|
||||
Commands.XPGain.Taming=\u52d5\u7269\u3092\u98fc\u3044\u6163\u3089\u3059\u3001\u307e\u305f\u306f\u6226\u95d8\u3092\u3059\u308b/\u3042\u306a\u305f\u306e\u72fc
|
||||
Commands.XPGain=[[DARK_GRAY]]\u7d4c\u9a13\u5024\u3092\u624b\u306b\u5165\u308c\u305f: [[WHITE]]{0}
|
||||
Commands.xprate.proper.0=[[RED]]XP\u30ec\u30fc\u30c8\u3092\u5909\u66f4\u3059\u308b\u9069\u5207\u306a\u65b9\u6cd5\u306f /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.0=XP\u30ec\u30fc\u30c8\u3092\u5909\u66f4\u3059\u308b\u9069\u5207\u306a\u65b9\u6cd5\u306f /xprate <integer> <true/false>
|
||||
XPRate.Event=[[GOLD]]mcMMO\u306f\u4ecaEX\u30ec\u30fc\u30c8\u30a4\u30d9\u30f3\u30c8\u3092\u958b\u50ac\u4e2d\uff01EX\u306e\u30ec\u30fc\u30c8\u306f {0}\u500d\u3067\u3059\uff01
|
||||
Effects.Effects=\u52b9\u679c
|
||||
Effects.Template=[[DARK_AQUA]]{0}: [[GREEN]]{1}
|
||||
|
@ -18,7 +18,7 @@
|
||||
#ACROBATICS
|
||||
Acrobatics.Ability.Proc=[[GREEN]]**\uC6B0\uC544\uD55C \uAD6C\uB974\uAE30**
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**\uD68C\uD53C**
|
||||
Acrobatics.DodgeChance=[[RED]]\uD68C\uD53C \uD655\uB960: [[YELLOW]]{0}
|
||||
Acrobatics.DodgeChance=\uD68C\uD53C \uD655\uB960: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Name=\uAD6C\uB974\uAE30
|
||||
Acrobatics.SubSkill.Roll.Description=\uCD94\uB77D \uB370\uBBF8\uC9C0 \uAC10\uC18C \uB610\uB294 \uBB34\uD6A8
|
||||
Acrobatics.SubSkill.GracefulRoll.Name=\uC6B0\uC544\uD55C \uAD6C\uB974\uAE30
|
||||
@ -26,11 +26,11 @@ Acrobatics.SubSkill.GracefulRoll.Description=\uAD6C\uB974\uAE30 2\uBC30 \uD6A8\u
|
||||
Acrobatics.SubSkill.Dodge.Name=\uD68C\uD53C
|
||||
Acrobatics.SubSkill.Dodge.Description=\uB099\uD558 \uB370\uBBF8\uC9C0 \uC808\uBC18 \uAC10\uC18C
|
||||
Acrobatics.Listener=\uACE1\uC608(ACROBATICS):
|
||||
Acrobatics.SubSkill.Roll.Chance=[[RED]]\uAD6C\uB974\uAE30 \uD655\uB960: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=[[RED]]\uC6B0\uC544\uD55C \uAD6C\uB974\uAE30 \uD655\uB960: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Chance=\uAD6C\uB974\uAE30 \uD655\uB960: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=\uC6B0\uC544\uD55C \uAD6C\uB974\uAE30 \uD655\uB960: [[YELLOW]]{0}
|
||||
Acrobatics.Roll.Text=**\uAD6C\uB974\uAE30**
|
||||
Acrobatics.SkillName=\uACE1\uC608
|
||||
Acrobatics.Skillup=[[YELLOW]]\uB099\uBC95 \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Acrobatics.Skillup=\uB099\uBC95 \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
|
||||
#ALCHEMY
|
||||
Alchemy.SubSkill.Catalysis.Name=\uCD09\uB9E4
|
||||
@ -39,16 +39,16 @@ Alchemy.SubSkill.Concoctions.Name=\uD63C\uD569
|
||||
Alchemy.SubSkill.Concoctions.Description=\uB354 \uB9CE\uC740 \uC131\uBD84\uC758 \uD3EC\uC158 \uC591\uC870
|
||||
Alchemy.Listener=\uC5F0\uAE08\uC220(ALCHEMY):
|
||||
Alchemy.Ability.Locked.0={0}\uB808\uBCA8 \uB54C \uAE30\uC220\uD574\uC81C (\uCD09\uB9E4)
|
||||
Alchemy.Catalysis.Speed=[[RED]]\uC591\uC870 \uC18D\uB3C4: [[YELLOW]]{0}
|
||||
Alchemy.Concoctions.Rank=[[RED]]\uD63C\uD569 \uB7AD\uD06C: [[YELLOW]]{0}/{1}
|
||||
Alchemy.Concoctions.Ingredients=[[RED]]\uC131\uBD84 [[[YELLOW]]{0}[[RED]]]: [[YELLOW]]{1}
|
||||
Alchemy.Catalysis.Speed=\uC591\uC870 \uC18D\uB3C4: [[YELLOW]]{0}
|
||||
Alchemy.Concoctions.Rank=\uD63C\uD569 \uB7AD\uD06C: [[YELLOW]]{0}/{1}
|
||||
Alchemy.Concoctions.Ingredients=\uC131\uBD84 [[[YELLOW]]{0}[[RED]]]: [[YELLOW]]{1}
|
||||
Alchemy.SkillName=\uC5F0\uAE08\uC220
|
||||
Alchemy.Skillup=[[YELLOW]]\uC5F0\uAE08\uC220 \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Alchemy.Skillup=\uC5F0\uAE08\uC220 \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
|
||||
#ARCHERY
|
||||
Archery.Combat.DazeChance=[[RED]]\uD604\uD639 \uD655\uB960: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=[[RED]]\uD654\uC0B4 \uD68C\uC218 \uD655\uB960: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=[[RED]]\uC3D8\uAE30 \uC19C\uC528 \uCD94\uAC00 \uD53C\uD574 \uD655\uB960: [[YELLOW]]{0}
|
||||
Archery.Combat.DazeChance=\uD604\uD639 \uD655\uB960: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=\uD654\uC0B4 \uD68C\uC218 \uD655\uB960: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=\uC3D8\uAE30 \uC19C\uC528 \uCD94\uAC00 \uD53C\uD574 \uD655\uB960: [[YELLOW]]{0}
|
||||
Archery.SubSkill.SkillShot.Name=\uC3D8\uAE30 \uC19C\uC528
|
||||
Archery.SubSkill.SkillShot.Description=\uD65C \uD53C\uD574 \uC601\uAD6C \uC99D\uAC00
|
||||
Archery.SubSkill.Daze.Name=\uD604\uD639 (\uD50C\uB808\uC774\uC5B4)
|
||||
@ -57,7 +57,7 @@ Archery.SubSkill.ArrowRetrieval.Name=\uD654\uC0B4 \uD68C\uC218
|
||||
Archery.SubSkill.ArrowRetrieval.Description=\uC2DC\uCCB4\uC5D0\uC11C \uD654\uC0B4 \uD68C\uC218 \uD655\uB960 \uC99D\uAC00
|
||||
Archery.Listener=\uAD81\uC220(ARCHERY):
|
||||
Archery.SkillName=\uAD81\uC220
|
||||
Archery.Skillup=[[YELLOW]]\uAD81\uC220 \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Archery.Skillup=\uAD81\uC220 \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
|
||||
#AXES
|
||||
Axes.Ability.Bonus.0=\uB3C4\uB07C \uB9C8\uC2A4\uD130\uB9AC
|
||||
@ -69,12 +69,12 @@ Axes.Ability.Bonus.5=\uBE44\uBB34\uC7A5 \uCD94\uAC00 \uD53C\uD574: {0}
|
||||
Axes.Ability.Lower=[[GRAY]]**\uB3C4\uB07C \uC900\uBE44 \uD574\uC81C**
|
||||
Axes.Ability.Ready=[[GREEN]]**\uB3C4\uB07C \uC900\uBE44 \uC644\uB8CC**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]\uD06C\uB9AC\uD2F0\uCEEC \uD788\uD2B8\uC5D0 \uB9DE\uC558\uC2B5\uB2C8\uB2E4!
|
||||
Axes.Combat.CritChance=[[RED]]\uD06C\uB9AC\uD2F0\uCEEC \uD788\uD2B8 \uD655\uB960: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=[[RED]]\uD06C\uB9AC\uD2F0\uCEEC \uD788\uD2B8!
|
||||
Axes.Combat.CritChance=\uD06C\uB9AC\uD2F0\uCEEC \uD788\uD2B8 \uD655\uB960: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=\uD06C\uB9AC\uD2F0\uCEEC \uD788\uD2B8!
|
||||
Axes.Combat.GI.Proc=[[GREEN]]**\uCD5C\uACE0\uC758 \uAC15\uD0C0\uB97C \uB54C\uB838\uC2B5\uB2C8\uB2E4**
|
||||
Axes.Combat.GI.Struck=[[RED]]**\uC5C4\uCCAD\uB09C \uCDA9\uACA9\uC744 \uBC1B\uC558\uC2B5\uB2C8\uB2E4**
|
||||
Axes.Combat.GI.Struck=**\uC5C4\uCCAD\uB09C \uCDA9\uACA9\uC744 \uBC1B\uC558\uC2B5\uB2C8\uB2E4**
|
||||
Axes.Combat.SS.Struck=[[DARK_RED]]\uBF08 \uCABC\uAC1C\uAE30\uC5D0 \uB9DE\uC558\uC2B5\uB2C8\uB2E4!
|
||||
Axes.Combat.SS.Length=[[RED]]\uBF08 \uCABC\uAC1C\uAE30 \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0}\uCD08
|
||||
Axes.Combat.SS.Length=\uBF08 \uCABC\uAC1C\uAE30 \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0}\uCD08
|
||||
Axes.SubSkill.SkullSplitter.Name=\uBF08 \uCABC\uAC1C\uAE30 (\uB2A5\uB825)
|
||||
Axes.SubSkill.SkullSplitter.Description=\uAD11\uC5ED \uCD94\uAC00 \uD53C\uD574
|
||||
Axes.SubSkill.CriticalStrikes.Name=\uD06C\uB9AC\uD2F0\uCEEC \uC2A4\uD2B8\uB77C\uC774\uD06C
|
||||
@ -87,12 +87,12 @@ Axes.SubSkill.GreaterImpact.Name=\uC5C4\uCCAD\uB09C \uCDA9\uACA9
|
||||
Axes.SubSkill.GreaterImpact.Description=\uBE44\uBB34\uC7A5 \uCD94\uAC00 \uD53C\uD574
|
||||
Axes.Listener=\uBD80\uC220(AXES):
|
||||
Axes.SkillName=\uBD80\uC220
|
||||
Axes.Skills.SS.Off=[[RED]]**\uBF08 \uCABC\uAC1C\uAE30 \uBC1C\uB3D9 \uD574\uC81C**
|
||||
Axes.Skills.SS.Off=**\uBF08 \uCABC\uAC1C\uAE30 \uBC1C\uB3D9 \uD574\uC81C**
|
||||
Axes.Skills.SS.On=[[GREEN]]**\uBF08 \uCABC\uAC1C\uAE30 \uBC1C\uB3D9**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]\uB2F9\uC2E0\uC758 [[YELLOW]]\uBF08 \uCABC\uAC1C\uAE30 [[GREEN]]\uAE30\uC220\uC740 \uC774\uC81C \uC0AC\uC6A9 \uAC00\uB2A5\uD569\uB2C8\uB2E4!
|
||||
Axes.Skills.SS.Other.Off=[[YELLOW]]{0}\uB2D8\uC774 [[RED]]\uBF08 \uCABC\uAC1C\uAE30\uB97C[[GREEN]] \uC900\uBE44 \uD574\uC81C\uD588\uC2B5\uB2C8\uB2E4
|
||||
Axes.Skills.SS.Other.Off={0}\uB2D8\uC774 [[RED]]\uBF08 \uCABC\uAC1C\uAE30\uB97C[[GREEN]] \uC900\uBE44 \uD574\uC81C\uD588\uC2B5\uB2C8\uB2E4
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]]\uB2D8\uC774 [[RED]]\uBF08 \uCABC\uAC1C\uAE30\uB97C \uC0AC\uC6A9\uD588\uC2B5\uB2C8\uB2E4!
|
||||
Axes.Skillup=[[YELLOW]]\uBD80\uC220 \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D ({1}) \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Axes.Skillup=\uBD80\uC220 \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D ({1}) \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
|
||||
#EXCAVATION
|
||||
Excavation.Ability.Lower=[[GRAY]]**\uC0BD \uC900\uBE44 \uD574\uC81C**
|
||||
@ -101,28 +101,28 @@ Excavation.SubSkill.GigaDrillBreaker.Name=\uAE30\uAC00 \uB4DC\uB9B4 \uBC84\uC11C
|
||||
Excavation.SubSkill.GigaDrillBreaker.Description=\uB4DC\uB86D \uC18D\uB3C4 3\uBC30, \uACBD\uD5D8\uCE58 3\uBC30, \uC18D\uB3C4 \uC99D\uAC00
|
||||
Excavation.SubSkill.TreasureHunter.Name=\uBCF4\uBB3C \uC0AC\uB0E5\uAFBC
|
||||
Excavation.SubSkill.TreasureHunter.Description=\uBCF4\uBB3C \uBC1C\uAD74 \uB2A5\uB825
|
||||
Excavation.Effect.Length=[[RED]]\uAE30\uAC00 \uB4DC\uB9B4 \uBC84\uC11C\uCEE4 \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0}\uCD08
|
||||
Excavation.Effect.Length=\uAE30\uAC00 \uB4DC\uB9B4 \uBC84\uC11C\uCEE4 \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0}\uCD08
|
||||
Excavation.Listener=\uBC1C\uAD74(EXCAVATION):
|
||||
Excavation.SkillName=\uBC1C\uAD74
|
||||
Excavation.Skills.GigaDrillBreaker.Off=[[RED]]**\uAE30\uAC00 \uB4DC\uB9B4 \uBC84\uC11C\uCEE4 \uBC1C\uB3D9 \uD574\uC81C**
|
||||
Excavation.Skills.GigaDrillBreaker.Off=**\uAE30\uAC00 \uB4DC\uB9B4 \uBC84\uC11C\uCEE4 \uBC1C\uB3D9 \uD574\uC81C**
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**\uAE30\uAC00 \uB4DC\uB9B4 \uBC84\uC11C\uCEE4 \uBC1C\uB3D9**
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]\uB2F9\uC2E0\uC758 [[YELLOW]]\uAE30\uAC00 \uB4DC\uB9B4 \uBC84\uC11C\uCEE4 [[GREEN]]\uAE30\uC220\uC740 \uC774\uC81C \uC0AC\uC6A9 \uAC00\uB2A5\uD569\uB2C8\uB2E4!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off={0}[[DARK_GREEN]]\uB2D8\uC740 [[RED]]\uAE30\uAC00 \uB4DC\uB9B4 \uBC84\uC11C\uCEE4\uB97C \uC0AC\uC6A9\uD588\uC2B5\uB2C8\uB2E4!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]]\uB2D8\uC740 [[RED]]\uAE30\uAC00 \uB4DC\uB9B4 \uBC84\uC11C\uCEE4\uB97C \uC0AC\uC6A9 \uD588\uC2B5\uB2C8\uB2E4!
|
||||
Excavation.Skillup=[[YELLOW]]\uBC1C\uAD74 \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Excavation.Skillup=\uBC1C\uAD74 \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
|
||||
#FISHING
|
||||
Fishing.Ability.Chance=[[RED]]\uC785\uC9C8 \uD655\uB960: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=[[RED]]\uB9E4\uC9C1 \uD5CC\uD130: [[GRAY]] **\uD2B8\uB808\uC838 \uD5CC\uD130 \uB7AD\uD06C \uD5A5\uC0C1**
|
||||
Fishing.Ability.Chance=\uC785\uC9C8 \uD655\uB960: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=\uB9E4\uC9C1 \uD5CC\uD130: [[GRAY]] **\uD2B8\uB808\uC838 \uD5CC\uD130 \uB7AD\uD06C \uD5A5\uC0C1**
|
||||
Fishing.Ability.Locked.0={0}\uB808\uBCA8 \uB54C \uAE30\uC220 \uD574\uC81C (\uD754\uB4E4\uAE30)
|
||||
Fishing.Ability.Locked.1={0}\uB808\uBCA8 \uB54C \uAE30\uC220 \uD574\uC81C (\uC5BC\uC74C \uB09A\uC2DC)
|
||||
Fishing.Ability.Locked.2={0}\uB808\uBCA8 \uB54C \uAE30\uC220 \uD574\uC81C (\uB09A\uC2DC\uAFBC \uC7A5\uC778)
|
||||
Fishing.Ability.Rank=[[RED]]\uD2B8\uB808\uC838 \uD5CC\uD130 \uB7AD\uD06C: [[YELLOW]]{0}/5\uB7AD\uD06C
|
||||
Fishing.Ability.TH.DropRate=[[RED]] \uB4DC\uB86D \uBE44\uC728: [[DARK_RED]]\uD568\uC815: [[YELLOW]]{0} [[GRAY]]\uACF5\uD1B5: [[YELLOW]]{1} [[GREEN]]\uBE44\uACF5\uD1B5: [[YELLOW]]{2}\n[[BLUE]]\uB808\uC5B4: [[YELLOW]]{3} [[LIGHT_PURPLE]]\uC5D0\uD53D: [[YELLOW]]{4} [[GOLD]]\uB808\uC804\uB4DC\uB9AC: [[YELLOW]]{5} [[AQUA]]\uB808\uCF54\uB4DC: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=[[RED]]\uB9E4\uC9C1 \uD5CC\uD130 \uD655\uB960: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=[[RED]]\uD754\uB4E4\uAE30 \uD655\uB960: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=[[RED]]\uC5BC\uC74C \uB09A\uC2DC: \uC5BC\uC74C\uC5D0\uC11C \uB09A\uC2DC
|
||||
Fishing.Ability.FD=[[RED]]\uC5B4\uBD80\uC758 \uB2E4\uC774\uC5B4\uD2B8 \uB7AD\uD06C: [[YELLOW]]{0}\uB7AD\uD06C
|
||||
Fishing.Ability.Rank=\uD2B8\uB808\uC838 \uD5CC\uD130 \uB7AD\uD06C: [[YELLOW]]{0}/5\uB7AD\uD06C
|
||||
Fishing.Ability.TH.DropRate= \uB4DC\uB86D \uBE44\uC728: [[DARK_RED]]\uD568\uC815: [[YELLOW]]{0} [[GRAY]]\uACF5\uD1B5: [[YELLOW]]{1} [[GREEN]]\uBE44\uACF5\uD1B5: [[YELLOW]]{2}\n[[BLUE]]\uB808\uC5B4: [[YELLOW]]{3} [[LIGHT_PURPLE]]\uC5D0\uD53D: [[YELLOW]]{4} [[GOLD]]\uB808\uC804\uB4DC\uB9AC: [[YELLOW]]{5} [[AQUA]]\uB808\uCF54\uB4DC: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=\uB9E4\uC9C1 \uD5CC\uD130 \uD655\uB960: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=\uD754\uB4E4\uAE30 \uD655\uB960: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=\uC5BC\uC74C \uB09A\uC2DC: \uC5BC\uC74C\uC5D0\uC11C \uB09A\uC2DC
|
||||
Fishing.Ability.FD=\uC5B4\uBD80\uC758 \uB2E4\uC774\uC5B4\uD2B8 \uB7AD\uD06C: [[YELLOW]]{0}\uB7AD\uD06C
|
||||
Fishing.SubSkill.TreasureHunter.Name=\uD2B8\uB808\uC838 \uD5CC\uD130 (\uD328\uC2DC\uBE0C)
|
||||
Fishing.SubSkill.TreasureHunter.Description=\uBB3C\uAC74(\uADF8\uC678) \uB09A\uC2DC
|
||||
Fishing.SubSkill.MagicHunter.Name=\uB9E4\uC9C1 \uD5CC\uD130
|
||||
@ -141,22 +141,22 @@ Fishing.Ability.TH.MagicFound=[[GRAY]]\uC774 \uC785\uC9C8\uC5D0\uC11C \uB9C8\uBC
|
||||
Fishing.Ability.TH.Boom=[[GRAY]]\uD3ED\uBC1C \uC2DC\uAC04!!!
|
||||
Fishing.Ability.TH.Poison=[[GRAY]]\uB08C\uC0C8\uAC00 \uC88B\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4...
|
||||
Fishing.SkillName=\uB09A\uC2DC
|
||||
Fishing.Skillup=[[YELLOW]]\uB09A\uC2DC \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Fishing.Skillup=\uB09A\uC2DC \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
|
||||
#HERBALISM
|
||||
Herbalism.Ability.DoubleDropChance=[[RED]]2\uBC30 \uB4DC\uB86D \uD655\uB960: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=[[RED]]\uB18D\uBD80\uC758 \uB2E4\uC774\uC5B4\uD2B8: [[YELLOW]]{0}\uB7AD\uD06C
|
||||
Herbalism.Ability.GTe.Length=[[RED]]\uC7AC\uBC30\uC758 \uB300\uC9C0 \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0}\uCD08
|
||||
Herbalism.Ability.GTe.NeedMore=[[RED]]\uC7AC\uBC30\uC758 \uB300\uC9C0\uC5D0 \uBFCC\uB9B4 \uC528\uAC00 \uC880\uB354 \uD544\uC694\uD569\uB2C8\uB2E4.
|
||||
Herbalism.Ability.GTh.Chance=[[RED]]\uC7AC\uBC30\uC758 \uC7AC\uB2A5 \uD655\uB960: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=[[RED]]**\uC7AC\uBC30\uC758 \uC7AC\uB2A5 \uC2E4\uD328**
|
||||
Herbalism.Ability.GTh.Stage=[[RED]]\uC7AC\uBC30\uC758 \uC7AC\uB2A5 \uB2E8\uACC4: [[YELLOW]] \uC791\uBB3C \uC7AC\uBC30 {0}\uB2E8\uACC4
|
||||
Herbalism.Ability.DoubleDropChance=2\uBC30 \uB4DC\uB86D \uD655\uB960: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=\uB18D\uBD80\uC758 \uB2E4\uC774\uC5B4\uD2B8: [[YELLOW]]{0}\uB7AD\uD06C
|
||||
Herbalism.Ability.GTe.Length=\uC7AC\uBC30\uC758 \uB300\uC9C0 \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0}\uCD08
|
||||
Herbalism.Ability.GTe.NeedMore=\uC7AC\uBC30\uC758 \uB300\uC9C0\uC5D0 \uBFCC\uB9B4 \uC528\uAC00 \uC880\uB354 \uD544\uC694\uD569\uB2C8\uB2E4.
|
||||
Herbalism.Ability.GTh.Chance=\uC7AC\uBC30\uC758 \uC7AC\uB2A5 \uD655\uB960: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=**\uC7AC\uBC30\uC758 \uC7AC\uB2A5 \uC2E4\uD328**
|
||||
Herbalism.Ability.GTh.Stage=\uC7AC\uBC30\uC758 \uC7AC\uB2A5 \uB2E8\uACC4: [[YELLOW]] \uC791\uBB3C \uC7AC\uBC30 {0}\uB2E8\uACC4
|
||||
Herbalism.Ability.GTh=[[GREEN]]**\uC7AC\uBC30\uC758 \uC7AC\uB2A5**
|
||||
Herbalism.Ability.HylianLuck=[[RED]]\uD558\uC77C\uB9AC\uC548\uC758 \uD589\uC6B4 \uD655\uB960: [[YELLOW]]{0}
|
||||
Herbalism.Ability.HylianLuck=\uD558\uC77C\uB9AC\uC548\uC758 \uD589\uC6B4 \uD655\uB960: [[YELLOW]]{0}
|
||||
Herbalism.Ability.Lower=[[GRAY]]**\uD638\uBBF8 \uC900\uBE44 \uD574\uC81C**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**\uD638\uBBF8 \uC900\uBE44 \uC644\uB8CC**
|
||||
Herbalism.Ability.ShroomThumb.Chance=[[RED]]\uBC84\uC12F\uC7AC\uBC30\uC790\uC758 \uC228\uACB0 \uD655\uB960: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=[[RED]]**\uBC84\uC12F\uC7AC\uBC30\uC790\uC758 \uC228\uACB0 \uC2E4\uD328**
|
||||
Herbalism.Ability.ShroomThumb.Chance=\uBC84\uC12F\uC7AC\uBC30\uC790\uC758 \uC228\uACB0 \uD655\uB960: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=**\uBC84\uC12F\uC7AC\uBC30\uC790\uC758 \uC228\uACB0 \uC2E4\uD328**
|
||||
Herbalism.SubSkill.GreenTerra.Name=\uC7AC\uBC30\uC758 \uB300\uC9C0 (\uB2A5\uB825)
|
||||
Herbalism.SubSkill.GreenTerra.Description=\uB300\uC9C0 \uBFCC\uB9AC\uAE30, \uB4DC\uB86D 3\uBC30
|
||||
Herbalism.SubSkill.GreenThumb.Name=\uC7AC\uBC30\uC758 \uC7AC\uB2A5 (\uBC00)
|
||||
@ -174,15 +174,15 @@ Herbalism.SubSkill.ShroomThumb.Description=\uD759 & \uC794\uB514\uC5D0 \uADE0\uC
|
||||
Herbalism.HylianLuck=[[GREEN]]\uD558\uC774\uB784\uC758 \uD589\uC6B4\uC774 \uC624\uB298 \uB108\uC5D0\uAC8C \uB530\uB974\uB294\uAD6C\uB098!
|
||||
Herbalism.Listener=\uC57D\uCD08\uD559(HERBALISM):
|
||||
Herbalism.SkillName=\uC57D\uCD08\uD559
|
||||
Herbalism.Skills.GTe.Off=[[RED]]**\uC7AC\uBC30\uC758 \uB300\uC9C0 \uBE44\uD65C\uC131\uD654\uB428**
|
||||
Herbalism.Skills.GTe.Off=**\uC7AC\uBC30\uC758 \uB300\uC9C0 \uBE44\uD65C\uC131\uD654\uB428**
|
||||
Herbalism.Skills.GTe.On=[[GREEN]]**\uC7AC\uBC30\uC758 \uB300\uC9C0 \uD65C\uC131\uD654\uB428**
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]\uB2F9\uC2E0\uC758 [[YELLOW]]\uC7AC\uBC30\uC758 \uB300\uC9C0 [[GREEN]]\uAE30\uC220\uC740 \uC774\uC81C \uC0AC\uC6A9 \uAC00\uB2A5\uD569\uB2C8\uB2E4!
|
||||
Herbalism.Skills.GTe.Other.Off={0}[[DARK_GREEN]]\uB2D8\uC740 [[RED]]\uC7AC\uBC30\uC758 \uB300\uC9C0\uB97C \uC0AC\uC6A9\uD588\uC2B5\uB2C8\uB2E4!
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]{0}[[DARK_GREEN]]\uB2D8\uC740 [[RED]]\uC7AC\uBC30\uC758 \uB300\uC9C0\uB97C \uC0AC\uC6A9\uD588\uC2B5\uB2C8\uB2E4!
|
||||
Herbalism.Skillup=[[YELLOW]]\uC57D\uCD08\uD559 \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Herbalism.Skillup=\uC57D\uCD08\uD559 \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
|
||||
#MINING
|
||||
Mining.Ability.Length=[[RED]]\uD30C\uAD34\uC790 \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0}s
|
||||
Mining.Ability.Length=\uD30C\uAD34\uC790 \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0}s
|
||||
Mining.Ability.Locked.0={0}\uB808\uBCA8 \uB54C \uAE30\uC220 \uD574\uC81C (\uD3ED\uBC1C \uCC44\uAD74)
|
||||
Mining.Ability.Locked.1={0}\uB808\uBCA8 \uB54C \uAE30\uC220 \uD574\uC81C (\uAC70\uB300 \uD3ED\uBC1C)
|
||||
Mining.Ability.Locked.2={0}\uB808\uBCA8 \uB54C \uAE30\uC220 \uD574\uC81C (\uC804\uBB38 \uD3ED\uD30C)
|
||||
@ -198,22 +198,22 @@ Mining.SubSkill.BiggerBombs.Name=\uAC70\uB300 \uD3ED\uBC1C
|
||||
Mining.SubSkill.BiggerBombs.Description=TNT \uD3ED\uBC1C\uAC70\uB9AC \uC99D\uAC00
|
||||
Mining.SubSkill.DemolitionsExpertise.Name=\uC804\uBB38 \uD3ED\uD30C
|
||||
Mining.SubSkill.DemolitionsExpertise.Description=TNT \uD3ED\uBC1C \uD53C\uD574 \uAC10\uC18C
|
||||
Mining.Effect.Decrease=[[RED]]\uC804\uBB38 \uD3ED\uD30C \uD53C\uD574 \uAC10\uC18C: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=[[RED]]\uB4DC\uB86D 2\uBC30 \uD655\uB960: [[YELLOW]]{0}
|
||||
Mining.Effect.Decrease=\uC804\uBB38 \uD3ED\uD30C \uD53C\uD574 \uAC10\uC18C: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=\uB4DC\uB86D 2\uBC30 \uD655\uB960: [[YELLOW]]{0}
|
||||
Mining.Listener=\uCC44\uAD11(MINING):
|
||||
Mining.SkillName=\uCC44\uAD11
|
||||
Mining.Skills.SuperBreaker.Off=[[RED]]**\uD30C\uAD34\uC790 \uBC1C\uB3D9 \uD574\uC81C**
|
||||
Mining.Skills.SuperBreaker.Off=**\uD30C\uAD34\uC790 \uBC1C\uB3D9 \uD574\uC81C**
|
||||
Mining.Skills.SuperBreaker.On=[[GREEN]]**\uD30C\uAD34\uC790 \uBC1C\uB3D9**
|
||||
Mining.Skills.SuperBreaker.Other.Off={0}[[DARK_GREEN]]\uB2D8\uC740 [[RED]]\uD30C\uAD34\uC790\uB97C \uC0AC\uC6A9\uD588\uC2B5\uB2C8\uB2E4!
|
||||
Mining.Skills.SuperBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]]\uB2D8\uC740 [[RED]]\uD30C\uAD34\uC790\uB97C \uC0AC\uC6A9\uD588\uC2B5\uB2C8\uB2E4!
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]\uB2F9\uC2E0\uC758 [[YELLOW]]\uD30C\uAD34\uC790\uB294 [[GREEN]]\uC774\uC81C \uC0AC\uC6A9 \uAC00\uB2A5\uD569\uB2C8\uB2E4!
|
||||
Mining.Skillup=[[YELLOW]]\uCC44\uAD11 \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Mining.Skillup=\uCC44\uAD11 \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
|
||||
#Blast Mining
|
||||
Mining.Blast.Boom=[[GRAY]]**\uD3ED\uBC1C**
|
||||
Mining.Blast.Effect=+{0} \uAD11\uBB3C \uC774\uC775, -{1} \uD30C\uD3B8 \uC0B0\uCD9C, {2}x \uB4DC\uB86D
|
||||
Mining.Blast.Radius.Increase=[[RED]]\uD3ED\uBC1C \uBC18\uACBD \uC99D\uAC00: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=[[RED]]\uD3ED\uBC1C \uCC44\uAD74: [[YELLOW]]{0}/8\uB7AD\uD06C [[GRAY]]({1})
|
||||
Mining.Blast.Radius.Increase=\uD3ED\uBC1C \uBC18\uACBD \uC99D\uAC00: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=\uD3ED\uBC1C \uCC44\uAD74: [[YELLOW]]{0}/8\uB7AD\uD06C [[GRAY]]({1})
|
||||
Mining.Blast.Other.On=[[GREEN]]{0}[[DARK_GREEN]]\uB2D8\uC740 [[RED]]\uD3ED\uBC1C \uCC44\uAD74\uC744 \uC0AC\uC6A9\uD558\uC168\uC2B5\uB2C8\uB2E4!
|
||||
Mining.Blast.Refresh=[[GREEN]]\uB2F9\uC2E0\uC758 [[YELLOW]]\uD3ED\uBC1C \uCC44\uAD74 [[GREEN]]\uAE30\uC220\uC740 \uC774\uC81C \uC0AC\uC6A9 \uAC00\uB2A5\uD569\uB2C8\uB2E4!
|
||||
|
||||
@ -242,23 +242,23 @@ Repair.Skills.AdeptDiamond=[[DARK_RED]]\uB2F9\uC2E0\uC740 \uC544\uC9C1 \uB2E4\uC
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]\uB2F9\uC2E0\uC740 \uC544\uC9C1 \uAE08\uC744 \uC218\uB9AC\uD560 \uC218 \uC788\uB294 \uAE30\uC220\uC744 \uBC30\uC6B0\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.
|
||||
Repair.Skills.AdeptIron=[[DARK_RED]]\uB2F9\uC2E0\uC740 \uC544\uC9C1 \uCCA0\uC744 \uC218\uB9AC\uD560 \uC218 \uC788\uB294 \uAE30\uC220\uC744 \uBC30\uC6B0\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]\uB2F9\uC2E0\uC740 \uC544\uC9C1 \uB3CC\uC744 \uC218\uB9AC\uD560 \uC218 \uC788\uB294 \uAE30\uC220\uC744 \uBC30\uC6B0\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.
|
||||
Repair.Skills.Adept=[[RED]]\uB2F9\uC2E0\uC740 [[YELLOW]]{1}\uC744/\uB97C \uC218\uB9AC\uD560\uB824\uBA74 [[YELLOW]]{0}[[RED]]\uB808\uBCA8\uC774 \uD544\uC694\uD569\uB2C8\uB2E4
|
||||
Repair.Skills.Adept=\uB2F9\uC2E0\uC740 [[YELLOW]]{1}\uC744/\uB97C \uC218\uB9AC\uD560\uB824\uBA74 [[YELLOW]]{0}[[RED]]\uB808\uBCA8\uC774 \uD544\uC694\uD569\uB2C8\uB2E4
|
||||
Repair.Skills.FeltEasy=[[GRAY]]\uC26C\uC6B4 \uB290\uB08C~
|
||||
Repair.Skills.FullDurability=[[GRAY]]\uB0B4\uAD6C\uB3C4\uAC00 \uAF49 \uCC3C\uC2B5\uB2C8\uB2E4.
|
||||
Repair.Skills.Mastery=[[RED]]\uC218\uB9AC \uB9C8\uC2A4\uD130\uB9AC: [[YELLOW]]\uCD94\uAC00 \uB0B4\uAD6C\uC131 \uBCF5\uAD6C: {0}
|
||||
Repair.Skills.Mastery=\uC218\uB9AC \uB9C8\uC2A4\uD130\uB9AC: [[YELLOW]]\uCD94\uAC00 \uB0B4\uAD6C\uC131 \uBCF5\uAD6C: {0}
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]\uD55C\uBC88\uC5D0 \uB9CE\uC740 \uC544\uC774\uD15C\uC744 \uC218\uB9AC\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Repair.Skills.Super.Chance=[[RED]]\uC288\uD37C \uC218\uB9AC \uD655\uB960: [[YELLOW]]{0}
|
||||
Repair.Skillup=[[YELLOW]]\uC218\uB9AC \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Repair.Skills.Super.Chance=\uC288\uD37C \uC218\uB9AC \uD655\uB960: [[YELLOW]]{0}
|
||||
Repair.Skillup=\uC218\uB9AC \uAE30\uC220\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Repair.Pretty.Name=\uC218\uB9AC
|
||||
|
||||
#Arcane Forging
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]\uC778\uCC48\uD2B8 \uC218\uB9AC \uACA9\uD558 \uD655\uB960: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]\uC778\uCC48\uD2B8 \uC218\uB9AC \uC131\uACF5 \uD655\uB960: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Downgrade=[[RED]]\uC774 \uC544\uC774\uD15C\uC758 \uC778\uCC48\uD2B8\uB294 \uAC10\uC18C\uD588\uC2B5\uB2C8\uB2E4.
|
||||
Repair.Arcane.Fail=[[RED]]\uC774 \uC544\uC774\uD15C\uC758 \uC778\uCC48\uD2B8\uB294 \uC601\uAD6C\uC801\uC73C\uB85C \uC18C\uBA78\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
|
||||
Repair.Arcane.Lost=[[RED]]\uB2F9\uC2E0\uC740 \uBAA8\uB4E0 \uC778\uCC48\uD2B8\uB97C \uC720\uC9C0\uD560 \uAE30\uC220\uC774 \uCDA9\uBD84\uCE58 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Repair.Arcane.Downgrade=\uC774 \uC544\uC774\uD15C\uC758 \uC778\uCC48\uD2B8\uB294 \uAC10\uC18C\uD588\uC2B5\uB2C8\uB2E4.
|
||||
Repair.Arcane.Fail=\uC774 \uC544\uC774\uD15C\uC758 \uC778\uCC48\uD2B8\uB294 \uC601\uAD6C\uC801\uC73C\uB85C \uC18C\uBA78\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
|
||||
Repair.Arcane.Lost=\uB2F9\uC2E0\uC740 \uBAA8\uB4E0 \uC778\uCC48\uD2B8\uB97C \uC720\uC9C0\uD560 \uAE30\uC220\uC774 \uCDA9\uBD84\uCE58 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Repair.Arcane.Perfect=[[GREEN]]\uC774 \uC544\uC774\uD15C\uC758 \uC778\uCC48\uD2B8\uB97C \uC9C0\uC18D\uC2DC\uCF30\uC2B5\uB2C8\uB2E4.
|
||||
Repair.Arcane.Rank=[[RED]]\uC778\uCC48\uD2B8 \uC218\uB9AC: [[YELLOW]]{0}/{1}\uB7AD\uD06C
|
||||
Repair.Arcane.Rank=\uC778\uCC48\uD2B8 \uC218\uB9AC: [[YELLOW]]{0}/{1}\uB7AD\uD06C
|
||||
|
||||
#SALVAGE
|
||||
Salvage.Pretty.Name=\uD68C\uC218
|
||||
@ -269,15 +269,15 @@ Salvage.SubSkill.ArcaneSalvaging.Description=\uC544\uC774\uD15C\uC758 \uC778\uCC
|
||||
Salvage.Ability.Locked.0={0} \uB808\uBCA8 \uB54C \uAE30\uC220\uD574\uC81C (\uC804\uBB38\uC801\uC778 \uD68C\uC218)
|
||||
Salvage.Ability.Bonus.0=\uC804\uBB38\uC801\uC778 \uD68C\uC218
|
||||
Salvage.Ability.Bonus.1=\uBD80\uC154\uC9C4 \uC544\uC774\uD15C\uC758 \uCD5C\uB300 \uCD94\uCD9C\uB7C9 {0}
|
||||
Salvage.Arcane.Rank=[[RED]]\uC2E0\uBE44\uB85C\uC6B4 \uD68C\uC218: [[YELLOW]]Rank {0}/{1}
|
||||
Salvage.Arcane.Rank=\uC2E0\uBE44\uB85C\uC6B4 \uD68C\uC218: [[YELLOW]]Rank {0}/{1}
|
||||
Salvage.Arcane.ExtractFull=[[GRAY]]\uCD5C\uB300-\uC778\uCC48\uD2B8 \uAE30\uD68C \uBD80\uACFC
|
||||
Salvage.Arcane.ExtractPartial=[[GRAY]]\uC77C\uBD80-\uC778\uCC48\uD2B8 \uAE30\uD68C \uBD80\uACFC
|
||||
Salvage.Skills.Success=[[GREEN]]\uC544\uC774\uD15C \uD68C\uC218\uB428!
|
||||
Salvage.Skills.Adept.Damaged=[[DARK_RED]]\uC190\uC0C1\uB41C \uC544\uC774\uD15C\uC744 \uD68C\uC218\uD560 \uB2A5\uB825\uC774 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Salvage.Skills.Adept.Level=[[YELLOW]]{1}\uB97C [[RED]]\uD68C\uC218\uD558\uB824\uBA74 [[YELLOW]]{0}[[RED]] \uB808\uBCA8\uC774 \uB418\uC57C\uD569\uB2C8\uB2E4
|
||||
Salvage.Skills.Adept.Level={1}\uB97C [[RED]]\uD68C\uC218\uD558\uB824\uBA74 [[YELLOW]]{0}[[RED]] \uB808\uBCA8\uC774 \uB418\uC57C\uD569\uB2C8\uB2E4
|
||||
Salvage.Skills.TooDamaged=[[DARK_RED]]\uC774 \uC544\uC774\uD15C\uC740 \uC2EC\uD558\uAC8C \uC190\uC0C1\uB418\uC5B4 \uD68C\uC218\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Salvage.Skills.ArcaneFailed=[[RED]]\uB2F9\uC2E0\uC740 \uC774 \uC544\uC774\uD15C \uC18D\uC758 \uC9C0\uC2DD\uC744 \uCD94\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Salvage.Skills.ArcanePartial=[[YELLOW]]\uB2F9\uC2E0\uC740 \uC774 \uC544\uC774\uD15C \uC18D\uC758 \uC9C0\uC2DD\uC758 \uC77C\uBD80\uB9CC \uCD94\uCD9C\uD560 \uC218 \uC788\uC5C8\uC2B5\uB2C8\uB2E4.
|
||||
Salvage.Skills.ArcaneFailed=\uB2F9\uC2E0\uC740 \uC774 \uC544\uC774\uD15C \uC18D\uC758 \uC9C0\uC2DD\uC744 \uCD94\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Salvage.Skills.ArcanePartial=\uB2F9\uC2E0\uC740 \uC774 \uC544\uC774\uD15C \uC18D\uC758 \uC9C0\uC2DD\uC758 \uC77C\uBD80\uB9CC \uCD94\uCD9C\uD560 \uC218 \uC788\uC5C8\uC2B5\uB2C8\uB2E4.
|
||||
Salvage.Skills.ArcaneSuccess=[[GREEN]]\uB2F9\uC2E0\uC740 \uC774 \uC544\uC774\uD15C\uC758 \uBAA8\uB4E0 \uC9C0\uC2DD\uC744 \uCD94\uCD9C\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4!
|
||||
Salvage.Listener.Anvil=[[DARK_RED]]\uB2F9\uC2E0\uC740 \uD68C\uC218 \uBAA8\uB8E8\uB97C \uB193\uC558\uC2B5\uB2C8\uB2E4, \uB3C4\uAD6C\uB098 \uBC29\uC5B4\uAD6C \uD68C\uC218\uC5D0 \uC4F0\uC785\uB2C8\uB2E4.
|
||||
Salvage.Listener=\uD68C\uC218(SALVAGE):
|
||||
@ -286,13 +286,13 @@ Salvage.SkillName=\uD68C\uC218
|
||||
#SWORDS
|
||||
Swords.Ability.Lower=[[GRAY]]**\uAC80 \uC900\uBE44 \uD574\uC81C**
|
||||
Swords.Ability.Ready=[[GREEN]]**\uAC80 \uC900\uBE44 \uC644\uB8CC**
|
||||
Swords.Combat.Bleed.Chance=[[RED]]\uCD9C\uD608 \uD655\uB960: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=[[RED]]\uCD9C\uD608 \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0} \uD2F1
|
||||
Swords.Combat.Bleed.Chance=\uCD9C\uD608 \uD655\uB960: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=\uCD9C\uD608 \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0} \uD2F1
|
||||
Swords.Combat.Bleed.Note=[[GRAY]]\uC54C\uB9BC: [[YELLOW]]1 \uD2F1\uC740 2\uCD08\uC785\uB2C8\uB2E4
|
||||
Swords.Combat.Bleeding.Started=[[DARK_RED]] \uB2F9\uC2E0\uC740 \uD53C\uB97C \uD758\uB9AC\uACE0 \uC788\uC2B5\uB2C8\uB2E4!
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]\uCD9C\uD608\uC774 [[GREEN]]\uBA48\uCDC4\uC2B5\uB2C8\uB2E4[[GRAY]]!
|
||||
Swords.Combat.Bleeding=[[GREEN]]**\uCD9C\uD608**
|
||||
Swords.Combat.Counter.Chance=[[RED]]\uCE74\uC6B4\uD130 \uC5B4\uD0DD \uD655\uB960: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Chance=\uCE74\uC6B4\uD130 \uC5B4\uD0DD \uD655\uB960: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Hit=[[DARK_RED]]\uCE74\uC6B4\uD130 \uC5B4\uD0DD\uC5D0 \uB9DE\uC558\uC2B5\uB2C8\uB2E4!
|
||||
Swords.Combat.Countered=[[GREEN]]**\uCE74\uC6B4\uD130-\uC5B4\uD0DD**
|
||||
Swords.Combat.SS.Struck=[[DARK_RED]]\uD1B1\uB0A0 \uACF5\uACA9\uC5D0 \uB9DE\uC558\uC2B5\uB2C8\uB2E4!
|
||||
@ -306,13 +306,13 @@ Swords.SubSkill.Bleed.Name=\uCD9C\uD608
|
||||
Swords.SubSkill.Bleed.Description=\uACFC\uB2E4 \uCD9C\uD608
|
||||
Swords.Listener=\uAC80\uC220(SWORDS):
|
||||
Swords.SkillName=\uAC80\uC220
|
||||
Swords.Skills.SS.Off=[[RED]]**\uD1B1\uB0A0 \uACF5\uACA9 \uBC1C\uB3D9 \uD574\uC81C**
|
||||
Swords.Skills.SS.Off=**\uD1B1\uB0A0 \uACF5\uACA9 \uBC1C\uB3D9 \uD574\uC81C**
|
||||
Swords.Skills.SS.On=[[GREEN]]**\uD1B1\uB0A0 \uACF5\uACA9 \uBC1C\uB3D9**
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]\uB2F9\uC2E0\uC758 [[YELLOW]]\uD1B1\uB0A0 \uACF5\uACA9 [[GREEN]]\uC2A4\uD0AC\uC740 \uC774\uC81C \uC0AC\uC6A9 \uAC00\uB2A5\uD569\uB2C8\uB2E4!
|
||||
Swords.Skills.SS.Other.Off={0}[[DARK_GREEN]]\uB2D8\uC740 [[RED]]\uD1B1\uB0A0 \uACF5\uACA9 \uC2A4\uD0AC\uC744 \uC0AC\uC6A9 \uD574\uC81C\uD588\uC2B5\uB2C8\uB2E4!
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]]\uB2D8\uC740 [[RED]]\uD1B1\uB0A0 \uACF5\uACA9 \uC2A4\uD0AC\uC744 \uC0AC\uC6A9\uD588\uC2B5\uB2C8\uB2E4!
|
||||
Swords.Skillup=[[YELLOW]]\uAC80\uC220 \uC2A4\uD0AC\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Swords.SS.Length=[[RED]]\uD1B1\uB0A0 \uACF5\uACA9 \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0}\uCD08
|
||||
Swords.Skillup=\uAC80\uC220 \uC2A4\uD0AC\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Swords.SS.Length=\uD1B1\uB0A0 \uACF5\uACA9 \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0}\uCD08
|
||||
|
||||
#TAMING
|
||||
Taming.Ability.Bonus.0=\uD658\uACBD \uC778\uC2DD
|
||||
@ -333,7 +333,7 @@ Taming.Ability.Locked.2={0}\uB808\uBCA8 \uB54C \uC2A4\uD0AC\uD574\uC81C (\uCDA9\
|
||||
Taming.Ability.Locked.3={0}\uB808\uBCA8 \uB54C \uC2A4\uD0AC\uD574\uC81C (\uB0A0\uCE74\uB85C\uC6B4 \uBC1C\uD1B1)
|
||||
Taming.Ability.Locked.4={0}\uB808\uBCA8 \uB54C \uC2A4\uD0AC\uD574\uC81C (\uBE60\uB978 \uC74C\uC2DD \uC81C\uACF5)
|
||||
Taming.Ability.Locked.5={0}\uB808\uBCA8 \uB54C \uC2A4\uD0AC\uD574\uC81C (\uC2E0\uC131\uD55C \uC0AC\uB0E5\uAC1C)
|
||||
Taming.Combat.Chance.Gore=[[RED]]\uB3CC\uC9C4 \uD655\uB960: [[YELLOW]]{0}
|
||||
Taming.Combat.Chance.Gore=\uB3CC\uC9C4 \uD655\uB960: [[YELLOW]]{0}
|
||||
Taming.SubSkill.BeastLore.Name=\uC9D0\uC2B9\uC758 \uD3EC\uD6A8
|
||||
Taming.SubSkill.BeastLore.Description=\uBF08\uB85C \uB291\uB300/\uC624\uC140\uB86F \uAC80\uC0AC
|
||||
Taming.SubSkill.ShockProof.Name=\uCDA9\uACA9 \uC99D\uBA85
|
||||
@ -358,21 +358,21 @@ Taming.SubSkill.ThickFur.Description=\uD53C\uD574 \uAC10\uC18C, \uB0B4\uD654\uC1
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]\uB291\uB300\uAC00 \uB2F9\uC2E0\uC5D0\uAC8C \uB418\uB3CC\uC544\uAC10...
|
||||
Taming.Listener=\uC870\uB828(TAMING):
|
||||
Taming.SkillName=\uC870\uB828
|
||||
Taming.Skillup=[[YELLOW]]\uC870\uB828 \uC2A4\uD0AC\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Taming.Skillup=\uC870\uB828 \uC2A4\uD0AC\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Taming.Summon.Complete=[[GREEN]]\uC18C\uD658 \uC644\uB8CC
|
||||
Taming.Summon.Fail.Ocelot=[[RED]]\uB2F9\uC2E0 \uADFC\uCC98\uC5D0 \uC774\uBBF8 \uB9CE\uC740 \uC624\uC140\uB86F\uC774 \uC788\uC5B4 \uB354\uB294 \uC18C\uD658\uC2DC\uD0AC \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Taming.Summon.Fail.Wolf=[[RED]]\uB2F9\uC2E0 \uADFC\uCC98\uC5D0 \uC774\uBBF8 \uB9CE\uC740 \uB291\uB300\uAC00 \uC788\uC5B4 \uB354\uB294 \uC18C\uD658\uC2DC\uD0AC \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Taming.Summon.Fail.Horse=[[RED]]\uB2F9\uC2E0 \uADFC\uCC98\uC5D0 \uC774\uBBF8 \uB9CE\uC740 \uB9D0\uC774 \uC788\uC5B4 \uB354\uB294 \uC18C\uD658\uC2DC\uD0AC \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Taming.Summon.Fail.Ocelot=\uB2F9\uC2E0 \uADFC\uCC98\uC5D0 \uC774\uBBF8 \uB9CE\uC740 \uC624\uC140\uB86F\uC774 \uC788\uC5B4 \uB354\uB294 \uC18C\uD658\uC2DC\uD0AC \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Taming.Summon.Fail.Wolf=\uB2F9\uC2E0 \uADFC\uCC98\uC5D0 \uC774\uBBF8 \uB9CE\uC740 \uB291\uB300\uAC00 \uC788\uC5B4 \uB354\uB294 \uC18C\uD658\uC2DC\uD0AC \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Taming.Summon.Fail.Horse=\uB2F9\uC2E0 \uADFC\uCC98\uC5D0 \uC774\uBBF8 \uB9CE\uC740 \uB9D0\uC774 \uC788\uC5B4 \uB354\uB294 \uC18C\uD658\uC2DC\uD0AC \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Taming.Summon.Name.Format={0}\uC758 {1}
|
||||
|
||||
#UNARMED
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]\uBC84\uC11C\uCEE4 \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0}\uCD08
|
||||
Unarmed.Ability.Berserk.Length=\uBC84\uC11C\uCEE4 \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0}\uCD08
|
||||
Unarmed.Ability.Bonus.0=\uC544\uC774\uC5B8 \uC554 \uC2A4\uD0C0\uC77C
|
||||
Unarmed.Ability.Bonus.1=+{0} \uD53C\uD574 \uC5C5\uADF8\uB808\uC774\uB4DC
|
||||
Unarmed.Ability.Chance.ArrowDeflect=[[RED]]\uD654\uC0B4 \uD68C\uD53C \uD655\uB960: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=[[RED]]\uBE44\uBB34\uC7A5 \uD655\uB960: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=[[RED]]\uAC15\uCCA0 \uC8FC\uBA39 \uD655\uB960: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=[[RED]]\uC0C1\uB300\uB294 \uAC15\uCCA0 \uC8FC\uBA39\uC744 \uAC00\uC9C0\uACE0 \uC788\uC2B5\uB2C8\uB2E4!
|
||||
Unarmed.Ability.Chance.ArrowDeflect=\uD654\uC0B4 \uD68C\uD53C \uD655\uB960: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=\uBE44\uBB34\uC7A5 \uD655\uB960: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=\uAC15\uCCA0 \uC8FC\uBA39 \uD655\uB960: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=\uC0C1\uB300\uB294 \uAC15\uCCA0 \uC8FC\uBA39\uC744 \uAC00\uC9C0\uACE0 \uC788\uC2B5\uB2C8\uB2E4!
|
||||
Unarmed.Ability.IronGrip.Defender=[[GREEN]]\uAC15\uCCA0 \uC8FC\uBA39\uC758 \uBE44\uBB34\uC7A5\uC744 \uC77C\uC2DC\uC801\uC73C\uB85C \uBC29\uC5B4\uD588\uC2B5\uB2C8\uB2E4!
|
||||
Unarmed.Ability.Lower=[[GRAY]]**\uC190 \uC900\uBE44 \uD574\uC81C**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**\uC190 \uC900\uBE44 \uC644\uB8CC**
|
||||
@ -388,18 +388,18 @@ Unarmed.SubSkill.IronGrip.Name=\uC544\uC774\uC5B8 \uADF8\uB9BD
|
||||
Unarmed.SubSkill.IronGrip.Description=\uBE44\uBB34\uC7A5 \uC0C1\uD0DC \uBC29\uC9C0
|
||||
Unarmed.Listener=\uBE44\uBB34\uC7A5(UNARMED):
|
||||
Unarmed.SkillName=\uBE44\uBB34\uC7A5
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**\uBC84\uC11C\uCEE4 \uBC1C\uB3D9 \uD574\uC81C**
|
||||
Unarmed.Skills.Berserk.Off=**\uBC84\uC11C\uCEE4 \uBC1C\uB3D9 \uD574\uC81C**
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**\uBC84\uC11C\uCEE4 \uBC1C\uB3D9**
|
||||
Unarmed.Skills.Berserk.Other.Off={0}[[DARK_GREEN]]\uB2D8\uC740 [[RED]]\uBC84\uC11C\uCEE4\uB97C \uC0AC\uC6A9\uD588\uC2B5\uB2C8\uB2E4!
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]]\uB2D8\uC740 [[RED]]\uBC84\uC11C\uCEE4\uB97C \uC0AC\uC6A9\uD569\uB2C8\uB2E4!
|
||||
Unarmed.Skills.Berserk.Refresh=[[GREEN]]\uB2F9\uC2E0\uC758 [[YELLOW]]\uBC84\uC11C\uCEE4 [[GREEN]]\uC2A4\uD0AC\uC740 \uC774\uC81C \uC0AC\uC6A9 \uAC00\uB2A5\uD569\uB2C8\uB2E4!
|
||||
Unarmed.Skillup=[[YELLOW]]\uBE44\uBB34\uC7A5 \uC2A4\uD0AC\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Unarmed.Skillup=\uBE44\uBB34\uC7A5 \uC2A4\uD0AC\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
|
||||
#WOODCUTTING
|
||||
Woodcutting.Ability.0=\uB098\uBB47\uC78E \uB5A8\uC5B4\uD2B8\uB9AC\uAE30
|
||||
Woodcutting.Ability.1=\uB098\uBB47\uC78E \uCCAD\uC18C
|
||||
Woodcutting.Ability.Chance.DDrop=[[RED]]\uB4DC\uB86D 2\uBC30 \uD655\uB960: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=[[RED]]\uB098\uBB34\uAFBC \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0}\uCD08
|
||||
Woodcutting.Ability.Chance.DDrop=\uB4DC\uB86D 2\uBC30 \uD655\uB960: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=\uB098\uBB34\uAFBC \uC9C0\uC18D\uC2DC\uAC04: [[YELLOW]]{0}\uCD08
|
||||
Woodcutting.Ability.Locked.0={0}\uB808\uBCA8 \uB54C \uC2A4\uD0AC\uC774 \uD574\uC81C\uB429\uB2C8\uB2E4 (\uB098\uBB47\uC78E \uBC14\uB78C)
|
||||
Woodcutting.SubSkill.TreeFeller.Name=\uB098\uBB34\uAFBC (\uB2A5\uB825)
|
||||
Woodcutting.SubSkill.TreeFeller.Description=\uB098\uBB34 \uD3ED\uBC1C\uC2DC\uD0A4\uAE30
|
||||
@ -409,20 +409,20 @@ Woodcutting.SubSkill.HarvestLumber.Name=\uB4DC\uB86D 2\uBC30
|
||||
Woodcutting.SubSkill.HarvestLumber.Description=\uD56D\uC0C1 \uB4DC\uB86D 2\uBC30
|
||||
Woodcutting.Listener=\uBC8C\uBAA9(WOODCUTTING):
|
||||
Woodcutting.SkillName=\uBC8C\uBAA9
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]]**\uB098\uBB34\uAFBC \uBC1C\uB3D9 \uD574\uC81C**
|
||||
Woodcutting.Skills.TreeFeller.Off=**\uB098\uBB34\uAFBC \uBC1C\uB3D9 \uD574\uC81C**
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**\uB098\uBB34\uAFBC \uBC1C\uB3D9**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]\uB2F9\uC2E0\uC758 [[YELLOW]]\uB098\uBB34\uAFBC [[GREEN]]\uC2A4\uD0AC\uC740 \uC774\uC81C \uC0AC\uC6A9 \uAC00\uB2A5\uD569\uB2C8\uB2E4!
|
||||
Woodcutting.Skills.TreeFeller.Other.Off={0}[[DARK_GREEN]]\uB2D8\uC740 [[RED]]\uB098\uBB34\uAFBC \uC2A4\uD0AC\uC744 \uC0AC\uC6A9 \uD574\uC81C\uD588\uC2B5\uB2C8\uB2E4!
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]]\uB2D8\uC740 [[RED]]\uB098\uBB34\uAFBC \uC2A4\uD0AC\uC744 \uC0AC\uC6A9\uD588\uC2B5\uB2C8\uB2E4!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]\uB3C4\uB07C \uD30C\uD3B8 \uC870\uAC01 \uC218\uC9D1!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]\uADF8 \uB098\uBB34\uB294 \uB108\uBB34 \uD07D\uB2C8\uB2E4!
|
||||
Woodcutting.Skillup=[[YELLOW]]\uBC8C\uBAA9 \uC2A4\uD0AC\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Woodcutting.Skills.TreeFeller.Splinter=\uB3C4\uB07C \uD30C\uD3B8 \uC870\uAC01 \uC218\uC9D1!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=\uADF8 \uB098\uBB34\uB294 \uB108\uBB34 \uD07D\uB2C8\uB2E4!
|
||||
Woodcutting.Skillup=\uBC8C\uBAA9 \uC2A4\uD0AC\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
|
||||
#ABILITIY
|
||||
##generic
|
||||
Ability.Generic.Refresh=[[GREEN]]**\uB2A5\uB825\uC774 \uC7AC \uACF5\uAE09 \uB418\uC5C8\uC2B5\uB2C8\uB2E4!**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
|
||||
#COMBAT
|
||||
Combat.ArrowDeflect=[[WHITE]]**\uD654\uC0B4 \uD68C\uD53C**
|
||||
@ -430,17 +430,17 @@ Combat.BeastLore=[[GREEN]]**\uC9D0\uC2B9\uC758 \uD3EC\uD6A8**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]\uCCB4\uB825: ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]\uC8FC\uC778: ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**\uB3CC\uC9C4**
|
||||
Combat.StruckByGore=[[RED]]**\uB3CC\uC9C4\uC5D0 \uB9DE\uC558\uC2B5\uB2C8\uB2E4**
|
||||
Combat.StruckByGore=**\uB3CC\uC9C4\uC5D0 \uB9DE\uC558\uC2B5\uB2C8\uB2E4**
|
||||
Combat.TargetDazed=\uBAA9\uD45C\uAC00 [[DARK_RED]]\uD63C\uB780\uC2A4\uB7EC\uC6CC\uD569\uB2C8\uB2E4
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]\uD63C\uB780\uC774 \uC77C\uC5B4\uB0AC\uC2B5\uB2C8\uB2E4. \uC544~ \uC5B4\uC9C0\uB7EC\uC6CC.
|
||||
|
||||
#COMMANDS
|
||||
##generic
|
||||
mcMMO.Description=[[YELLOW]]mcMMO[[DARK_AQUA]] \uD504\uB85C\uC81D\uD2B8\uC5D0 \uB300\uD574\uC11C:,[[GOLD]]mcMMO\uB294 \uD55C [[RED]]\uC624\uD508 \uC18C\uC2A4[[GOLD]] RPG \uBAA8\uB4DC\uB85C 2011\uB144 2\uC6D4\uC5D0 [[BLUE]]nossr50[[GOLD]]\uB2D8\uC774 \uB9CC\uB4E4\uC5C8\uC2B5\uB2C8\uB2E4. \uBAA9\uD45C\uB294 \uC9C8\uC88B\uC740 RPG \uACBD\uD5D8\uC744 \uC81C\uACF5\uD558\uB294 \uAC83 \uC785\uB2C8\uB2E4.,[[DARK_AQUA]]\uD301:,[[GOLD]] - [[RED]]/mcmmo help[[GREEN]] \uBA85\uB839\uC5B4\uB4E4\uC744 \uBD05\uB2C8\uB2E4,[[GOLD]] - [[GREEN]]\uD0C0\uC785 [[RED]]/\uC2A4\uD0AC\uC774\uB984[[GREEN]] \uC790\uC138\uD55C \uC2A4\uD0AC \uC815\uBCF4\uB97C \uBD05\uB2C8\uB2E4,[[DARK_AQUA]]\uAC1C\uBC1C\uC790\uB4E4:,[[GOLD]] - [[GREEN]]nossr50 [[BLUE]](\uC81C\uC791\uC790),[[GOLD]] - [[GREEN]]GJ [[BLUE]](\uD504\uB85C\uC81D\uD2B8 \uC8FC\uC7A5),[[GOLD]] - [[GREEN]]NuclearW [[BLUE]](\uAC1C\uBC1C\uC790),[[GOLD]] - [[GREEN]]bm01 [[BLUE]](\uAC1C\uBC1C\uC790),[[GOLD]] - [[GREEN]]TfT_02 [[BLUE]](\uAC1C\uBC1C\uC790),[[GOLD]] - [[GREEN]]Glitchfinder [[BLUE]](\uAC1C\uBC1C\uC790),[[GOLD]] - [[GREEN]]t00thpick1 [[BLUE]](\uAC1C\uBC1C\uC790),[[DARK_AQUA]]\uC720\uC6A9\uD55C \uB9C1\uD06C:,[[GOLD]] - [[GREEN]]https://github.com/mcMMO-Dev/mcMMO/issues[[GOLD]] \uBC84\uADF8 \uBCF4\uACE0,[[GOLD]] - [[GREEN]]#mcmmo @ irc.esper.net[[GOLD]] IRC \uCC44\uD305,
|
||||
mcMMO.Description=mcMMO[[DARK_AQUA]] \uD504\uB85C\uC81D\uD2B8\uC5D0 \uB300\uD574\uC11C:,[[GOLD]]mcMMO\uB294 \uD55C [[RED]]\uC624\uD508 \uC18C\uC2A4[[GOLD]] RPG \uBAA8\uB4DC\uB85C 2011\uB144 2\uC6D4\uC5D0 [[BLUE]]nossr50[[GOLD]]\uB2D8\uC774 \uB9CC\uB4E4\uC5C8\uC2B5\uB2C8\uB2E4. \uBAA9\uD45C\uB294 \uC9C8\uC88B\uC740 RPG \uACBD\uD5D8\uC744 \uC81C\uACF5\uD558\uB294 \uAC83 \uC785\uB2C8\uB2E4.,[[DARK_AQUA]]\uD301:,[[GOLD]] - [[RED]]/mcmmo help[[GREEN]] \uBA85\uB839\uC5B4\uB4E4\uC744 \uBD05\uB2C8\uB2E4,[[GOLD]] - [[GREEN]]\uD0C0\uC785 [[RED]]/\uC2A4\uD0AC\uC774\uB984[[GREEN]] \uC790\uC138\uD55C \uC2A4\uD0AC \uC815\uBCF4\uB97C \uBD05\uB2C8\uB2E4,[[DARK_AQUA]]\uAC1C\uBC1C\uC790\uB4E4:,[[GOLD]] - [[GREEN]]nossr50 [[BLUE]](\uC81C\uC791\uC790),[[GOLD]] - [[GREEN]]GJ [[BLUE]](\uD504\uB85C\uC81D\uD2B8 \uC8FC\uC7A5),[[GOLD]] - [[GREEN]]NuclearW [[BLUE]](\uAC1C\uBC1C\uC790),[[GOLD]] - [[GREEN]]bm01 [[BLUE]](\uAC1C\uBC1C\uC790),[[GOLD]] - [[GREEN]]TfT_02 [[BLUE]](\uAC1C\uBC1C\uC790),[[GOLD]] - [[GREEN]]Glitchfinder [[BLUE]](\uAC1C\uBC1C\uC790),[[GOLD]] - [[GREEN]]t00thpick1 [[BLUE]](\uAC1C\uBC1C\uC790),[[DARK_AQUA]]\uC720\uC6A9\uD55C \uB9C1\uD06C:,[[GOLD]] - [[GREEN]]https://github.com/mcMMO-Dev/mcMMO/issues[[GOLD]] \uBC84\uADF8 \uBCF4\uACE0,[[GOLD]] - [[GREEN]]#mcmmo @ irc.esper.net[[GOLD]] IRC \uCC44\uD305,
|
||||
Commands.addlevels.AwardAll.1=[[GREEN]]\uB2F9\uC2E0\uC740 \uBAA8\uB4E0 \uC2A4\uD0AC\uC5D0 {0} \uB808\uBCA8\uC744 \uC9C0\uAE09\uD588\uC2B5\uB2C8\uB2E4!
|
||||
Commands.addlevels.AwardAll.2=[[RED]]\uBAA8\uB4E0 \uC2A4\uD0AC\uC774 {0}\uB85C \uBCC0\uACBD\uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Commands.addlevels.AwardAll.2=\uBAA8\uB4E0 \uC2A4\uD0AC\uC774 {0}\uB85C \uBCC0\uACBD\uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Commands.addlevels.AwardSkill.1=[[GREEN]]\uB2F9\uC2E0\uC740 {0} \uB808\uBCA8\uC744 {1}\uC5D0 \uC9C0\uAE09\uD558\uC600\uC2B5\uB2C8\uB2E4!
|
||||
Commands.addlevels.AwardSkill.2=[[RED]]{1} \uB2D8\uC740 {0}\uC744/\uB97C \uC218\uC815\uD558\uC600\uC2B5\uB2C8\uB2E4
|
||||
Commands.addlevels.AwardSkill.2={1} \uB2D8\uC740 {0}\uC744/\uB97C \uC218\uC815\uD558\uC600\uC2B5\uB2C8\uB2E4
|
||||
Commands.addxp.AwardAll=[[GREEN]]\uB2F9\uC2E0\uC740 \uBAA8\uB4E0 \uC2A4\uD0AC\uC5D0 {0} \uACBD\uD5D8\uCE58\uB97C \uC9C0\uAE09\uD588\uC2B5\uB2C8\uB2E4!
|
||||
Commands.addxp.AwardSkill=[[GREEN]]\uB2F9\uC2E0\uC740 {0} \uACBD\uD5D8\uCE58\uB97C {1}\uC5D0 \uC9C0\uAE09\uD558\uC600\uC2B5\uB2C8\uB2E4!
|
||||
Commands.Ability.Off=\uB2A5\uB825 \uC0AC\uC6A9\uC774 [[RED]]\uAEBC\uC84C\uC2B5\uB2C8\uB2E4
|
||||
@ -453,12 +453,12 @@ Commands.Chat.Console=*\uC2DC\uC2A4\uD15C*
|
||||
Commands.Cooldowns.Header=[[GOLD]]--= [[GREEN]]mcMMO \uB2A5\uB825 \uC7AC \uC0AC\uC6A9 \uB300\uAE30\uC2DC\uAC04[[GOLD]] =--
|
||||
Commands.Cooldowns.Row.N=\ [[RED]]{0}[[WHITE]] - [[GOLD]]{1}\uCD08 \uB0A8\uC74C
|
||||
Commands.Cooldowns.Row.Y=\ [[AQUA]]{0}[[WHITE]] - [[DARK_GREEN]]\uC900\uBE44!
|
||||
Commands.Database.Cooldown=[[RED]]\uC774 \uBA85\uB839\uC5B4\uB97C \uB2E4\uC2DC \uCE58\uAE30\uC804\uC5D0 1\uCD08\uB97C \uAE30\uB2EC\uB824\uC57C\uB9CC \uD569\uB2C8\uB2E4.
|
||||
Commands.Database.Processing=[[RED]]\uB2F9\uC2E0\uC758 \uC774\uC804 \uBA85\uB839\uC5B4\uB294 \uC5EC\uC804\uD788 \uC791\uC5C5\uC911\uC785\uB2C8\uB2E4. \uAE30\uB2E4\uB824\uC8FC\uC138\uC694.
|
||||
Commands.Disabled=[[RED]]\uC774 \uBA85\uB839\uC5B4\uB294 \uBE44\uD65C\uC131\uD654 \uB418\uC788\uC2B5\uB2C8\uB2E4.
|
||||
Commands.Database.Cooldown=\uC774 \uBA85\uB839\uC5B4\uB97C \uB2E4\uC2DC \uCE58\uAE30\uC804\uC5D0 1\uCD08\uB97C \uAE30\uB2EC\uB824\uC57C\uB9CC \uD569\uB2C8\uB2E4.
|
||||
Commands.Database.Processing=\uB2F9\uC2E0\uC758 \uC774\uC804 \uBA85\uB839\uC5B4\uB294 \uC5EC\uC804\uD788 \uC791\uC5C5\uC911\uC785\uB2C8\uB2E4. \uAE30\uB2E4\uB824\uC8FC\uC138\uC694.
|
||||
Commands.Disabled=\uC774 \uBA85\uB839\uC5B4\uB294 \uBE44\uD65C\uC131\uD654 \uB418\uC788\uC2B5\uB2C8\uB2E4.
|
||||
Commands.DoesNotExist= [[RED]]\uD50C\uB808\uC774\uC5B4\uB294 \uB370\uC774\uD130\uBCA0\uC774\uC2A4\uC5D0 \uC874\uC7AC\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4!
|
||||
Commands.GodMode.Disabled=[[YELLOW]]mcMMO \uBD88\uC0AC\uC2E0 \uBAA8\uB4DC \uBE44\uD65C\uC131\uD654
|
||||
Commands.GodMode.Enabled=[[YELLOW]]mcMMO \uBD88\uC0AC\uC2E0 \uBAA8\uB4DC \uD65C\uC131\uD654
|
||||
Commands.GodMode.Disabled=mcMMO \uBD88\uC0AC\uC2E0 \uBAA8\uB4DC \uBE44\uD65C\uC131\uD654
|
||||
Commands.GodMode.Enabled=mcMMO \uBD88\uC0AC\uC2E0 \uBAA8\uB4DC \uD65C\uC131\uD654
|
||||
Commands.GodMode.Forbidden=[mcMMO] \uC774 \uC6D4\uB4DC\uC5D0\uC11C \uBD88\uC0AC\uC2E0 \uBAA8\uB4DC\uB294 \uD5C8\uC6A9 \uAE08\uC9C0\uC785\uB2C8\uB2E4 (\uD384\uBBF8\uC120 \uD655\uC778)
|
||||
Commands.GodMode.Toggle=\uBD88\uC0AC\uC2E0 \uBAA8\uB4DC\uB294 [[YELLOW]]{0}[[WHITE]](\uC73C)\uB85C \uC804\uD658\uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Commands.Healthbars.Changed.HEARTS=[mcMMO] \uB2F9\uC2E0\uC758 \uCCB4\uB825\uBC14 \uBCF4\uAE30 \uBC29\uC2DD\uC740 [[RED]]\uD558\uD2B8[[WHITE]]\uB85C \uBCC0\uACBD\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
|
||||
@ -468,40 +468,40 @@ Commands.Healthbars.Invalid=\uC798\uBABB\uB41C \uCCB4\uB825\uBC14 \uD0C0\uC785!
|
||||
Commands.Inspect=<\uD50C\uB808\uC774\uC5B4> [[GREEN]]- \uC0C1\uC138\uD55C \uD50C\uB808\uC774\uC5B4 \uC815\uBCF4\uB97C \uBD05\uB2C8\uB2E4
|
||||
Commands.Invite.Success=[[GREEN]]\uCD08\uB300\uB97C \uC131\uACF5\uC801\uC73C\uB85C \uBCF4\uB0C8\uC2B5\uB2C8\uB2E4.
|
||||
Commands.Leaderboards=<\uC2A4\uD0AC> <\uD398\uC774\uC9C0> [[GREEN]]- mcMMO \uC2A4\uD0AC \uC815\uBCF4
|
||||
Commands.mcc.Header=[[RED]]---[][[GREEN]]mcMMO \uBA85\uB839\uC5B4[[RED]][]---
|
||||
Commands.mcc.Header=---[][[GREEN]]mcMMO \uBA85\uB839\uC5B4[[RED]][]---
|
||||
Commands.mcgod=[[GREEN]]- \uBD88\uC0AC\uC2E0 \uBAA8\uB4DC \uCF1C\uAE30/\uB044\uAE30
|
||||
Commands.mchud.Invalid=[[RED]]HUD \uD0C0\uC785\uC774 \uC62C\uBC14\uB974\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Commands.mchud.Invalid=HUD \uD0C0\uC785\uC774 \uC62C\uBC14\uB974\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Commands.mcpurge.Success=[[GREEN]]\uB370\uC774\uD130\uBCA0\uC774\uC2A4\uAC00 \uC131\uACF5\uC801\uC73C\uB85C \uCD08\uAE30\uD654\uB42C\uC2B5\uB2C8\uB2E4!
|
||||
Commands.mcrank.Heading=[[GOLD]]-=\uAC1C\uC778 \uC21C\uC704=-
|
||||
Commands.mcrank.Overall=[[YELLOW]]\uC885\uD569[[GREEN]] - [[GOLD]]\uB7AD\uD06C [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=[[RED]]\uD0C0\uAC9F: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill=[[YELLOW]]{0}[[GREEN]] - [[GOLD]]\uB7AD\uD06C [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Overall=\uC885\uD569[[GREEN]] - [[GOLD]]\uB7AD\uD06C [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=\uD0C0\uAC9F: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill={0}[[GREEN]] - [[GOLD]]\uB7AD\uD06C [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Unranked=[[WHITE]]\uB7AD\uD06C\uC5C6\uC74C
|
||||
Commands.mcrefresh.Success=[[RED]]{0}\uC758 \uCFE8\uB2E4\uC6B4\uC774 \uCD08\uAE30\uD654\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
|
||||
Commands.mcrefresh.Success={0}\uC758 \uCFE8\uB2E4\uC6B4\uC774 \uCD08\uAE30\uD654\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
|
||||
Commands.mcremove.Success=[[GREEN]]{0}\uB2D8\uC758 \uB370\uC774\uD130\uBCA0\uC774\uC2A4\uAC00 \uC131\uACF5\uC801\uC73C\uB85C \uC0AD\uC81C\uB418\uC5C8\uC2B5\uB2C8\uB2E4!
|
||||
Commands.mctop.Tip=[[GOLD]]\uD301: [[RED]]/mcrank[[GOLD]] \uBA85\uB839\uC5B4\uB97C \uC0AC\uC6A9\uD558\uBA74 \uBAA8\uB4E0 \uAC1C\uC778 \uC21C\uC704\uB97C \uBCFC\uC218 \uC788\uC2B5\uB2C8\uB2E4!
|
||||
Commands.mmoedit=[\uD50C\uB808\uC774\uC5B4] <\uC2A4\uD0AC> <\uC0C8\uAC12> [[GREEN]] - \uB300\uC0C1\uC744 \uC218\uC815\uD569\uB2C8\uB2E4
|
||||
Commands.mmoedit.AllSkills.1=[[GREEN]]\uB2F9\uC2E0\uC758 \uBAA8\uB4E0 \uC2A4\uD0AC \uB808\uBCA8\uC774 {0}\uB85C \uC124\uC815\uB418\uC5C8\uC2B5\uB2C8\uB2E4!
|
||||
Commands.mmoedit.Modified.1=[[GREEN]]\uB2F9\uC2E0\uC758 {0} \uB808\uBCA8\uC774 {1}\uB85C \uC124\uC815\uB418\uC5C8\uC2B5\uB2C8\uB2E4!
|
||||
Commands.mmoedit.Modified.2=[[RED]]{0}\uB2D8\uC740 {1}\uB97C \uC218\uC815\uD588\uC2B5\uB2C8\uB2E4.
|
||||
Commands.mcconvert.Database.Same=[[RED]]\uB2F9\uC2E0\uC740 \uC774\uBBF8 {0} \uB370\uC774\uD130\uBCA0\uC774\uC2A4\uB97C \uC0AC\uC6A9\uC911\uC785\uB2C8\uB2E4!
|
||||
Commands.mcconvert.Database.InvalidType=[[RED]]{0} \uC740/\uB294 \uC798\uBABB\uB41C \uB370\uC774\uD130\uBCA0\uC774\uC2A4 \uD0C0\uC785\uC785\uB2C8\uB2E4.
|
||||
Commands.mmoedit.Modified.2={0}\uB2D8\uC740 {1}\uB97C \uC218\uC815\uD588\uC2B5\uB2C8\uB2E4.
|
||||
Commands.mcconvert.Database.Same=\uB2F9\uC2E0\uC740 \uC774\uBBF8 {0} \uB370\uC774\uD130\uBCA0\uC774\uC2A4\uB97C \uC0AC\uC6A9\uC911\uC785\uB2C8\uB2E4!
|
||||
Commands.mcconvert.Database.InvalidType={0} \uC740/\uB294 \uC798\uBABB\uB41C \uB370\uC774\uD130\uBCA0\uC774\uC2A4 \uD0C0\uC785\uC785\uB2C8\uB2E4.
|
||||
Commands.mcconvert.Database.Start=[[GRAY]]{0}\uC5D0\uC11C {1}(\uC73C)\uB85C \uC804\uD658 \uC2DC\uC791\uC911...
|
||||
Commands.mcconvert.Database.Finish=[[GRAY]]\uB370\uC774\uD130\uBCA0\uC774\uC2A4 \uC774\uB3D9 \uC644\uB8CC; {1} \uB370\uC774\uD130\uBCA0\uC774\uC2A4\uB294 \uC774\uC81C {0} \uB370\uC774\uD130\uBCA0\uC774\uC2A4\uB85C\uBD80\uD130 \uBAA8\uB4E0 \uC790\uB8CC\uB97C \uAC00\uC9D1\uB2C8\uB2E4.
|
||||
Commands.mmoshowdb=[[YELLOW]]\uD604\uC7AC \uC0AC\uC6A9\uD558\uB294 \uB370\uC774\uD130\uBCA0\uC774\uC2A4: [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=[[RED]]\uC798\uBABB\uB41C \uACF5\uC2DD \uD0C0\uC785! \uC62C\uBC14\uB978 \uD0C0\uC785: [[GREEN]]LINEAR [[RED]]\uADF8\uB9AC\uACE0 [[GREEN]]EXPONENTIAL.
|
||||
Commands.mcconvert.Experience.Same=[[RED]]\uC774\uBBF8 {0} \uACF5\uC2DD\uC744 \uC0AC\uC6A9\uC911\uC785\uB2C8\uB2E4
|
||||
Commands.mmoshowdb=\uD604\uC7AC \uC0AC\uC6A9\uD558\uB294 \uB370\uC774\uD130\uBCA0\uC774\uC2A4: [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=\uC798\uBABB\uB41C \uACF5\uC2DD \uD0C0\uC785! \uC62C\uBC14\uB978 \uD0C0\uC785: [[GREEN]]LINEAR [[RED]]\uADF8\uB9AC\uACE0 [[GREEN]]EXPONENTIAL.
|
||||
Commands.mcconvert.Experience.Same=\uC774\uBBF8 {0} \uACF5\uC2DD\uC744 \uC0AC\uC6A9\uC911\uC785\uB2C8\uB2E4
|
||||
Commands.mcconvert.Experience.Start=[[GRAY]]{0} \uC5D0\uC11C {1} \uACE1\uC120\uC73C\uB85C \uBCC0\uD658 \uC2DC\uC791
|
||||
Commands.mcconvert.Experience.Finish=[[GRAY]]\uACF5\uC2DD \uBCC0\uD658 \uC644\uB8CC; \uC774\uC81C {0} XP \uACE1\uC120\uC785\uB2C8\uB2E4.
|
||||
Commands.ModDescription=[[GREEN]]- \uD50C\uB7EC\uADF8\uC778\uC5D0 \uB300\uD55C \uC815\uBCF4\uB97C \uBD05\uB2C8\uB2E4
|
||||
Commands.NoConsole=\uC774 \uBA85\uB839\uC5B4\uB294 \uCF58\uC194\uC5D0\uC11C\uC758 \uC0AC\uC6A9\uC744 \uC9C0\uC6D0\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Commands.Notifications.Off=\uB2A5\uB825 \uC54C\uB9BC\uC774 [[RED]]\uCF1C\uC84C\uC2B5\uB2C8\uB2E4
|
||||
Commands.Notifications.On=\uB2A5\uB825 \uC54C\uB9BC\uC774 [[GREEN]]\uAEBC\uC84C\uC2B5\uB2C8\uB2E4
|
||||
Commands.Offline=[[RED]]\uC774 \uBA85\uB839\uC5B4\uB294 \uC624\uD504\uB77C\uC778 \uD50C\uB808\uC774\uC5B4\uC5D0\uAC8C \uB3D9\uC791\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Commands.NotLoaded=[[RED]]\uD50C\uB808\uC774\uC5B4 \uD504\uB85C\uD30C\uC77C\uC740 \uBD88\uB7EC\uC640\uC9C0\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4Player profile is not loaded yet.
|
||||
Commands.Other=[[RED]]---[][[GREEN]]\uAE30\uD0C0 \uBA85\uB839\uC5B4[[RED]][]---
|
||||
Commands.Party.Header=[[RED]]-----[][[GREEN]]\uD30C\uD2F0[[RED]][]-----
|
||||
Commands.Party.Features.Header=[[RED]]-----[][[GREEN]]\uD2B9\uC9D5[[RED]][]-----
|
||||
Commands.Offline=\uC774 \uBA85\uB839\uC5B4\uB294 \uC624\uD504\uB77C\uC778 \uD50C\uB808\uC774\uC5B4\uC5D0\uAC8C \uB3D9\uC791\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Commands.NotLoaded=\uD50C\uB808\uC774\uC5B4 \uD504\uB85C\uD30C\uC77C\uC740 \uBD88\uB7EC\uC640\uC9C0\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4Player profile is not loaded yet.
|
||||
Commands.Other=---[][[GREEN]]\uAE30\uD0C0 \uBA85\uB839\uC5B4[[RED]][]---
|
||||
Commands.Party.Header=-----[][[GREEN]]\uD30C\uD2F0[[RED]][]-----
|
||||
Commands.Party.Features.Header=-----[][[GREEN]]\uD2B9\uC9D5[[RED]][]-----
|
||||
Commands.Party.Status=[[DARK_GRAY]]\uC774\uB984: [[WHITE]]{0} {1} [[DARK_GRAY]]\uB808\uBCA8: [[DARK_AQUA]]{2}
|
||||
Commands.Party.Status.Alliance=[[DARK_GRAY]]\uB3D9\uB9F9: [[WHITE]]{0}
|
||||
Commands.Party.UnlockedFeatures=[[DARK_GRAY]]\uD574\uC81C\uB41C \uD2B9\uC9D5: [[GRAY]][[ITALIC]]{0}
|
||||
@ -513,9 +513,9 @@ Commands.Party.MembersNear=[[DARK_GRAY]]\uB2F9\uC2E0\uC758 \uADFC\uCC98 [[DARK_A
|
||||
Commands.Party.Accept=[[GREEN]]- \uD30C\uD2F0 \uCD08\uB300 \uD5C8\uC6A9
|
||||
Commands.Party.Chat.Off=\uD30C\uD2F0 \uCC44\uD305\uC744 [[RED]]\uB055\uB2C8\uB2E4
|
||||
Commands.Party.Chat.On=\uD30C\uD2F0 \uCC44\uD305\uC744 [[GREEN]]\uCF2D\uB2C8\uB2E4
|
||||
Commands.Party.Commands=[[RED]]---[][[GREEN]]\uD30C\uD2F0 \uBA85\uB839\uC5B4[[RED]][]---
|
||||
Commands.Party.Invite.0=[[RED]]\uC54C\uB9BC: [[GREEN]]\uB2F9\uC2E0\uC740 {1} \uB2D8\uC73C\uB85C\uBD80\uD130 {0} \uD30C\uD2F0 \uCD08\uB300\uC5D0 \uAD8C\uC720\uBC1B\uC558\uC2B5\uB2C8\uB2E4
|
||||
Commands.Party.Invite.1=[[YELLOW]]\uD0C0\uC785 [[GREEN]]/party accept[[YELLOW]] \uBA85\uB839\uC5B4\uB97C \uCE58\uBA74 \uD30C\uD2F0 \uCD08\uB300\uC5D0 \uC2B9\uB099\uB429\uB2C8\uB2E4
|
||||
Commands.Party.Commands=---[][[GREEN]]\uD30C\uD2F0 \uBA85\uB839\uC5B4[[RED]][]---
|
||||
Commands.Party.Invite.0=\uC54C\uB9BC: [[GREEN]]\uB2F9\uC2E0\uC740 {1} \uB2D8\uC73C\uB85C\uBD80\uD130 {0} \uD30C\uD2F0 \uCD08\uB300\uC5D0 \uAD8C\uC720\uBC1B\uC558\uC2B5\uB2C8\uB2E4
|
||||
Commands.Party.Invite.1=\uD0C0\uC785 [[GREEN]]/party accept[[YELLOW]] \uBA85\uB839\uC5B4\uB97C \uCE58\uBA74 \uD30C\uD2F0 \uCD08\uB300\uC5D0 \uC2B9\uB099\uB429\uB2C8\uB2E4
|
||||
Commands.Party.Invite=<\uD50C\uB808\uC774\uC5B4> [[GREEN]]- \uD30C\uD2F0 \uCD08\uB300\uB97C \uBCF4\uB0C5\uB2C8\uB2E4
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]\uCD08\uB300 \uC218\uB77D\uB428. \uB2F9\uC2E0\uC740 {0} \uD30C\uD2F0\uC5D0 \uAC00\uC785\uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Commands.Party.Join=\uCC38\uC5EC\uB41C \uD30C\uD2F0: {0}
|
||||
@ -524,42 +524,42 @@ Commands.Party.Rename=[[GRAY]]\uBCC0\uACBD\uB41C \uD30C\uD2F0 \uC774\uB984: [[WH
|
||||
Commands.Party.SetSharing=[[GRAY]]\uD30C\uD2F0 {0} \uACF5\uC720 \uC124\uC815: [[DARK_AQUA]]{1}
|
||||
Commands.Party.ToggleShareCategory=[[GRAY]]\uD30C\uD2F0 \uC544\uC774\uD15C \uACF5\uC720 [[GOLD]]{0} [[GRAY]]\uAC00 [[DARK_AQUA]]{1}\uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Commands.Party.AlreadyExists=[[DARK_RED]]{0} \uD30C\uD2F0\uC740/\uB294 \uC774\uBBF8 \uC874\uC7AC\uD569\uB2C8\uB2E4!
|
||||
Commands.Party.Kick=[[RED]]\uB2F9\uC2E0\uC740 {0} \uD30C\uD2F0\uC5D0\uC11C \uCD94\uBC29 \uB2F9\uD558\uC600\uC2B5\uB2C8\uB2E4.
|
||||
Commands.Party.Leave=[[RED]]\uD30C\uD2F0\uB97C \uB5A0\uB0AC\uC2B5\uB2C8\uB2E4
|
||||
Commands.Party.Members.Header=[[RED]]-----[][[GREEN]]\uB9F4\uBC84\uB4E4[[RED]][]-----
|
||||
Commands.Party.None=[[RED]]\uB2F9\uC2E0\uC740 \uD30C\uD2F0\uC5D0 \uCC38\uC5EC\uB418\uC5B4 \uC788\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Commands.Party.Kick=\uB2F9\uC2E0\uC740 {0} \uD30C\uD2F0\uC5D0\uC11C \uCD94\uBC29 \uB2F9\uD558\uC600\uC2B5\uB2C8\uB2E4.
|
||||
Commands.Party.Leave=\uD30C\uD2F0\uB97C \uB5A0\uB0AC\uC2B5\uB2C8\uB2E4
|
||||
Commands.Party.Members.Header=-----[][[GREEN]]\uB9F4\uBC84\uB4E4[[RED]][]-----
|
||||
Commands.Party.None=\uB2F9\uC2E0\uC740 \uD30C\uD2F0\uC5D0 \uCC38\uC5EC\uB418\uC5B4 \uC788\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Commands.Party.Quit=[[GREEN]]- \uD604\uC7AC \uCC38\uC5EC \uB418\uC5B4\uC788\uB294 \uD30C\uD2F0\uB97C \uB098\uAC11\uB2C8\uB2E4
|
||||
Commands.Party.Teleport=[[GREEN]]- \uD30C\uD2F0 \uB9F4\uBC84\uD55C\uD14C \uD154\uB808\uD3EC\uD2B8\uD569\uB2C8\uB2E4
|
||||
Commands.Party.Toggle=[[GREEN]]- \uD30C\uD2F0 \uCC44\uD305\uC744 \uCF1C\uAE30/\uB044\uAE30 \uD569\uB2C8\uB2E4
|
||||
Commands.Party1=[[GREEN]]- \uC0C8 \uD30C\uD2F0\uB97C \uB9CC\uB4ED\uB2C8\uB2E4
|
||||
Commands.Party2=[[GREEN]]- \uD50C\uB808\uC774\uC5B4\uAC00 \uD30C\uD2F0\uC5D0 \uAC00\uC785\uD569\uB2C8\uB2E4
|
||||
Commands.Party.Alliance.Header=[[RED]]-----[][[GREEN]]\uD30C\uD2F0 \uB3D9\uB9F9[[RED]][]-----
|
||||
Commands.Party.Alliance.Header=-----[][[GREEN]]\uD30C\uD2F0 \uB3D9\uB9F9[[RED]][]-----
|
||||
Commands.Party.Alliance.Ally=[[WHITE]]{0} [[DARK_GRAY]]\uD30C\uD2F0\uC758 \uB3D9\uB9F9: [[WHITE]]{1}
|
||||
Commands.Party.Alliance.Members.Header=[[RED]]-----[][[GREEN]]\uB3D9\uB9F9 \uAD6C\uC131\uC6D0[[RED]][]-----
|
||||
Commands.Party.Alliance.Invite.0=[[RED]]\uC54C\uB9BC: [[GREEN]]{1} \uD30C\uD2F0\uB85C\uBD80\uD130 {0} \uD30C\uD2F0\uC640\uC758 \uB3D9\uB9F9 \uCD08\uB300\uB97C \uBC1B\uC558\uC2B5\uB2C8\uB2E4
|
||||
Commands.Party.Alliance.Invite.1=[[YELLOW]]\uD0C0\uC785 [[GREEN]]/party alliance accept[[YELLOW]] \uCD08\uB300\uC5D0 \uC218\uB77D\uD569\uB2C8\uB2E4
|
||||
Commands.Party.Alliance.Members.Header=-----[][[GREEN]]\uB3D9\uB9F9 \uAD6C\uC131\uC6D0[[RED]][]-----
|
||||
Commands.Party.Alliance.Invite.0=\uC54C\uB9BC: [[GREEN]]{1} \uD30C\uD2F0\uB85C\uBD80\uD130 {0} \uD30C\uD2F0\uC640\uC758 \uB3D9\uB9F9 \uCD08\uB300\uB97C \uBC1B\uC558\uC2B5\uB2C8\uB2E4
|
||||
Commands.Party.Alliance.Invite.1=\uD0C0\uC785 [[GREEN]]/party alliance accept[[YELLOW]] \uCD08\uB300\uC5D0 \uC218\uB77D\uD569\uB2C8\uB2E4
|
||||
Commands.Party.Alliance.Invite.Accepted=[[GREEN]]\uB3D9\uB9F9 \uCD08\uB300 \uC218\uB77D\uB428.
|
||||
Commands.Party.Alliance.None=[[RED]]\uB2F9\uC2E0\uC740 \uB3D9\uB9F9\uC744 \uAC00\uC9C0\uACE0 \uC788\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Commands.Party.Alliance.AlreadyAllies=[[RED]]\uB2F9\uC2E0\uC758 \uD30C\uD2F0\uB294 \uC774\uBBF8 \uB3D9\uB9F9\uC744 \uAC00\uC9C0\uACE0 \uC788\uC2B5\uB2C8\uB2E4. \uAD00\uACC4\uB97C \uD574\uC9C0\uD558\uB824\uBA74 [[DARK_AQUA]]/party alliance disband
|
||||
Commands.Party.Alliance.Help.0=[[RED]]\uC774 \uD30C\uD2F0\uB294 \uB3D9\uB9F9 \uD615\uD0DC\uB97C \uAC00\uC9C0\uACE0 \uC788\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. \uD30C\uD2F0\uC7A5\uC744 \uCD08\uB300\uD558\uC138\uC694
|
||||
Commands.Party.Alliance.Help.1=[[RED]] \uB3D9\uB9F9\uC744 \uD558\uB824\uBA74 [[DARK_AQUA]]/party alliance invite <player>[[RED]].
|
||||
Commands.Party.Alliance.None=\uB2F9\uC2E0\uC740 \uB3D9\uB9F9\uC744 \uAC00\uC9C0\uACE0 \uC788\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Commands.Party.Alliance.AlreadyAllies=\uB2F9\uC2E0\uC758 \uD30C\uD2F0\uB294 \uC774\uBBF8 \uB3D9\uB9F9\uC744 \uAC00\uC9C0\uACE0 \uC788\uC2B5\uB2C8\uB2E4. \uAD00\uACC4\uB97C \uD574\uC9C0\uD558\uB824\uBA74 [[DARK_AQUA]]/party alliance disband
|
||||
Commands.Party.Alliance.Help.0=\uC774 \uD30C\uD2F0\uB294 \uB3D9\uB9F9 \uD615\uD0DC\uB97C \uAC00\uC9C0\uACE0 \uC788\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. \uD30C\uD2F0\uC7A5\uC744 \uCD08\uB300\uD558\uC138\uC694
|
||||
Commands.Party.Alliance.Help.1= \uB3D9\uB9F9\uC744 \uD558\uB824\uBA74 [[DARK_AQUA]]/party alliance invite <player>[[RED]].
|
||||
Commands.ptp.Enabled=\uD30C\uD2F0 \uD154\uB808\uD3EC\uD2B8 [[GREEN]]\uD65C\uC131\uD654\uB428
|
||||
Commands.ptp.Disabled=\uD30C\uD2F0 \uD154\uB808\uD3EC\uD2B8 [[RED]]\uBE44\uD65C\uC131\uD654\uB428
|
||||
Commands.ptp.NoRequests=[[RED]]\uB2F9\uC2E0\uC740 \uC774 \uC2DC\uAC04\uC5D0 \uD154\uB808\uD3EC\uD2B8 \uC694\uCCAD\uC744 \uD558\uC2E4 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4
|
||||
Commands.ptp.NoWorldPermissions=[[RED]][mcMMO] \uB2F9\uC2E0\uC740 \uC6D4\uB4DC {0}(\uC73C)\uB85C \uD154\uB808\uD3EC\uD2B8\uD560 \uAD8C\uD55C\uC774 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Commands.ptp.Request1=[[YELLOW]]{0} [[GREEN]]\uB2D8\uC774 \uB2F9\uC2E0\uC5D0\uAC8C \uD154\uB808\uD3EC\uD2B8\uB97C \uC2E0\uCCAD\uD588\uC2B5\uB2C8\uB2E4.
|
||||
Commands.ptp.NoRequests=\uB2F9\uC2E0\uC740 \uC774 \uC2DC\uAC04\uC5D0 \uD154\uB808\uD3EC\uD2B8 \uC694\uCCAD\uC744 \uD558\uC2E4 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4
|
||||
Commands.ptp.NoWorldPermissions=[mcMMO] \uB2F9\uC2E0\uC740 \uC6D4\uB4DC {0}(\uC73C)\uB85C \uD154\uB808\uD3EC\uD2B8\uD560 \uAD8C\uD55C\uC774 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Commands.ptp.Request1={0} [[GREEN]]\uB2D8\uC774 \uB2F9\uC2E0\uC5D0\uAC8C \uD154\uB808\uD3EC\uD2B8\uB97C \uC2E0\uCCAD\uD588\uC2B5\uB2C8\uB2E4.
|
||||
Commands.ptp.Request2=[[GREEN]]\uD154\uB808\uD3EC\uD2B8\uD558\uB824\uBA74, \uD0C0\uC785 [[YELLOW]]/ptp accept[[GREEN]]. [[RED]]{0}[[GREEN]]\uCD08\uC5D0 \uC694\uCCAD\uC774 \uB9CC\uAE30\uB429\uB2C8\uB2E4.
|
||||
Commands.ptp.AcceptAny.Enabled=\uD30C\uD2F0 \uD154\uB808\uD3EC\uD2B8 \uC694\uCCAD \uD655\uC778 [[GREEN]]\uD65C\uC131\uD654\uB428
|
||||
Commands.ptp.AcceptAny.Disabled=\uD30C\uD2F0 \uD154\uB808\uD3EC\uD2B8 \uC694\uCCAD \uD655\uC778 [[RED]]\uBE44\uD65C\uC131\uD654\uB428
|
||||
Commands.ptp.RequestExpired=[[RED]]\uD30C\uD2F0 \uD154\uB808\uD3EC\uD2B8 \uC694\uCCAD\uC774 \uB9CC\uAE30\uB428!
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO[[BLUE]] \uCD1D \uB808\uBCA8 [[YELLOW]]\uC810\uC218\uD45C--
|
||||
Commands.ptp.RequestExpired=\uD30C\uD2F0 \uD154\uB808\uD3EC\uD2B8 \uC694\uCCAD\uC774 \uB9CC\uAE30\uB428!
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO[[BLUE]] \uCD1D \uB808\uBCA8 [[YELLOW]]\uC810\uC218\uD45C--
|
||||
Commands.PowerLevel.Capped=[[DARK_RED]]\uCD1D \uB808\uBCA8: [[GREEN]]{0} [[DARK_RED]]\uCD5C\uB300 \uB808\uBCA8: [[YELLOW]]{1}
|
||||
Commands.PowerLevel=[[DARK_RED]]\uCD1D \uB808\uBCA8: [[GREEN]]{0}
|
||||
Commands.Reset.All=[[GREEN]]\uB2F9\uC2E0\uC758 \uBAA8\uB4E0 \uC2A4\uD0AC\uC774 \uC131\uACF5\uC801\uC73C\uB85C \uCD08\uAE30\uD654\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
|
||||
Commands.Reset.Single=[[GREEN]]\uB2F9\uC2E0\uC758 {0} \uC2A4\uD0AC\uC774 \uC131\uACF5\uC801\uC73C\uB85C \uCD08\uAE30\uD654\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
|
||||
Commands.Reset=[[GREEN]]\uC2A4\uD0AC \uB808\uBCA8\uC744 0\uC73C\uB85C \uCD08\uAE30\uD654 \uC2DC\uD0B5\uB2C8\uB2E4
|
||||
Commands.Scoreboard.Clear=[[DARK_AQUA]]mcMMO \uC810\uC218\uD310 \uCCAD\uC18C\uB428.
|
||||
Commands.Scoreboard.NoBoard=[[RED]]mcMMO \uC810\uC218\uD310\uC774 \uD65C\uC131\uD654 \uB418\uC5B4\uC788\uC9C0 \uC54A\uC74C.
|
||||
Commands.Scoreboard.NoBoard=mcMMO \uC810\uC218\uD310\uC774 \uD65C\uC131\uD654 \uB418\uC5B4\uC788\uC9C0 \uC54A\uC74C.
|
||||
Commands.Scoreboard.Keep=[[DARK_AQUA]]mcMMO \uC810\uC218\uD310\uC740 \uB2F9\uC2E0\uC774 [[GREEN]]/mcscoreboard clear[[DARK_AQUA]]\uB97C \uC0AC\uC6A9\uD560 \uB54C\uAE4C\uC9C0 \uC720\uC9C0\uB420 \uAC83\uC784.
|
||||
Commands.Scoreboard.Timer=[[DARK_AQUA]]mcMMO \uC810\uC218\uD310\uC740 \uC9C0\uAE08\uC73C\uB85C\uBD80\uD130 [[GOLD]]{0}[[DARK_AQUA]]\uCD08 \uB0B4\uC5D0 \uCCAD\uC18C\uB420 \uC608\uC815\uC784.
|
||||
Commands.Scoreboard.Help.0=[[GOLD]] == [[RED]]/mcscoreboard [[GREEN]]\uB3C4\uC6C0\uB9D0[[GOLD]] ==
|
||||
@ -568,16 +568,16 @@ Commands.Scoreboard.Help.2=[[DARK_AQUA]]/mcscoreboard[[AQUA]] keep [[WHITE]] - M
|
||||
Commands.Scoreboard.Help.3=[[DARK_AQUA]]/mcscoreboard[[AQUA]] time [n] [[WHITE]] - McMMO \uC810\uC218\uD310\uC744 [[LIGHT_PURPLE]]n[[WHITE]]\uCD08 \uD6C4\uC5D0 \uCCAD\uC18C\uD568
|
||||
Commands.Scoreboard.Tip.Keep=[[GOLD]]\uD301: [[RED]]/mcscoreboard keep[[GOLD]] \uC810\uC218\uD310\uC744 \uBCF4\uC774\uAC8C \uD56D\uC0C1 \uC720\uC9C0.
|
||||
Commands.Scoreboard.Tip.Clear=[[GOLD]]\uD301: [[RED]]/mcscoreboard clear[[GOLD]] \uC810\uC218\uD310 \uAC10\uCDA4.
|
||||
Commands.Skill.Invalid=[[RED]]\uC798\uBABB\uB41C \uC2A4\uD0AC \uC774\uB984 \uC785\uB2C8\uB2E4!
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--mcMMO [[BLUE]]{0}[[YELLOW]] \uC810\uC218\uD45C--
|
||||
Commands.Skill.Invalid=\uC798\uBABB\uB41C \uC2A4\uD0AC \uC774\uB984 \uC785\uB2C8\uB2E4!
|
||||
Commands.Skill.Leaderboard=--mcMMO [[BLUE]]{0}[[YELLOW]] \uC810\uC218\uD45C--
|
||||
Commands.SkillInfo=[[GREEN]]- \uC2A4\uD0AC\uC5D0 \uB300\uD55C \uC790\uC138\uD55C \uC815\uBCF4\uB97C \uBD05\uB2C8\uB2E4
|
||||
Commands.Stats.Self=\uB2F9\uC2E0\uC758 \uD1B5\uACC4
|
||||
Commands.Stats=[[GREEN]]- \uB2F9\uC2E0\uC758 mcMMO \uD1B5\uACC4 \uBCF4\uAE30
|
||||
Commands.ToggleAbility=[[GREEN]]- \uC6B0\uD074\uB9AD\uC2DC \uC0AC\uC6A9\uB418\uB294 \uC2A4\uD0AC\uB4E4\uC744 \uCF1C\uAE30/\uB044\uAE30 \uD569\uB2C8\uB2E4
|
||||
Commands.Usage.0=[[RED]]\uC62C\uBC14\uB978 \uC0AC\uC6A9\uBC95 /{0}
|
||||
Commands.Usage.1=[[RED]]\uC62C\uBC14\uB978 \uC0AC\uC6A9\uBC95 /{0} {1}
|
||||
Commands.Usage.2=[[RED]]\uC62C\uBC14\uB978 \uC0AC\uC6A9\uBC95 /{0} {1} {2}
|
||||
Commands.Usage.3=[[RED]]\uC62C\uBC14\uB978 \uC0AC\uC6A9\uBC95 /{0} {1} {2} {3}
|
||||
Commands.Usage.0=\uC62C\uBC14\uB978 \uC0AC\uC6A9\uBC95 /{0}
|
||||
Commands.Usage.1=\uC62C\uBC14\uB978 \uC0AC\uC6A9\uBC95 /{0} {1}
|
||||
Commands.Usage.2=\uC62C\uBC14\uB978 \uC0AC\uC6A9\uBC95 /{0} {1} {2}
|
||||
Commands.Usage.3=\uC62C\uBC14\uB978 \uC0AC\uC6A9\uBC95 /{0} {1} {2} {3}
|
||||
Commands.Usage.FullClassName=\uD074\uB808\uC2A4\uC774\uB984
|
||||
Commands.Usage.Level=\uB808\uBCA8
|
||||
Commands.Usage.Message=\uBA54\uC138\uC9C0
|
||||
@ -588,61 +588,61 @@ Commands.Usage.Player=\uD50C\uB808\uC774\uC5B4
|
||||
Commands.Usage.Rate=\uBC30\uC728
|
||||
Commands.Usage.Skill=\uC2A4\uD0AC
|
||||
Commands.Usage.XP=xp
|
||||
mcMMO.NoInvites=[[RED]]\uC774 \uC2DC\uAC04\uC5D0 \uB2F9\uC2E0\uC740 \uCD08\uB300\uD558\uC9C0 \uBABB\uD569\uB2C8\uB2E4
|
||||
mcMMO.NoInvites=\uC774 \uC2DC\uAC04\uC5D0 \uB2F9\uC2E0\uC740 \uCD08\uB300\uD558\uC9C0 \uBABB\uD569\uB2C8\uB2E4
|
||||
mcMMO.NoPermission=[[DARK_RED]]\uAD8C\uD55C\uC774 \uBD80\uC871\uD569\uB2C8\uB2E4.
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]\uB9CC\uC57D \uB2F9\uC2E0\uC774 \uC2A4\uD0AC\uC744 \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uB2E4\uBA74 \uC5EC\uAE30\uC5D0 \uD45C\uC2DC\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
|
||||
##party
|
||||
Party.Forbidden=[mcMMO] \uC774 \uC6D4\uB4DC\uC5D0\uC11C \uD30C\uD2F0\uB97C \uD558\uC2E4 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 (\uD384\uBBF8\uC120 \uD655\uC778)
|
||||
Party.Help.0=[[RED]]\uC62C\uBC14\uB978 \uC0AC\uC6A9\uBC95 [[DARK_AQUA]]{0} <\uD50C\uB808\uC774\uC5B4> [\uBE44\uBC00\uBC88\uD638].
|
||||
Party.Help.1=[[RED]]\uD30C\uD2F0\uB97C \uB9CC\uB4E4\uB824\uBA74, [[DARK_AQUA]]{0} <\uC774\uB984> [\uBE44\uBC00\uBC88\uD638].
|
||||
Party.Help.2=[[RED]]\uD30C\uD2F0 \uC815\uBCF4\uB97C \uBCFC\uB824\uBA74 [[DARK_AQUA]]{0}
|
||||
Party.Help.3=[[RED]]\uD30C\uD2F0\uC5D0 \uAC00\uC785\uD560\uB824\uBA74 [[DARK_AQUA]]{0} <\uD50C\uB808\uC774\uC5B4> [\uBE44\uBC00\uBC88\uD638] [[RED]]\uB098\uAC08\uB824\uBA74 [[DARK_AQUA]]{1}
|
||||
Party.Help.4=[[RED]]\uD30C\uD2F0\uB97C \uC7A0\uAE08/\uC7A0\uAE08\uD574\uC81C \uD560\uB824\uBA74, [[DARK_AQUA]]{0}
|
||||
Party.Help.5=[[RED]]\uBE44\uBC00\uBC88\uD638\uB85C \uD30C\uD2F0\uB97C \uBCF4\uD638\uD560\uB824\uBA74, [[DARK_AQUA]]{0} <\uBE44\uBC00\uBC88\uD638>
|
||||
Party.Help.6=[[RED]]\uD30C\uD2F0\uC5D0\uC11C \uD50C\uB808\uC774\uC5B4\uB97C \uCD94\uBC29\uC2DC\uD0AC\uB824\uBA74, [[DARK_AQUA]]{0} <\uD50C\uB808\uC774\uC5B4>
|
||||
Party.Help.7=[[RED]]\uD30C\uD2F0\uC7A5\uC744 \uAD50\uCCB4\uD560\uB824\uBA74, [[DARK_AQUA]]{0} <\uD50C\uB808\uC774\uC5B4>
|
||||
Party.Help.8=[[RED]]\uD30C\uD2F0\uB97C \uD574\uCCB4\uD560\uB824\uBA74, [[DARK_AQUA]]{0}
|
||||
Party.Help.9=[[RED]]\uD30C\uD2F0 \uB9F4\uBC84\uB4E4\uACFC \uC544\uC774\uD15C\uC744 \uACF5\uC720\uD558\uB824\uBA74 [[DARK_AQUA]]{0}
|
||||
Party.Help.10=[[RED]]\uD30C\uD2F0 \uB9F4\uBC84\uB4E4\uACFC \uACBD\uD5D8\uCE58 \uACF5\uC720\uB97C \uD65C\uC131\uD654\uD654\uB824\uBA74 [[DARK_AQUA]]{0}
|
||||
Party.Help.0=\uC62C\uBC14\uB978 \uC0AC\uC6A9\uBC95 [[DARK_AQUA]]{0} <\uD50C\uB808\uC774\uC5B4> [\uBE44\uBC00\uBC88\uD638].
|
||||
Party.Help.1=\uD30C\uD2F0\uB97C \uB9CC\uB4E4\uB824\uBA74, [[DARK_AQUA]]{0} <\uC774\uB984> [\uBE44\uBC00\uBC88\uD638].
|
||||
Party.Help.2=\uD30C\uD2F0 \uC815\uBCF4\uB97C \uBCFC\uB824\uBA74 [[DARK_AQUA]]{0}
|
||||
Party.Help.3=\uD30C\uD2F0\uC5D0 \uAC00\uC785\uD560\uB824\uBA74 [[DARK_AQUA]]{0} <\uD50C\uB808\uC774\uC5B4> [\uBE44\uBC00\uBC88\uD638] [[RED]]\uB098\uAC08\uB824\uBA74 [[DARK_AQUA]]{1}
|
||||
Party.Help.4=\uD30C\uD2F0\uB97C \uC7A0\uAE08/\uC7A0\uAE08\uD574\uC81C \uD560\uB824\uBA74, [[DARK_AQUA]]{0}
|
||||
Party.Help.5=\uBE44\uBC00\uBC88\uD638\uB85C \uD30C\uD2F0\uB97C \uBCF4\uD638\uD560\uB824\uBA74, [[DARK_AQUA]]{0} <\uBE44\uBC00\uBC88\uD638>
|
||||
Party.Help.6=\uD30C\uD2F0\uC5D0\uC11C \uD50C\uB808\uC774\uC5B4\uB97C \uCD94\uBC29\uC2DC\uD0AC\uB824\uBA74, [[DARK_AQUA]]{0} <\uD50C\uB808\uC774\uC5B4>
|
||||
Party.Help.7=\uD30C\uD2F0\uC7A5\uC744 \uAD50\uCCB4\uD560\uB824\uBA74, [[DARK_AQUA]]{0} <\uD50C\uB808\uC774\uC5B4>
|
||||
Party.Help.8=\uD30C\uD2F0\uB97C \uD574\uCCB4\uD560\uB824\uBA74, [[DARK_AQUA]]{0}
|
||||
Party.Help.9=\uD30C\uD2F0 \uB9F4\uBC84\uB4E4\uACFC \uC544\uC774\uD15C\uC744 \uACF5\uC720\uD558\uB824\uBA74 [[DARK_AQUA]]{0}
|
||||
Party.Help.10=\uD30C\uD2F0 \uB9F4\uBC84\uB4E4\uACFC \uACBD\uD5D8\uCE58 \uACF5\uC720\uB97C \uD65C\uC131\uD654\uD654\uB824\uBA74 [[DARK_AQUA]]{0}
|
||||
Party.InformedOnJoin={0} [[GREEN]]\uB2D8\uC774 \uB2F9\uC2E0\uC758 \uD30C\uD2F0\uC5D0 \uCC38\uC5EC\uD588\uC2B5\uB2C8\uB2E4
|
||||
Party.InformedOnQuit={0} [[GREEN]]\uB2D8\uC774 \uB2F9\uC2E0\uC758 \uD30C\uD2F0\uC5D0\uC11C \uB5A0\uB0AC\uC2B5\uB2C8\uB2E4
|
||||
Party.InformedOnNameChange=[[GOLD]]{0} [[GREEN]]\uB2D8\uC774 \uD30C\uD2F0 \uC774\uB984\uC744 [[WHITE]]{1}\uB85C \uC124\uC815\uD588\uC2B5\uB2C8\uB2E4
|
||||
Party.InvalidName=[[DARK_RED]]\uC798\uBABB\uB41C \uD30C\uD2F0 \uC774\uB984\uC785\uB2C8\uB2E4.
|
||||
Party.Invite.Self=[[RED]]\uC790\uAE30\uC790\uC2E0\uC744 \uCD08\uB300\uD560 \uC218\uB294 \uC5C6\uC2B5\uB2C8\uB2E4!
|
||||
Party.IsLocked=[[RED]]\uC774 \uD30C\uD2F0\uB294 \uC774\uBBF8 \uC7A0\uACA8\uC838 \uC788\uC2B5\uB2C8\uB2E4!
|
||||
Party.IsntLocked=[[RED]]\uC774 \uD30C\uD2F0\uB294 \uC7A0\uACA8\uC838 \uC788\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4!
|
||||
Party.Locked=[[RED]]\uD30C\uD2F0\uAC00 \uC7A0\uACBC\uC2B5\uB2C8\uB2E4, \uC624\uC9C1 \uD30C\uD2F0\uC7A5\uB9CC\uC774 \uCD08\uB300\uB97C \uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.
|
||||
Party.Invite.Self=\uC790\uAE30\uC790\uC2E0\uC744 \uCD08\uB300\uD560 \uC218\uB294 \uC5C6\uC2B5\uB2C8\uB2E4!
|
||||
Party.IsLocked=\uC774 \uD30C\uD2F0\uB294 \uC774\uBBF8 \uC7A0\uACA8\uC838 \uC788\uC2B5\uB2C8\uB2E4!
|
||||
Party.IsntLocked=\uC774 \uD30C\uD2F0\uB294 \uC7A0\uACA8\uC838 \uC788\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4!
|
||||
Party.Locked=\uD30C\uD2F0\uAC00 \uC7A0\uACBC\uC2B5\uB2C8\uB2E4, \uC624\uC9C1 \uD30C\uD2F0\uC7A5\uB9CC\uC774 \uCD08\uB300\uB97C \uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.
|
||||
Party.NotInYourParty=[[DARK_RED]]{0}\uB2D8\uC740 \uB2F9\uC2E0\uC758 \uD30C\uD2F0\uC5D0 \uC5C6\uC2B5\uB2C8\uB2E4
|
||||
Party.NotOwner=[[DARK_RED]]\uB2F9\uC2E0\uC740 \uD30C\uD2F0\uC7A5\uC774 \uC544\uB2D9\uB2C8\uB2E4.
|
||||
Party.Target.NotOwner=[[DARK_RED]]{0}\uB2D8\uC740 \uD30C\uD2F0\uC7A5\uC774 \uC544\uB2D9\uB2C8\uB2E4.
|
||||
Party.Owner.New=[[GREEN]]{0}\uB2D8\uC774 \uC0C8 \uD30C\uD2F0\uC7A5\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4.
|
||||
Party.Owner.NotLeader=[[DARK_RED]]\uB2F9\uC2E0\uC740 \uC774\uC81C \uD30C\uD2F0\uC7A5\uC774 \uC544\uB2D9\uB2C8\uB2E4.
|
||||
Party.Owner.Player =[[GREEN]]\uB2F9\uC2E0\uC740 \uC774\uC81C \uD30C\uD2F0\uC7A5\uC785\uB2C8\uB2E4.
|
||||
Party.Password.None=[[RED]]\uC774 \uD30C\uD2F0\uB294 \uBE44\uBC00\uBC88\uD638\uB85C \uBCF4\uD638\uB418\uACE0 \uC788\uC2B5\uB2C8\uB2E4. \uAC00\uC785\uD560\uB54C \uBE44\uBC00\uBC88\uD638\uB97C \uC81C\uACF5\uD574\uC8FC\uC138\uC694.
|
||||
Party.Password.Incorrect=[[RED]]\uD30C\uD2F0 \uBE44\uBC00\uBC88\uD638\uAC00 \uC62C\uBC14\uB974\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Party.Password.None=\uC774 \uD30C\uD2F0\uB294 \uBE44\uBC00\uBC88\uD638\uB85C \uBCF4\uD638\uB418\uACE0 \uC788\uC2B5\uB2C8\uB2E4. \uAC00\uC785\uD560\uB54C \uBE44\uBC00\uBC88\uD638\uB97C \uC81C\uACF5\uD574\uC8FC\uC138\uC694.
|
||||
Party.Password.Incorrect=\uD30C\uD2F0 \uBE44\uBC00\uBC88\uD638\uAC00 \uC62C\uBC14\uB974\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Party.Password.Set=[[GREEN]]\uC124\uC815\uD55C \uD30C\uD2F0 \uBE44\uBC00\uBC88\uD638\uB294 {0} \uC785\uB2C8\uB2E4
|
||||
Party.Password.Removed=[[GREEN]]\uD30C\uD2F0 \uBE44\uBC00\uBC88\uD638\uAC00 \uCCAD\uC18C\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
|
||||
Party.Player.Invalid=[[RED]]\uADF8 \uD50C\uB808\uC774\uC5B4\uB294 \uC62C\uBC14\uB974\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Party.Player.Invalid=\uADF8 \uD50C\uB808\uC774\uC5B4\uB294 \uC62C\uBC14\uB974\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Party.NotOnline=[[DARK_RED]]{0}\uB2D8\uC740 \uC811\uC18D\uC911\uC774 \uC544\uB2D9\uB2C8\uB2E4!
|
||||
Party.Player.InSameParty=[[RED]]{0}\uB2D8\uC740 \uC774\uBBF8 \uB2F9\uC2E0\uC758 \uD30C\uD2F0\uC5D0 \uC788\uC2B5\uB2C8\uB2E4!
|
||||
Party.Player.InSameParty={0}\uB2D8\uC740 \uC774\uBBF8 \uB2F9\uC2E0\uC758 \uD30C\uD2F0\uC5D0 \uC788\uC2B5\uB2C8\uB2E4!
|
||||
Party.PlayerNotInParty=[[DARK_RED]]{0}\uB2D8\uC740 \uD30C\uD2F0\uC5D0 \uC5C6\uC2B5\uB2C8\uB2E4
|
||||
Party.Specify=[[RED]]\uB2F9\uC2E0\uC740 \uD30C\uD2F0\uB97C \uBA85\uAE30\uD574\uC57C\uD569\uB2C8\uB2E4.
|
||||
Party.Teleport.Dead=[[RED]]\uB2F9\uC2E0\uC740 \uC8FD\uC740 \uD50C\uB808\uC774\uC5B4\uC5D0\uAC8C\uB85C \uD154\uB808\uD3EC\uD2B8 \uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Party.Teleport.Hurt=[[RED]]\uB2F9\uC2E0\uC740 \uB9C8\uC9C0\uB9C9\uC73C\uB85C {0}\uCD08\uC5D0 \uB2E4\uCCD0 \uD154\uB808\uD3EC\uD2B8 \uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Party.Specify=\uB2F9\uC2E0\uC740 \uD30C\uD2F0\uB97C \uBA85\uAE30\uD574\uC57C\uD569\uB2C8\uB2E4.
|
||||
Party.Teleport.Dead=\uB2F9\uC2E0\uC740 \uC8FD\uC740 \uD50C\uB808\uC774\uC5B4\uC5D0\uAC8C\uB85C \uD154\uB808\uD3EC\uD2B8 \uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Party.Teleport.Hurt=\uB2F9\uC2E0\uC740 \uB9C8\uC9C0\uB9C9\uC73C\uB85C {0}\uCD08\uC5D0 \uB2E4\uCCD0 \uD154\uB808\uD3EC\uD2B8 \uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
Party.Teleport.Player=[[GREEN]]\uB2F9\uC2E0\uC740 {0}\uB85C \uD154\uB808\uD3EC\uD2B8\uD588\uC2B5\uB2C8\uB2E4.
|
||||
Party.Teleport.Self=[[RED]]\uC790\uAE30\uC790\uC2E0\uD55C\uD14C \uD154\uB808\uD3EC\uD2B8 \uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4!
|
||||
Party.Teleport.Self=\uC790\uAE30\uC790\uC2E0\uD55C\uD14C \uD154\uB808\uD3EC\uD2B8 \uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4!
|
||||
Party.Teleport.Target=[[GREEN]]{0}\uB2D8\uC774 \uB2F9\uC2E0\uC5D0\uAC8C\uB85C \uD154\uB808\uD3EC\uD2B8\uD588\uC2B5\uB2C8\uB2E4.
|
||||
Party.Teleport.Disabled=[[RED]]{0}\uB2D8\uC740 \uD30C\uD2F0 \uD154\uB808\uD3EC\uD2B8\uB97C \uD5C8\uC6A9\uD558\uACE0 \uC788\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Party.Rename.Same=[[RED]]\uC774\uBBF8 \uB2F9\uC2E0\uC758 \uD30C\uD2F0 \uC774\uB984\uC785\uB2C8\uB2E4!
|
||||
Party.Join.Self=[[RED]]\uC790\uAE30\uC790\uC2E0\uC744 \uAC00\uC785\uC2DC\uD0AC\uC218 \uC5C6\uC2B5\uB2C8\uB2E4!
|
||||
Party.Teleport.Disabled={0}\uB2D8\uC740 \uD30C\uD2F0 \uD154\uB808\uD3EC\uD2B8\uB97C \uD5C8\uC6A9\uD558\uACE0 \uC788\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
||||
Party.Rename.Same=\uC774\uBBF8 \uB2F9\uC2E0\uC758 \uD30C\uD2F0 \uC774\uB984\uC785\uB2C8\uB2E4!
|
||||
Party.Join.Self=\uC790\uAE30\uC790\uC2E0\uC744 \uAC00\uC785\uC2DC\uD0AC\uC218 \uC5C6\uC2B5\uB2C8\uB2E4!
|
||||
Party.Unlocked=[[GRAY]]\uD30C\uD2F0\uAC00 \uC7A0\uAE08\uD574\uC81C \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Party.Disband=[[GRAY]]\uADF8 \uD30C\uD2F0\uAC00 \uD574\uCCB4\uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Party.Alliance.Formed=[[GRAY]]\uB2F9\uC2E0\uC758 \uD30C\uD2F0\uB294 \uC774\uC81C [[GREEN]]{0} \uD30C\uD2F0\uC640 \uB3D9\uB9F9\uC785\uB2C8\uB2E4
|
||||
Party.Alliance.Disband=[[GRAY]]\uB2F9\uC2E0\uC758 \uD30C\uD2F0\uB294 \uB354 \uC774\uC0C1 [[RED]]{0} \uD30C\uD2F0\uC640 \uB3D9\uB9F9\uC774 \uC544\uB2D9\uB2C8\uB2E4
|
||||
Party.Status.Locked=[[DARK_RED]](\uCD08\uB300\uB9CC-\uD5C8\uC6A9)
|
||||
Party.Status.Unlocked=[[DARK_GREEN]](\uAC1C\uBC29)
|
||||
Party.LevelUp=[[YELLOW]]\uD30C\uD2F0 \uB808\uBCA8\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Party.LevelUp=\uD30C\uD2F0 \uB808\uBCA8\uC774 {0} \uC62C\uB77C \uCD1D {1} \uB808\uBCA8\uC774 \uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Party.Feature.Chat=\uD30C\uD2F0 \uCC44\uD305
|
||||
Party.Feature.Teleport=\uD30C\uD2F0 \uD154\uB808\uD3EC\uD2B8
|
||||
Party.Feature.Alliance=\uB3D9\uB9F9
|
||||
@ -653,11 +653,11 @@ Party.Feature.Locked.Teleport={0}\uB808\uBCA8 \uB54C \uC2A4\uD0AC\uD574\uC81C (\
|
||||
Party.Feature.Locked.Alliance={0}\uB808\uBCA8 \uB54C \uC2A4\uD0AC\uD574\uC81C (\uB3D9\uB9F9)
|
||||
Party.Feature.Locked.ItemShare={0}\uB808\uBCA8 \uB54C \uC2A4\uD0AC\uD574\uC81C (\uC544\uC774\uD15C \uACF5\uC720)
|
||||
Party.Feature.Locked.XpShare={0}\uB808\uBCA8 \uB54C \uC2A4\uD0AC\uD574\uC81C (\uACBD\uD5D8\uCE58 \uACF5\uC720)
|
||||
Party.Feature.Disabled.1=[[RED]]\uD30C\uD2F0 \uCC44\uD305\uC740 \uC544\uC9C1 \uD574\uC81C\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.
|
||||
Party.Feature.Disabled.2=[[RED]]\uD30C\uD2F0 \uD154\uB808\uD3EC\uD2B8\uB294 \uC544\uC9C1 \uD574\uC81C\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.
|
||||
Party.Feature.Disabled.3=[[RED]]\uD30C\uD2F0 \uB3D9\uB9F9\uC740 \uC544\uC9C1 \uD574\uC81C\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.
|
||||
Party.Feature.Disabled.4=[[RED]]\uC544\uC774\uD15C \uACF5\uC720\uB294 \uC544\uC9C1 \uD574\uC81C\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.
|
||||
Party.Feature.Disabled.5=[[RED]]\uACBD\uD5D8\uCE58 \uACF5\uC720\uB294 \uC544\uC9C1 \uD574\uC81C\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.
|
||||
Party.Feature.Disabled.1=\uD30C\uD2F0 \uCC44\uD305\uC740 \uC544\uC9C1 \uD574\uC81C\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.
|
||||
Party.Feature.Disabled.2=\uD30C\uD2F0 \uD154\uB808\uD3EC\uD2B8\uB294 \uC544\uC9C1 \uD574\uC81C\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.
|
||||
Party.Feature.Disabled.3=\uD30C\uD2F0 \uB3D9\uB9F9\uC740 \uC544\uC9C1 \uD574\uC81C\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.
|
||||
Party.Feature.Disabled.4=\uC544\uC774\uD15C \uACF5\uC720\uB294 \uC544\uC9C1 \uD574\uC81C\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.
|
||||
Party.Feature.Disabled.5=\uACBD\uD5D8\uCE58 \uACF5\uC720\uB294 \uC544\uC9C1 \uD574\uC81C\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.
|
||||
Party.ShareType.Xp=\uACBD\uD5D8\uCE58
|
||||
Party.ShareType.Item=\uC544\uC774\uD15C
|
||||
Party.ShareMode.None=\uC5C6\uC74C
|
||||
@ -687,11 +687,11 @@ Commands.XPGain.Woodcutting=\uB098\uBB34 \uC790\uB974\uAE30
|
||||
Commands.XPGain=[[DARK_GRAY]]\uACBD\uD5D8\uCE58 \uC5BB\uB294 \uBC29\uBC95: [[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]\uB2F9\uC2E0\uC758 \uACBD\uD5D8\uCE58 \uBC14\uB294 {0}\uB85C \uC7A0\uACBC\uC2B5\uB2C8\uB2E4!
|
||||
Commands.xplock.unlocked=[[GOLD]]\uB2F9\uC2E0\uC758 \uACBD\uD5D8\uCE58 \uBC14\uB294 [[GREEN]]\uC7A0\uAE08 \uD574\uC81C\uB418\uC5C8\uC2B5\uB2C8\uB2E4[[GOLD]]!
|
||||
Commands.xprate.modified=[[RED]]\uACBD\uD5D8\uCE58 \uBC30\uC728\uC774 {0}\uBC30\uB85C \uC218\uC815\uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Commands.xprate.over=[[RED]]mcMMO \uACBD\uD5D8\uCE58 \uC774\uBCA4\uD2B8\uAC00 \uC885\uB8CC\uB418\uC5C8\uC2B5\uB2C8\uB2E4!!
|
||||
Commands.xprate.proper.0=[[RED]]\uACBD\uD5D8\uCE58 \uBC30\uC728 \uC774\uBCA4\uD2B8\uB97C \uC0AC\uC6A9\uBC95: [[WHITE]]/xprate <\uBC30\uC728> <true/false>
|
||||
Commands.xprate.proper.1=[[RED]]\uACBD\uD5D8\uCE58 \uBC30\uC728\uC744 \uCD08\uAE30\uD654 \uBC29\uBC95: [[WHITE]]/xprate reset
|
||||
Commands.xprate.proper.2=[[RED]]\uC774\uAC83\uC740 XP \uC774\uBCA4\uD2B8\uC778\uC9C0 \uC544\uB2CC\uC9C0 true \uB610\uB294 false\uB85C \uB098\uD0C0\uB0B4\uAE30 \uC704\uD574 \uC9C0\uC815\uD558\uC2ED\uC2DC\uC624
|
||||
Commands.xprate.modified=\uACBD\uD5D8\uCE58 \uBC30\uC728\uC774 {0}\uBC30\uB85C \uC218\uC815\uB418\uC5C8\uC2B5\uB2C8\uB2E4
|
||||
Commands.xprate.over=mcMMO \uACBD\uD5D8\uCE58 \uC774\uBCA4\uD2B8\uAC00 \uC885\uB8CC\uB418\uC5C8\uC2B5\uB2C8\uB2E4!!
|
||||
Commands.xprate.proper.0=\uACBD\uD5D8\uCE58 \uBC30\uC728 \uC774\uBCA4\uD2B8\uB97C \uC0AC\uC6A9\uBC95: [[WHITE]]/xprate <\uBC30\uC728> <true/false>
|
||||
Commands.xprate.proper.1=\uACBD\uD5D8\uCE58 \uBC30\uC728\uC744 \uCD08\uAE30\uD654 \uBC29\uBC95: [[WHITE]]/xprate reset
|
||||
Commands.xprate.proper.2=\uC774\uAC83\uC740 XP \uC774\uBCA4\uD2B8\uC778\uC9C0 \uC544\uB2CC\uC9C0 true \uB610\uB294 false\uB85C \uB098\uD0C0\uB0B4\uAE30 \uC704\uD574 \uC9C0\uC815\uD558\uC2ED\uC2DC\uC624
|
||||
Commands.xprate.started.0=[[GOLD]]mcMMO \uACBD\uD5D8\uCE58 \uC774\uBCA4\uD2B8\uAC00 \uC2DC\uC791\uB418\uC5C8\uC2B5\uB2C8\uB2E4!
|
||||
Commands.xprate.started.1=[[GOLD]]mcMMO \uACBD\uD5D8\uCE58 \uBC30\uC728\uC740 {0}\uBC30 \uC785\uB2C8\uB2E4!
|
||||
XPRate.Event= [[GOLD]]mcMMO \uB294 \uD604\uC7AC \uACBD\uD5D8\uCE58 \uC774\uBCA4\uD2B8 \uC911\uC785\uB2C8\uB2E4! \uACBD\uD5D8\uCE58\uB294 {0}\uBC30 \uC785\uB2C8\uB2E4!
|
||||
@ -701,7 +701,7 @@ XPRate.Event= [[GOLD]]mcMMO \uB294 \uD604\uC7AC \uACBD\uD5D8\uCE58 \uC774\uBCA4\
|
||||
Effects.Effects=\uD6A8\uACFC
|
||||
Effects.Child=[[DARK_GRAY]]LVL: [[GREEN]]{0}
|
||||
Effects.Level=[[DARK_GRAY]]LVL: [[GREEN]]{0} [[DARK_AQUA]]XP[[YELLOW]]([[GOLD]]{1}[[YELLOW]]/[[GOLD]]{2}[[YELLOW]])
|
||||
Effects.Parent = [[GOLD]]{0} -
|
||||
Effects.Parent= [[GOLD]]{0} -
|
||||
Effects.Template=[[DARK_AQUA]]{0}: [[GREEN]]{1}
|
||||
|
||||
#GUIDES
|
||||
@ -709,7 +709,7 @@ Guides.Available=[[GRAY]]{0} \uAC00\uC774\uB4DC\uAC00 \uC788\uC2B5\uB2C8\uB2E4 -
|
||||
Guides.Header=[[GOLD]]-=[[GREEN]]{0} \uAC00\uC774\uB4DC[[GOLD]]=-
|
||||
Guides.Page.Invalid=\uC62C\uBC14\uB978 \uD398\uC774\uC9C0 \uBC88\uD638\uAC00 \uC544\uB2D9\uB2C8\uB2E4!
|
||||
Guides.Page.OutOfRange=\uADF8 \uD398\uC774\uC9C0\uB294 \uC874\uC7AC\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4, \uC624\uC9C1 \uCD1D {0} \uD398\uC774\uC9C0\uAC00 \uC788\uC2B5\uB2C8\uB2E4.
|
||||
Guides.Usage=[[RED]] \uC0AC\uC6A9\uBC95 /{0} ? [\uD398\uC774\uC9C0]
|
||||
Guides.Usage= \uC0AC\uC6A9\uBC95 /{0} ? [\uD398\uC774\uC9C0]
|
||||
|
||||
##Acrobatics
|
||||
Guides.Acrobatics.Section.0=[[DARK_AQUA]]\uACE1\uC608\uC5D0 \uB300\uD558\uC5EC:\n[[YELLOW]]\uACE1\uC608\uB294 mcMMO\uC758 \uC6B0\uC640\uD558\uAC8C \uC6C0\uC9C1\uC774\uB294 \uC608\uC220\uC785\uB2C8\uB2E4.\n[[YELLOW]]\uC804\uD22C \uD2B9\uD61C\uC640 \uD658\uACBD \uC190\uC0C1 \uD2B9\uD61C\uB97C \uC99D\uAC00\uC2DC\uD0B5\uB2C8\uB2E4.\n\n[[DARK_AQUA]]XP \uC5BB\uAE30:\n[[YELLOW]]\uC774 \uC2A4\uD0AC\uC758 XP\uB97C \uC5BB\uC744\uB824\uBA74 \uC804\uD22C\uB098 \uC0DD\uC874\uC5D0\uC11C \uD53C\uD574\uB97C \n[[YELLOW]]\uC785\uB294 \uB099\uD558\uC5D0\uC11C \uCC29\uC9C0 \uD589\uB3D9\uC774 \uC694\uAD6C\uB429\uB2C8\uB2E4.
|
||||
@ -826,14 +826,14 @@ Guides.Woodcutting.Section.3=[[DARK_AQUA]]How do Double Drops work?\n[[YELLOW]]T
|
||||
Inspect.Offline= [[RED]]\uADF8 \uD50C\uB808\uC774\uC5B4\uB294 \uC624\uD504\uB77C\uC778 \uC785\uB2C8\uB2E4, \uC624\uC9C1 op\uB4E4\uB9CC \uAC80\uC0AC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4!
|
||||
Inspect.OfflineStats=mcMMO \uC624\uD504\uB77C\uC778 \uC720\uC800 \uC2A4\uD15F\uC740 [[YELLOW]]{0} \uC785\uB2C8\uB2E4
|
||||
Inspect.Stats=[[GREEN]]mcMMO \uC2A4\uD15F\uC740 [[YELLOW]]{0} \uC785\uB2C8\uB2E4
|
||||
Inspect.TooFar=[[RED]]\uB2F9\uC2E0\uC740 \uADF8 \uD50C\uB808\uC774\uC5B4\uC640 \uB108\uBB34 \uBA40\uB9AC \uB5A8\uC5B4\uC838 \uC788\uC5B4 \uAC80\uC0AC\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4!
|
||||
Inspect.TooFar=\uB2F9\uC2E0\uC740 \uADF8 \uD50C\uB808\uC774\uC5B4\uC640 \uB108\uBB34 \uBA40\uB9AC \uB5A8\uC5B4\uC838 \uC788\uC5B4 \uAC80\uC0AC\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4!
|
||||
|
||||
#ITEMS
|
||||
Item.ChimaeraWing.Fail=**\uD0A4\uBA54\uB77C\uC758 \uB0A0\uAC1C \uC2E4\uD328!**
|
||||
Item.ChimaeraWing.Pass=**\uD0A4\uBA54\uB77C \uB0A0\uAC1C**
|
||||
Item.ChimaeraWing.Name=\uD0A4\uBA54\uB77C \uB0A0\uAC1C
|
||||
Item.ChimaeraWing.Lore=[[GRAY]]\uB2F9\uC2E0\uC758 \uCE68\uB300\uB85C \uD154\uB808\uD3EC\uD2B8\uD569\uB2C8\uB2E4.
|
||||
Item.Generic.Wait=[[RED]]\uD0A4\uBA54\uB77C\uC758 \uB0A0\uAC1C\uB97C \uB2E4\uC2DC \uC0AC\uC6A9\uD560\uB824\uBA74 [[YELLOW]]({0}\uCD08) [[RED]]\uAE30\uB2EC\uB824\uC57C \uD569\uB2C8\uB2E4!
|
||||
Item.Generic.Wait=\uD0A4\uBA54\uB77C\uC758 \uB0A0\uAC1C\uB97C \uB2E4\uC2DC \uC0AC\uC6A9\uD560\uB824\uBA74 [[YELLOW]]({0}\uCD08) [[RED]]\uAE30\uB2EC\uB824\uC57C \uD569\uB2C8\uB2E4!
|
||||
Item.Injured.Wait=\uB2F9\uC2E0\uC740 \uCD5C\uADFC\uC5D0 \uBD80\uC0C1\uC744 \uB2F9\uD588\uACE0 \uC0AC\uC6A9\uD560\uB824\uBA74 [[YELLOW]]({0}\uCD08) [[WHITE]]\uAE30\uB2EC\uB824\uC57C \uD569\uB2C8\uB2E4
|
||||
Item.FluxPickaxe.Name=\uC6A9\uD574 \uACE1\uAD2D\uC774
|
||||
Item.FluxPickaxe.Lore.1=[[GRAY]]\uAD11\uBB3C\uC744 \uC989\uC2DC \uC81C\uB828\uD560 \uAE30\uD68C\uB97C \uAC00\uC9D1\uB2C8\uB2E4.
|
||||
@ -846,13 +846,13 @@ Teleport.Cancelled=[[DARK_RED]]\uD154\uB808\uD3EC\uD2B8 \uCDE8\uC18C\uB428!
|
||||
#SKILLS
|
||||
Skills.Child=[[GOLD]](\uD558\uC704 \uC2A4\uD0AC)
|
||||
Skills.Disarmed=[[DARK_RED]]\uB2F9\uC2E0\uC740 \uBB34\uC7A5 \uD574\uC81C\uB418\uC5C8\uC2B5\uB2C8\uB2E4!
|
||||
Skills.Header=[[RED]]-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.Header=-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.NeedMore=[[DARK_RED]]\uB2F9\uC2E0\uC740 [[GRAY]]{0}\uAC00 \uB354 \uD544\uC694\uD569\uB2C8\uB2E4
|
||||
Skills.Parents = \uC0C1\uC704\uB4E4
|
||||
Skills.Stats=[[YELLOW]]{0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats=[[YELLOW]]{0}[[GREEN]]{1}
|
||||
Skills.TooTired=[[RED]]\uC2A4\uD0AC \uC7AC \uC0AC\uC6A9 \uB300\uAE30\uC2DC\uAC04: ({0}\uCD08)
|
||||
Skills.Cancelled=[[RED]]{0} \uCDE8\uC18C\uB428!
|
||||
Skills.Stats={0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats={0}[[GREEN]]{1}
|
||||
Skills.TooTired=\uC2A4\uD0AC \uC7AC \uC0AC\uC6A9 \uB300\uAE30\uC2DC\uAC04: ({0}\uCD08)
|
||||
Skills.Cancelled={0} \uCDE8\uC18C\uB428!
|
||||
Skills.ConfirmOrCancel=[[GREEN]]\uB2E4\uC2DC \uC6B0-\uD074\uB9AD\uC744 \uD558\uBA74 \uD655\uC778 [[GOLD]]{0}[[GREEN]]. \uC88C-\uD074\uB9AD\uC744 \uD558\uBA74 \uCDE8\uC18C\uAC00 \uB429\uB2C8\uB2E4.
|
||||
|
||||
#STATISTICS
|
||||
@ -892,17 +892,17 @@ MOTD.Donate=[[DARK_AQUA]]\uAE30\uBD80 \uC815\uBCF4:
|
||||
MOTD.Hardcore.Enabled=[[GOLD]][mcMMO] [[DARK_AQUA]]\uD558\uB4DC\uCF54\uC5B4 \uBAA8\uB4DC \uD65C\uC131\uD654\uB428: [[DARK_RED]]{0}
|
||||
MOTD.Hardcore.DeathStatLoss.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]\uB370\uC2A4 \uD328\uB110\uD2F0 \uB2A5\uB825: [[DARK_RED]]{0}%
|
||||
MOTD.Hardcore.Vampirism.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]\uBC40\uD30C\uC774\uC5B4\uB9AC\uC810 \uC2A4\uD15F \uD761\uC218: [[DARK_RED]]{0}%
|
||||
MOTD.PerksPrefix=[[RED]][mcMMO \uD2B9\uC804]
|
||||
MOTD.PerksPrefix=[mcMMO \uD2B9\uC804]
|
||||
MOTD.Version=[[GOLD]][mcMMO] \uAD6C\uB3D9\uC911\uC778 \uBC84\uC804 [[DARK_AQUA]]{0}
|
||||
MOTD.Website=[[GOLD]][mcMMO] [[GREEN]]{0}[[YELLOW]] - mcMMO \uC6F9\uC0AC\uC774\uD2B8
|
||||
|
||||
#SMELTING
|
||||
Smelting.Ability.FluxMining=[[RED]]\uC720\uB3D9 \uCC44\uAD74 \uD655\uB960: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=[[RED]]\uC720\uB3D9 \uD6A8\uC728\uC131 \uBC30\uC728: [[YELLOW]]{0}x
|
||||
Smelting.Ability.FluxMining=\uC720\uB3D9 \uCC44\uAD74 \uD655\uB960: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=\uC720\uB3D9 \uD6A8\uC728\uC131 \uBC30\uC728: [[YELLOW]]{0}x
|
||||
Smelting.Ability.Locked.0={0}\uB808\uBCA8 \uB54C \uAE30\uC220\uC774 \uD574\uC81C\uB429\uB2C8\uB2E4 (\uBC14\uB2D0\uB77C XP \uBD80\uC2A4\uD2B8)
|
||||
Smelting.Ability.Locked.1={0}\uB808\uBCA8 \uB54C \uAE30\uC220\uC774 \uD574\uC81C\uB429\uB2C8\uB2E4 (\uC720\uB3D9 \uCC44\uAD74)
|
||||
Smelting.Ability.SecondSmelt=[[RED]]\uB450\uBC88\uC9F8 \uC7AC\uB828 \uD655\uB960: [[YELLOW]{0}
|
||||
Smelting.Ability.VanillaXPBoost=[[RED]]\uBC14\uB2D0\uB77C XP \uBC30\uC728: [[YELLOW]]{0}x
|
||||
Smelting.Ability.SecondSmelt=\uB450\uBC88\uC9F8 \uC7AC\uB828 \uD655\uB960: [[YELLOW]{0}
|
||||
Smelting.Ability.VanillaXPBoost=\uBC14\uB2D0\uB77C XP \uBC30\uC728: [[YELLOW]]{0}x
|
||||
Smelting.SubSkill.FuelEfficiency.Name=\uC720\uB3D9 \uD6A8\uC728\uC131
|
||||
Smelting.SubSkill.FuelEfficiency.Description=\uD654\uB85C\uC5D0\uC11C \uC7AC\uB828\uC2DC \uC5F0\uB8CC \uC5F0\uC18C \uC2DC\uAC04 \uC99D\uAC00
|
||||
Smelting.SubSkill.SecondSmelt.Name=\uB450\uBC88\uC9F8 \uC81C\uB828
|
||||
@ -952,20 +952,20 @@ UpdateChecker.outdated=\uB2F9\uC2E0\uC740 mcMMO \uAD6C\uBC84\uC804\uC744 \uC0AC\
|
||||
UpdateChecker.newavailable=\uC2E0 \uBC84\uC804\uC774 BukkitDev\uC5D0 \uC5C5\uB85C\uB4DC\uB418\uC5B4 \uC788\uC2B5\uB2C8\uB2E4.
|
||||
|
||||
#SCOREBOARD HEADERS
|
||||
Scoreboard.Header.PlayerStats=[[YELLOW]]mcMMO \uC2A4\uD15F
|
||||
Scoreboard.Header.PlayerCooldowns=[[YELLOW]]mcMMO \uC7AC \uC0AC\uC6A9 \uB300\uAE30\uC2DC\uAC04
|
||||
Scoreboard.Header.PlayerRank=[[YELLOW]]mcMMO \uC21C\uC704
|
||||
Scoreboard.Header.PlayerInspect=[[YELLOW]]mcMMO \uC2A4\uD15F:
|
||||
Scoreboard.Header.PowerLevel=[[RED]]\uCD1D \uB808\uBCA8
|
||||
Scoreboard.Header.PlayerStats=mcMMO \uC2A4\uD15F
|
||||
Scoreboard.Header.PlayerCooldowns=mcMMO \uC7AC \uC0AC\uC6A9 \uB300\uAE30\uC2DC\uAC04
|
||||
Scoreboard.Header.PlayerRank=mcMMO \uC21C\uC704
|
||||
Scoreboard.Header.PlayerInspect=mcMMO \uC2A4\uD15F:
|
||||
Scoreboard.Header.PowerLevel=\uCD1D \uB808\uBCA8
|
||||
Scoreboard.Misc.PowerLevel=[[GOLD]]\uCD1D \uB808\uBCA8
|
||||
Scoreboard.Misc.Level=[[DARK_AQUA]]\uB808\uBCA8
|
||||
Scoreboard.Misc.CurrentXP=[[GREEN]]\uD604\uC7AC XP
|
||||
Scoreboard.Misc.RemainingXP=[[YELLOW]]\uB0A8\uC740 XP
|
||||
Scoreboard.Misc.RemainingXP=\uB0A8\uC740 XP
|
||||
Scoreboard.Misc.Cooldown=[[LIGHT_PURPLE]]\uC7AC \uC0AC\uC6A9 \uB300\uAE30\uC2DC\uAC04
|
||||
Scoreboard.Misc.Overall=[[GOLD]]\uC885\uD569
|
||||
|
||||
#DATABASE RECOVERY
|
||||
Profile.Loading.Success=[[GREEN]]\uB2F9\uC2E0\uC758 mcMMO \uD504\uB85C\uD30C\uC77C\uC774 \uBD88\uB7EC\uC640\uC84C\uC2B5\uB2C8\uB2E4.
|
||||
Profile.Loading.Failure=[[RED]]mcMMO\uB294 \uC5EC\uC804\uD788 \uB2F9\uC2E0\uC758 \uB370\uC774\uD130\uB97C \uC77D\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. \uB2F9\uC2E0\uC740 \uC544\uB9C8\uB3C4 [[AQUA]]\uC11C\uBC84\uAD00\uB9AC\uC790\uC640 \uC5F0\uB77D[[RED]]\uD558\uAE30\uB97C \uC6D0\uD560 \uAC83\uC785\uB2C8\uB2E4.\n[[YELLOW]]\uB2F9\uC2E0\uC740 \uC5EC\uC804\uD788 \uC11C\uBC84\uC5D0\uC11C \uAC8C\uC784\uC911\uC774\uC9C0\uB9CC, \uB2F9\uC2E0\uC740 [[BOLD]]mcMMO \uB808\uBCA8\uC774 \uC5C6\uACE0[[YELLOW]] \uB2F9\uC2E0\uC774 \uC5BB\uC740 \uC5B4\uB290 XP\uB3C4 [[BOLD]]\uC800\uC7A5\uB418\uC9C0 \uC54A\uC744 \uAC81\uB2C8\uB2E4[[YELLOW]].
|
||||
Profile.Loading.Failure=mcMMO\uB294 \uC5EC\uC804\uD788 \uB2F9\uC2E0\uC758 \uB370\uC774\uD130\uB97C \uC77D\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. \uB2F9\uC2E0\uC740 \uC544\uB9C8\uB3C4 [[AQUA]]\uC11C\uBC84\uAD00\uB9AC\uC790\uC640 \uC5F0\uB77D[[RED]]\uD558\uAE30\uB97C \uC6D0\uD560 \uAC83\uC785\uB2C8\uB2E4.\n[[YELLOW]]\uB2F9\uC2E0\uC740 \uC5EC\uC804\uD788 \uC11C\uBC84\uC5D0\uC11C \uAC8C\uC784\uC911\uC774\uC9C0\uB9CC, \uB2F9\uC2E0\uC740 [[BOLD]]mcMMO \uB808\uBCA8\uC774 \uC5C6\uACE0[[YELLOW]] \uB2F9\uC2E0\uC774 \uC5BB\uC740 \uC5B4\uB290 XP\uB3C4 [[BOLD]]\uC800\uC7A5\uB418\uC9C0 \uC54A\uC744 \uAC81\uB2C8\uB2E4[[YELLOW]].
|
||||
Profile.Loading.AdminFailureNotice=[[DARK_RED]][A][[RED]] mcMMO\uB294 [[YELLOW]]{0}[[RED]] \uD50C\uB808\uC774\uC5B4 \uB370\uC774\uD130 \uC77D\uAE30\uAC00 \uBD88\uAC00\uB2A5\uD569\uB2C8\uB2E4. [[LIGHT_PURPLE]]\uB2F9\uC2E0\uC758 \uB370\uC774\uD130\uBCA0\uC774\uC2A4 \uC124\uCE58\uB97C \uAC80\uC0AC\uD574\uC8FC\uC138\uC694.
|
||||
|
||||
|
@ -1,15 +1,15 @@
|
||||
Acrobatics.Ability.Proc=[[GREEN]]**VeiligeLanding**
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**Ontweken**
|
||||
Acrobatics.DodgeChance=[[RED]]Ontwijk Kans: [[YELLOW]]{0}
|
||||
Acrobatics.DodgeChance=Ontwijk Kans: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Name=Rollen
|
||||
Acrobatics.SubSkill.GracefulRoll.Name=Veilige Roll
|
||||
Acrobatics.SubSkill.Dodge.Name=Ontwijken
|
||||
Acrobatics.Listener=Acrobatiek
|
||||
Acrobatics.SubSkill.Roll.Chance=[[RED]]Rol Kans: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=[[RED]]Elegante Rol Kans: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Chance=Rol Kans: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=Elegante Rol Kans: [[YELLOW]]{0}
|
||||
Acrobatics.Roll.Text=**Gerold**
|
||||
Acrobatics.SkillName=ACROBATIEK
|
||||
Acrobatics.Skillup=[[YELLOW]]Acrobatiek toegenomen met {0}. Totaal ({1})
|
||||
Acrobatics.Skillup=Acrobatiek toegenomen met {0}. Totaal ({1})
|
||||
Archery.SubSkill.SkillShot.Name=Ervaringsschot
|
||||
Archery.SubSkill.SkillShot.Description=Neemt de schade van bogen toe
|
||||
Archery.SubSkill.Daze.Name=Verdoven (Spelers)
|
||||
@ -17,17 +17,17 @@ Archery.SubSkill.Daze.Description=Verward tegenstanders en doet {0} schade
|
||||
Archery.SubSkill.ArrowRetrieval.Description=Kans om pijlen te krijgen van lijken
|
||||
Archery.Listener=Boogschieten:
|
||||
Archery.SkillName=BOOGSCHIETEN
|
||||
Archery.Skillup=[[YELLOW]] Boogschieten ervaring toegenomen met {0}. Totaal ({1})
|
||||
Archery.Skillup= Boogschieten ervaring toegenomen met {0}. Totaal ({1})
|
||||
Axes.Ability.Bonus.0=Bijl Meesterschap
|
||||
Axes.Ability.Bonus.1=Bonus {0} schade
|
||||
Axes.Ability.Bonus.4=Grotere impact
|
||||
Axes.Ability.Lower=[[GREEN]]**JE STOP JE BIJL WEER WEG**
|
||||
Axes.Ability.Ready=[[GREEN]]**JE HOUDT JE BIJL GEREED**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]Je bent KRITISCH geraakt
|
||||
Axes.Combat.CriticalHit=[[RED]]Kritische Klap
|
||||
Axes.Combat.CriticalHit=Kritische Klap
|
||||
Axes.Combat.GI.Proc=[[GREEN]] ** GESLAGEN MET GROTE KRACHT **
|
||||
Axes.Combat.GI.Struck=[[RED]]**GETROFFEN MET MEER SCHADE**
|
||||
Axes.Combat.SS.Length=[[RED]]Schedel Splijter Lengte: [[YELLOW]]{0}s
|
||||
Axes.Combat.GI.Struck=**GETROFFEN MET MEER SCHADE**
|
||||
Axes.Combat.SS.Length=Schedel Splijter Lengte: [[YELLOW]]{0}s
|
||||
Axes.SubSkill.SkullSplitter.Name=Schedel Splijter
|
||||
Axes.SubSkill.SkullSplitter.Description=Veroorzaak AoE Schade
|
||||
Axes.SubSkill.CriticalStrikes.Name=Kritieke Slag
|
||||
@ -39,12 +39,12 @@ Axes.SubSkill.GreaterImpact.Name=Grotere impact
|
||||
Axes.SubSkill.GreaterImpact.Description=Deal bonus schade aan unarmored vijanden
|
||||
Axes.Listener=Bijlen
|
||||
Axes.SkillName=BIJLEN
|
||||
Axes.Skills.SS.Off=[[RED]] ** Skull Splitter is uitgewerkt **
|
||||
Axes.Skills.SS.Off= ** Skull Splitter is uitgewerkt **
|
||||
Axes.Skills.SS.On=[[GREEN]]**SCHEDEL SPLIJTER GEACTIVEERD**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]Je [[YELLOW]]Schedel Splijter [[GREEN]]kracht is hersteld!
|
||||
Axes.Skills.SS.Other.Off=[[RED]]Skull Splitter [[GREEN]]is uitgewerkt voor [[GEEL]]{0}
|
||||
Axes.Skills.SS.Other.Off=Skull Splitter [[GREEN]]is uitgewerkt voor [[GEEL]]{0}
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] heeft [[RED]]Schedel Splijter[[DARK_GREEN]]gebruikt!
|
||||
Axes.Skillup=[[YELLOW]]Bijl ervaring toegenomen met {0}. Totaal ({1})
|
||||
Axes.Skillup=Bijl ervaring toegenomen met {0}. Totaal ({1})
|
||||
Excavation.Ability.Lower=[[GRAY]]**JE STOP JE SCHEP WEER WEG**
|
||||
Excavation.Ability.Ready=[[GREEN]]**JE HOUDT JE SCHEP GEREED**
|
||||
Excavation.SubSkill.GigaDrillBreaker.Name=Giga Drill Breker
|
||||
@ -53,15 +53,15 @@ Excavation.SubSkill.TreasureHunter.Name=Schatten Jager
|
||||
Excavation.SubSkill.TreasureHunter.Description=Mogelijkheid om te graven naar schatten
|
||||
Excavation.Listener=Uitgraving:
|
||||
Excavation.SkillName=Uitgraving
|
||||
Excavation.Skills.GigaDrillBreaker.Off=[[RED]] ** Giga Drill Breeker is uitgewerkt **
|
||||
Excavation.Skills.GigaDrillBreaker.Off= ** Giga Drill Breeker is uitgewerkt **
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**GIGA DRILL BREKER GEACTIVEERD**
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]Je [[YELLOW]]Giga Drill Breeker [[GREEN]] kracht is hersteld!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=[[RED]] Giga Drill Breaker [[GREEN]] is uitgewerkt voor [[GEEL]] {0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off= Giga Drill Breaker [[GREEN]] is uitgewerkt voor [[GEEL]] {0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] heeft [[RED]]Giga Drill Breaker [[DARK_GREEN]]gebruikt!
|
||||
Excavation.Skillup=[[YELLOW]]Uitgravings ervaring toegenomen met {0}. Totaal ({1})
|
||||
Fishing.Ability.Info=[[RED]]Magische Jager: [[GRAY]] ** verbetert bij Treasure Hunter Rank **
|
||||
Fishing.Ability.Shake=[[RED]]Schud Kans: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=[[RED]] Ice Vissen: Ga vissen in ijs
|
||||
Excavation.Skillup=Uitgravings ervaring toegenomen met {0}. Totaal ({1})
|
||||
Fishing.Ability.Info=Magische Jager: [[GRAY]] ** verbetert bij Treasure Hunter Rank **
|
||||
Fishing.Ability.Shake=Schud Kans: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing= Ice Vissen: Ga vissen in ijs
|
||||
Fishing.SubSkill.TreasureHunter.Name=Schatten Jager (Passief)
|
||||
Fishing.SubSkill.TreasureHunter.Description=Vis misc. objecten op
|
||||
Fishing.SubSkill.MagicHunter.Name=Magische Jager
|
||||
@ -78,7 +78,7 @@ Fishing.Chance.Raining=[[BLUE]] Regen Bonus
|
||||
Fishing.Listener=Vissen:
|
||||
Fishing.Ability.TH.MagicFound=[[GRAY]]Jij voelt een vleugje magie met deze vangst...
|
||||
Fishing.SkillName=VISSEN
|
||||
Herbalism.Ability.FD=[[RED]]Boeren Dieet: [[YELLOW]]Rank {0}
|
||||
Herbalism.Ability.FD=Boeren Dieet: [[YELLOW]]Rank {0}
|
||||
Herbalism.Ability.GTh=[[GREEN]]**GROEN DUIMPJE**
|
||||
Herbalism.Ability.Lower=[[GRAY]]**JE STOP JE ZEIS WEER WEG**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**JE HOUDT JE ZEIS GEREED**
|
||||
@ -94,9 +94,9 @@ Herbalism.Listener=Kruidenkunde:
|
||||
Herbalism.SkillName=Kruidenkunde
|
||||
Herbalism.Skills.GTe.On=[[GREEN]]**GREEN TERRA GEACTIVEERD**
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]Je [[YELLOW]]Green Terra [[GREEN]]kracht is hersteld!
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]]Green Terra[[GREEN]]is uitgewerkt voor [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.Off=Green Terra[[GREEN]]is uitgewerkt voor [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]{0}[[DARK_GREEN]]heeft[[RED]]Groene Aarde[[DARK_GREEN]]gebruikt!
|
||||
Mining.Ability.Length=[[RED]]Super BrekerLengte: [[YELLOW]]{0}s
|
||||
Mining.Ability.Length=Super BrekerLengte: [[YELLOW]]{0}s
|
||||
Mining.Ability.Lower=[[GREEN]]**JE STOP JE PIKHOUWEL WEER WEG *
|
||||
Mining.Ability.Ready=[[GREEN]]**JE HOUDT JE PIKHOUWEEL GEREED**
|
||||
Mining.SubSkill.DoubleDrops.Name=Dubbele Drops
|
||||
@ -108,13 +108,13 @@ Mining.SubSkill.BiggerBombs.Description=Verhoogt TNT explosie radius
|
||||
Mining.SubSkill.DemolitionsExpertise.Description=Vermindert schade door TNT explosies
|
||||
Mining.Listener=Mijnbouw:
|
||||
Mining.SkillName=MIJNBOUW
|
||||
Mining.Skills.SuperBreaker.Off=[[RED]] ** Super Breaker is uitgewerkt **
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[RED]]Super Breker [[GREEN]]is uitgewerkt voor [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Off= ** Super Breaker is uitgewerkt **
|
||||
Mining.Skills.SuperBreaker.Other.Off=Super Breker [[GREEN]]is uitgewerkt voor [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]Je[[YELLOW]]Super Breeker [[GREEN]]kracht is hersteld!
|
||||
Mining.Skillup=[[YELLOW]]Mijn ervaring toegenomen met {0}. Totaal: ({1})
|
||||
Mining.Skillup=Mijn ervaring toegenomen met {0}. Totaal: ({1})
|
||||
Mining.Blast.Boom=[[GRAY]]**BOEM**
|
||||
Mining.Blast.Radius.Increase=[[RED]] Ontploffings Radius Verhoging: [[YELLOW]] {0}
|
||||
Mining.Blast.Rank=[[RED]]Explosie Mining: [[YELLOW]] Rang {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Radius.Increase= Ontploffings Radius Verhoging: [[YELLOW]] {0}
|
||||
Mining.Blast.Rank=Explosie Mining: [[YELLOW]] Rang {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Other.On=[[GREEN]]{0}[[DARK_GREEN]] heeft [[RED]] Blast Mining![DARK_GREEN] gebruikt
|
||||
Mining.Blast.Refresh=[[GREEN]]Je [[YELLOW]]explosie mijn [[GREEN]]kracht is hersteld!
|
||||
Repair.SubSkill.Repair.Name=Repareren
|
||||
@ -142,15 +142,15 @@ Repair.Skills.AdeptIron=[[DARK_RED]]Je bent niet vaardig genoeg om Ijzer te repa
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]Je bent nog niet sterk genoeg om steen te repareren.
|
||||
Repair.Skills.FeltEasy=[[GRAY]]Dat voelde makkelijk.
|
||||
Repair.Skills.FullDurability=[[GRIJS]] Dat is bij volledige duurzaamheid.
|
||||
Repair.Skillup=[[YELLOW]]Repareer ervaring toegenomen met {0}. Totaal: ({1})
|
||||
Repair.Skillup=Repareer ervaring toegenomen met {0}. Totaal: ({1})
|
||||
Repair.Pretty.Name=Repareer
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]AF Downgrade Kans: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]] Mystiek Smeden Succes Percentage: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Fail=[[RED]]Mysterieuze kracht heeft het voorwerp voorgoed verlaten.
|
||||
Repair.Arcane.Lost=[[RED]]Je hebt niet genoeg ervaring om de betoveringen te behouden
|
||||
Repair.Arcane.Fail=Mysterieuze kracht heeft het voorwerp voorgoed verlaten.
|
||||
Repair.Arcane.Lost=Je hebt niet genoeg ervaring om de betoveringen te behouden
|
||||
Swords.Ability.Lower=[[GREEN]]**JE STOP JE ZWAARD WEER WEG**
|
||||
Swords.Ability.Ready=[[GREEN]]**JIJ HOUD JOU WAPEN GEREED**
|
||||
Swords.Combat.Bleed.Chance=[[RED]]Bloed Kans: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Chance=Bloed Kans: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleeding.Started=[[DARK_RED]] Jij bloedt!
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]Het bloeden is [[GREEN]]Gestopt[[GRAY]]!
|
||||
Swords.Combat.Bleeding=[[GREEN]]**VIJAND BLOED**
|
||||
@ -165,13 +165,13 @@ Swords.Effect.5={0} Tick Bloeden
|
||||
Swords.SubSkill.Bleed.Name=Bloeden
|
||||
Swords.Listener=Zwaarden:
|
||||
Swords.SkillName=ZWAARDEN
|
||||
Swords.Skills.SS.Off=[[RED]]**Serrated Strikes is uitgewerkt**
|
||||
Swords.Skills.SS.Off=**Serrated Strikes is uitgewerkt**
|
||||
Swords.Skills.SS.On=[[GREEN]]**GEKARTELDE SLAG GEACTIVEERD**
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]Je [[YELLOW]]Gekarteld Slag [[GREEN]] kracht is hersteld!
|
||||
Swords.Skills.SS.Other.Off=[[RED]]Gekartelde Slag[[GREEN]] is uitgewerkt voor [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.Off=Gekartelde Slag[[GREEN]] is uitgewerkt voor [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] heeft [[RED]]Gekartelde Slag[[DARK_GREEN]]gebruikt!
|
||||
Swords.Skillup=[[YELLOW]]Zwaarden ervaring toegenomen met {0}. Totaal: ({1})
|
||||
Swords.SS.Length=[[RED]]Serrated Strikes Lengte: [[YELLOW]]{0}s
|
||||
Swords.Skillup=Zwaarden ervaring toegenomen met {0}. Totaal: ({1})
|
||||
Swords.SS.Length=Serrated Strikes Lengte: [[YELLOW]]{0}s
|
||||
Taming.Ability.Bonus.0=Omgevings bewust
|
||||
Taming.Ability.Bonus.1=Wolven vermijden gevaar
|
||||
Taming.Ability.Bonus.2=Dikke Vacht
|
||||
@ -195,11 +195,11 @@ Taming.SubSkill.ThickFur.Name=Dikke Vacht
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]Jouw wolf dribbelt terug naar je...
|
||||
Taming.Listener=Temmen:
|
||||
Taming.SkillName=TEMMEN
|
||||
Taming.Skillup=[[YELLOW]]Temmings ervaring toegenomen met {0}. Totaal ({1})
|
||||
Taming.Skillup=Temmings ervaring toegenomen met {0}. Totaal ({1})
|
||||
Taming.Summon.Complete=[[GREEN]]Oproepen voltooid
|
||||
Taming.Summon.Fail.Ocelot=[[RED]]Je hebt te veel ocelots in de buurt om nog meer op te roepen.
|
||||
Taming.Summon.Fail.Wolf=[[RED]]Je hebt te veel wolven in de buurt om nog meer op te roepen.
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]Razernij Lengte: [[YELLOW]]{0}s
|
||||
Taming.Summon.Fail.Ocelot=Je hebt te veel ocelots in de buurt om nog meer op te roepen.
|
||||
Taming.Summon.Fail.Wolf=Je hebt te veel wolven in de buurt om nog meer op te roepen.
|
||||
Unarmed.Ability.Berserk.Length=Razernij Lengte: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Lower=[[GRAY]]**JE STOP JE HAND WEER WEG**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**JE HOUDT JE HAND GEREED**
|
||||
Unarmed.SubSkill.Berserk.Name=Razernij (KRACHT)
|
||||
@ -211,14 +211,14 @@ Unarmed.SubSkill.IronGrip.Name=Ijzeren Grip
|
||||
Unarmed.SubSkill.IronGrip.Description=Voorkomt dat je ontwapend wordt
|
||||
Unarmed.Listener=Ongewapend:
|
||||
Unarmed.SkillName=Ongewapend
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**Razernij is uitgewerkt**
|
||||
Unarmed.Skills.Berserk.Off=**Razernij is uitgewerkt**
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**RAZERNIJ GEACTIVEERD**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]]Razernij [[GREEN]]is uitgewerkt voor [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.Off=Razernij [[GREEN]]is uitgewerkt voor [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] heeft [[RED]]Razernij [[DARK_GREEN]]gebruikt!
|
||||
Unarmed.Skills.Berserk.Refresh=[[GREEN]]Je [[YELLOW]]Razernij [[GREEN]]kracht is hersteld!
|
||||
Woodcutting.Ability.0=Bladblazer
|
||||
Woodcutting.Ability.1=Bladeren wegblazen
|
||||
Woodcutting.Ability.Length=[[RED]] Boom Feller Lengte: [[GEEL]]{0}s
|
||||
Woodcutting.Ability.Length= Boom Feller Lengte: [[GEEL]]{0}s
|
||||
Woodcutting.Ability.Locked.0=Vergrendeld totdat {0}+ VAARDIGHEID (BLADBLAZER)
|
||||
Woodcutting.SubSkill.TreeFeller.Name=Tree Feller
|
||||
Woodcutting.SubSkill.TreeFeller.Description=Laat bomen ontploffen
|
||||
@ -228,81 +228,81 @@ Woodcutting.SubSkill.HarvestLumber.Name=Dubbele drops
|
||||
Woodcutting.SubSkill.HarvestLumber.Description=Het dubbele van de normale buit
|
||||
Woodcutting.Listener=Houthakken:
|
||||
Woodcutting.SkillName=Houthakken
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]] ** Boom Feller is uitgewerkt **
|
||||
Woodcutting.Skills.TreeFeller.Off= ** Boom Feller is uitgewerkt **
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**BOOM FELLER GEACTIVEERD**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]Je [[YELLOW]]Boom Feller [[GREEN]]kracht is hersteld!
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]] Boom Feller [[GREEN]] is uitgewerkt voor [[GEEL]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.Off= Boom Feller [[GREEN]] is uitgewerkt voor [[GEEL]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK)GREEN]]heeft[[RED]]Tree Feller[[DARK_GREEN]]gebruikt!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]JOU BIJL SPLINTERT IN DUIZENDEN STUKJES!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]Die boom is te groot!
|
||||
Woodcutting.Skillup=[[YELLOW]]Houthakken toegenomen met {0}. Totaal ({1})
|
||||
Woodcutting.Skills.TreeFeller.Splinter=JOU BIJL SPLINTERT IN DUIZENDEN STUKJES!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=Die boom is te groot!
|
||||
Woodcutting.Skillup=Houthakken toegenomen met {0}. Totaal ({1})
|
||||
Ability.Generic.Refresh=[[GREEN]]**ABILITIES VERVEST!**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
Combat.ArrowDeflect=[[WHITE]]**PIJL AFGEWEERD**
|
||||
Combat.BeastLore=[[GREEN]]**WOLFINSPECTIE**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]Levens ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]Eigenaar ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**GESTOLD BLOED**
|
||||
Combat.StruckByGore=[[RED]]**VAST DOOR GESTOLD BLOED**
|
||||
Combat.StruckByGore=**VAST DOOR GESTOLD BLOED**
|
||||
Combat.TargetDazed=Doelwit was [[DARK_RED]]versuft
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]Je raakte Fuzzy aan. Je voelt je duizelig.
|
||||
Commands.AdminChat.Off=Alleen Admin gesprek[[RED]]Uit
|
||||
Commands.AdminChat.On=Alleen Admin gesprek[[RED]]Aan
|
||||
Commands.AdminToggle=[[RED]]- Zet Admin Chat aan/uit
|
||||
Commands.AdminToggle=- Zet Admin Chat aan/uit
|
||||
Commands.Chat.Console=*Console*
|
||||
Commands.Disabled=[[RED]]Deze opdracht is gedeactiveerd.
|
||||
Commands.DoesNotExist=[[RED]]Speler bestaat niet in de database!
|
||||
Commands.GodMode.Disabled=[[YELLOW]]mcMMO GodModus Uitgeschakeld
|
||||
Commands.GodMode.Enabled=[[YELLOW]]mcMMO Godmode ag zet het tog uit...
|
||||
Commands.Disabled=Deze opdracht is gedeactiveerd.
|
||||
Commands.DoesNotExist=Speler bestaat niet in de database!
|
||||
Commands.GodMode.Disabled=mcMMO GodModus Uitgeschakeld
|
||||
Commands.GodMode.Enabled=mcMMO Godmode ag zet het tog uit...
|
||||
Commands.GodMode.Forbidden=[mcMMO] God Modus is niet toegestaan in deze wereld (Zie Permissions)
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]Uitnodiging geacepteerd. Jij hebt de groep {0} betreden
|
||||
Commands.Invite.Success=[[GREEN]]Uitnodiging verstuurd!
|
||||
Commands.mcc.Header=[[RED]]---[][[YELLOW]]mcMMO Commando\'s[[RED]][]---
|
||||
Commands.mcgod=[[RED]]- GodModus Schakelen
|
||||
Commands.mcrank.Player=[[RED]]DOELWIT: [[WHITE]]{0}
|
||||
Commands.mcc.Header=---[][[YELLOW]]mcMMO Commando\'s[[RED]][]---
|
||||
Commands.mcgod=- GodModus Schakelen
|
||||
Commands.mcrank.Player=DOELWIT: [[WHITE]]{0}
|
||||
Commands.mmoedit=[player] <Kracht> <Nieuwe waarde> [[RED]] - Pas doel aan
|
||||
Commands.mmoedit.Modified.1=[[GREEN]]Uw level in {0} is veranderd naar {1}
|
||||
Commands.mmoedit.Modified.2=[[RED]]{0} is aangepast voor {1}.
|
||||
Commands.mcconvert.Database.Same=[[RED]] Je makt al gebruik van de {0} database!
|
||||
Commands.mcconvert.Database.InvalidType=[[RED]] {0} is geen geldig soort database.
|
||||
Commands.ModDescription=[[RED]]- Lees instructie mod beschrijving
|
||||
Commands.mmoedit.Modified.2={0} is aangepast voor {1}.
|
||||
Commands.mcconvert.Database.Same= Je makt al gebruik van de {0} database!
|
||||
Commands.mcconvert.Database.InvalidType= {0} is geen geldig soort database.
|
||||
Commands.ModDescription=- Lees instructie mod beschrijving
|
||||
Commands.NoConsole=Deze commando wordt niet ondersteund vanuit de console.
|
||||
Commands.Other=[[GREEN]]--OVERIGE COMMANDS--
|
||||
Commands.Party.Header=[[RED]]-----[][[GREEN]]GROEP[[RED]][]-----
|
||||
Commands.Party.Header=-----[][[GREEN]]GROEP[[RED]][]-----
|
||||
Commands.Party.Status=[[DARK_GRAY]]NAAM: [[WHITE]]{0} {1}
|
||||
Commands.Party.ShareMode=[[DARK_GRAY]]DEEL MODUS:
|
||||
Commands.Party.ExpShare=[[GRAY]]EXP [[DARK_AQUA]]({0})
|
||||
Commands.Party.Accept=[[RED]]- Accepteer groep uitnodiging
|
||||
Commands.Party.Accept=- Accepteer groep uitnodiging
|
||||
Commands.Party.Chat.Off=Groep\'s Chat [[RED]]Uit
|
||||
Commands.Party.Chat.On=Groep\'s Chat [[GREEN]]Aan
|
||||
Commands.Party.Commands=[[GREEN]]--GROEP COMMANDOS--
|
||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]Jij hebt een groep uitnodiging ontvangen voor {0} van {1}
|
||||
Commands.Party.Invite=[[RED]]- Verstuur groepsuitnodiging
|
||||
Commands.Party.Invite.0=ALERT: [[GREEN]]Jij hebt een groep uitnodiging ontvangen voor {0} van {1}
|
||||
Commands.Party.Invite=- Verstuur groepsuitnodiging
|
||||
Commands.Party.Join=[[GRAY]]heeft zich aangesloten bij de groep: {0}
|
||||
Commands.Party.Create=[[GRAY]]Groep aangemaakt: {0}
|
||||
Commands.Party.Rename=[[GRAY]]Groep\'s naan veranderd naar: [[WHITE]]{0}
|
||||
Commands.Party.ToggleShareCategory=[[GRAY]]Groep item delen in [[GOLD]]{0} [[GRAY]]is nu [[DARK_AQUA]]{1}
|
||||
Commands.Party.AlreadyExists=[[DARK_RED]]Groep {0} bestaat al!
|
||||
Commands.Party.Kick=[[RED]]Je bent verwijderd uit de groep {0}!
|
||||
Commands.Party.Leave=[[RED]]Je hebt de groep verlaten
|
||||
Commands.Party.Members.Header=[[RED]]-----[][[GREEN]]LEDEN[[RED]][]-----
|
||||
Commands.Party.None=[[RED]]Je bent niet in een groep.
|
||||
Commands.Party.Quit=[[RED]]- Verlaat je huidige groep
|
||||
Commands.Party.Kick=Je bent verwijderd uit de groep {0}!
|
||||
Commands.Party.Leave=Je hebt de groep verlaten
|
||||
Commands.Party.Members.Header=-----[][[GREEN]]LEDEN[[RED]][]-----
|
||||
Commands.Party.None=Je bent niet in een groep.
|
||||
Commands.Party.Quit=- Verlaat je huidige groep
|
||||
Commands.Party.Teleport=<player> [[RED]]- Teleport naar een groepslid
|
||||
Commands.Party.Toggle=[[RED]]- Zet Party Chat aan/uit
|
||||
Commands.Party.1=[[RED]]- Maak een nieuwe groep
|
||||
Commands.Party.2=[[RED]]- Ga bij een spelers groep
|
||||
Commands.ptp.NoRequests=[[RED]] Je hebt geen teleporteren aanvragen op dit moment
|
||||
Commands.ptp.RequestExpired=[[RED]]Groep\'s teleport verzoek is verlopen!
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO[[BLUE]] Kracht Level [[YELLOW]]Leiderbord--
|
||||
Commands.Party.Toggle=- Zet Party Chat aan/uit
|
||||
Commands.Party.1=- Maak een nieuwe groep
|
||||
Commands.Party.2=- Ga bij een spelers groep
|
||||
Commands.ptp.NoRequests= Je hebt geen teleporteren aanvragen op dit moment
|
||||
Commands.ptp.RequestExpired=Groep\'s teleport verzoek is verlopen!
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO[[BLUE]] Kracht Level [[YELLOW]]Leiderbord--
|
||||
Commands.PowerLevel=[[DARK_RED]]KRACHT LEVEL: [[GREEN]]{0}
|
||||
Commands.Reset=[[RED]]Reset een niveau level naar 0
|
||||
Commands.Skill.Invalid=[[RED]] Dat is geen geldig skillname!
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--mcMMO [[BLUE]]{0}[[YELLOW]] Ranglijst --
|
||||
Commands.Reset=Reset een niveau level naar 0
|
||||
Commands.Skill.Invalid= Dat is geen geldig skillname!
|
||||
Commands.Skill.Leaderboard=--mcMMO [[BLUE]]{0}[[YELLOW]] Ranglijst --
|
||||
Commands.Stats.Self=Je status
|
||||
Commands.Stats=[[RED]]- Laat je mcMMO statussen zien
|
||||
Commands.ToggleAbility=[[RED]] - Toggle Kracht activering met rechts klikken
|
||||
Commands.Stats=- Laat je mcMMO statussen zien
|
||||
Commands.ToggleAbility= - Toggle Kracht activering met rechts klikken
|
||||
Commands.Usage.Level=niveau
|
||||
Commands.Usage.Message=bericht
|
||||
Commands.Usage.PartyName=naam
|
||||
@ -313,36 +313,36 @@ Commands.Usage.XP=xp
|
||||
mcMMO.NoPermission=[[DARK_RED]]Te wijning permissions.
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]als je geen toegang hebt tot een vermogen, wordt die hier niet getoont
|
||||
Party.Forbidden=[mcMMO] Groepen zijn niet toegestaan in deze wereld (zie Machtigingen)
|
||||
Party.Help.1=[[RED]]Maak een groep aan met [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.10=[[RED]]Gebruik [[DARK_AQUA]]{0} [[RED]]om XP delen met groepsleden te activeren
|
||||
Party.Help.1=Maak een groep aan met [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.10=Gebruik [[DARK_AQUA]]{0} [[RED]]om XP delen met groepsleden te activeren
|
||||
Party.InformedOnJoin={0} [[GREEN]]heeft zich aangesloten bij je groep
|
||||
Party.InformedOnQuit={0} [[GREEN]]heeft de groep verlaten
|
||||
Party.InvalidName=[[DARK_RED]]Dat is geen geldige groep\'s naam.
|
||||
Party.Invite.Self=[[RED]]Je kan jezelf niet uitnodigen!
|
||||
Party.IsLocked=[[RED]]Deze groep is al gesloten!
|
||||
Party.IsntLocked=[[RED]]Deze groep is niet gesloten!
|
||||
Party.Locked=[[RED]]De groep is gesloten, alleen de groepsleider kan spelers uitnodigen.
|
||||
Party.Invite.Self=Je kan jezelf niet uitnodigen!
|
||||
Party.IsLocked=Deze groep is al gesloten!
|
||||
Party.IsntLocked=Deze groep is niet gesloten!
|
||||
Party.Locked=De groep is gesloten, alleen de groepsleider kan spelers uitnodigen.
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} zit niet in jou groep
|
||||
Party.NotOwner=[[DARK_RED]]Jij bent niet de groepsleider.
|
||||
Party.Owner.New=[[GREEN]]{0} is de nieuwe groep leider.
|
||||
Party.Owner.NotLeader=[[DARK_RED]]Jij bent niet meer de groepsleider.
|
||||
Party.Owner.Player=[[GREEN]]Jij bent nu de groep eigenaar.
|
||||
Party.Password.None=[[RED]]Deze groep is vergrendeld met een wachtwoord. Voer het wachtwoord in om in deze groep te komen.
|
||||
Party.Password.Incorrect=[[RED]]Groeps- wachtwoord is incorrect.
|
||||
Party.Password.None=Deze groep is vergrendeld met een wachtwoord. Voer het wachtwoord in om in deze groep te komen.
|
||||
Party.Password.Incorrect=Groeps- wachtwoord is incorrect.
|
||||
Party.Password.Set=[[GREEN]]Groep wachtwoord veranderd in {0}
|
||||
Party.Password.Removed=[[GREEN]]Groepswachtwoord is verwijderd.
|
||||
Party.Player.Invalid=[[RED]]Dat is geen geldige speler.
|
||||
Party.Player.Invalid=Dat is geen geldige speler.
|
||||
Party.NotOnline=[[DARK_RED]]{0} is niet online!
|
||||
Party.Player.InSameParty=[[RED]]{0} zit al in uw groep!
|
||||
Party.Player.InSameParty={0} zit al in uw groep!
|
||||
Party.PlayerNotInParty=[[DARK_RED]]{0} zit niet in een groep
|
||||
Party.Specify=[[RED]]Je moet een groep invullen.
|
||||
Party.Specify=Je moet een groep invullen.
|
||||
Party.Teleport.Dead=[RED]Je kan niet naar een dode speler teleporteren.
|
||||
Party.Teleport.Hurt=[[RED]]Je hebt schade opgelopen in de afgelopen {0} seconden en je kan niet teleporten.
|
||||
Party.Teleport.Hurt=Je hebt schade opgelopen in de afgelopen {0} seconden en je kan niet teleporten.
|
||||
Party.Teleport.Player=[[GREEN]] Je hebt geteleporteerd naar {0}.
|
||||
Party.Teleport.Target=[[GREEN]]{0} is naar jou toe gedeporteerd.
|
||||
Party.Teleport.Disabled=[[RED]]{0} staat groeps-teleportaties niet toe.
|
||||
Party.Rename.Same=[[RED]]Dat is al de naam van uw groep!
|
||||
Party.Join.Self=[[RED]]Je kan niet meedoen met jezelf!
|
||||
Party.Teleport.Disabled={0} staat groeps-teleportaties niet toe.
|
||||
Party.Rename.Same=Dat is al de naam van uw groep!
|
||||
Party.Join.Self=Je kan niet meedoen met jezelf!
|
||||
Party.Unlocked=[[GRAY]]Groep is ontgrendeld
|
||||
Party.Disband=[[GRAY]] De partij werd ontbonden
|
||||
Party.Status.Locked=[[DARK_RED]](ALLEEN-UITNODIGING)
|
||||
@ -352,8 +352,8 @@ Party.ShareType.Item=ITEM
|
||||
Party.ShareMode.None=NIKS
|
||||
Party.ShareMode.Equal=GELIJK
|
||||
Party.ShareMode.Random=WILLEKEURIG
|
||||
Party.XpShare.Disabled=[[RED]]Groep experience delen in uitgeschakeld.
|
||||
Party.ItemShare.Disabled=[[RED]]Groeps item delen is uitgezet.
|
||||
Party.XpShare.Disabled=Groep experience delen in uitgeschakeld.
|
||||
Party.ItemShare.Disabled=Groeps item delen is uitgezet.
|
||||
Party.ItemShare.Category.Loot=Buit
|
||||
Party.ItemShare.Category.Mining=Mijnbouw
|
||||
Party.ItemShare.Category.Herbalism=Kruidenkunde
|
||||
@ -373,9 +373,9 @@ Commands.XPGain.Woodcutting=Bomen omhakken
|
||||
Commands.XPGain=[[DARK_GRAY]]XP GEWONNEN: [[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]Jou XP BALK is nu bevroren op {0}!
|
||||
Commands.xplock.unlocked=[[GOLD]]Jou XP BALK is nu[[GREEN]]ONTGRENDELD[[GOLD]]!
|
||||
Commands.xprate.over=[[RED]]mcMMO XP Verdubbeling Evenement is VOORBIJ!!
|
||||
Commands.xprate.proper.0=[[RED]]Juiste gebruiking om de XP snelheid te veranderen is /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=[[RED]]De juiste manier om de XP rate te herstellen is /xprate reset
|
||||
Commands.xprate.over=mcMMO XP Verdubbeling Evenement is VOORBIJ!!
|
||||
Commands.xprate.proper.0=Juiste gebruiking om de XP snelheid te veranderen is /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=De juiste manier om de XP rate te herstellen is /xprate reset
|
||||
Commands.xprate.started.0=[[GOLD]]XP EVENEMENT VOOR MCMMO IS BEGONNEN!
|
||||
XPRate.Event=[[GOLD]]mcMMO is momenteel in een XP verdubbeling evenement! XP verdubbeling is {0}x!
|
||||
Effects.Effects=EFFECTEN
|
||||
@ -388,7 +388,7 @@ Guides.Page.OutOfRange=Deze pagina bestaat niet, er zijn in totaal {0} pagina\'s
|
||||
Guides.Smelting.Section.0=Komt binnenkort...
|
||||
Inspect.OfflineStats=mcMMO statistieken voor offline-speler [[YELLOW]]{0}
|
||||
Inspect.Stats=[[GREEN]]mcMMO Statistieken voor [[YELLOW]]{0}
|
||||
Inspect.TooFar=[[RED]]Jij bent te ver weg om deze speler te inspecteren!
|
||||
Inspect.TooFar=Jij bent te ver weg om deze speler te inspecteren!
|
||||
Item.ChimaeraWing.Fail=**CHIMAERA VLEUGEL MISLUKT**
|
||||
Item.ChimaeraWing.Pass=**CHIMAERA VLEUGEL**
|
||||
Item.ChimaeraWing.Name=Chimaera Vleugel
|
||||
@ -397,7 +397,7 @@ Item.Injured.Wait=Je bent recent gewond geraakt en je moet wachter om dit te geb
|
||||
Teleport.Commencing=[[GRAY]]Teleport poging in [[GOLD]]({0}) [[GRAY]]seconden, Sta stil AUB...
|
||||
Skills.Disarmed=[[DARK_RED]]Je bent ontwapend!
|
||||
Skills.NeedMore=[[DARK_RED]]Jij hebt te weinig [[GRAY]]{0}
|
||||
Skills.TooTired=[[RED]]Jij bent te moe om die kracht opnieuw te gebruiken. [[YELLOW]]({0}s)
|
||||
Skills.TooTired=Jij bent te moe om die kracht opnieuw te gebruiken. [[YELLOW]]({0}s)
|
||||
Stats.Header.Combat=[[GOLD]]-=Strijd Ervaring=-
|
||||
Stats.Header.Gathering=[[GOLD]]-=VERZAMELAAR VAARDIGHEDEN=-
|
||||
Stats.Header.Misc=[[GOLD]]-=MISC ERVARING=-
|
||||
|
@ -1,6 +1,6 @@
|
||||
Acrobatics.Ability.Proc=[[GREEN]]**Mi\u0119kkie L\u0105dowanie**
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**Unikni\u0119to**
|
||||
Acrobatics.DodgeChance=[[RED]]Szansa na Unik: [[YELLOW]]{0}
|
||||
Acrobatics.DodgeChance=Szansa na Unik: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Name=Przewr\u00f3t
|
||||
Acrobatics.SubSkill.Roll.Description=Redukuje lub te\u017c ca\u0142kowicie usuwa obra\u017cenia od upadku
|
||||
Acrobatics.SubSkill.GracefulRoll.Name=\u0141agodny Przewr\u00f3t
|
||||
@ -8,14 +8,14 @@ Acrobatics.SubSkill.GracefulRoll.Description=Dwukrotnie bardziej efektywne niz z
|
||||
Acrobatics.SubSkill.Dodge.Name=Unik
|
||||
Acrobatics.SubSkill.Dodge.Description=Redukuje obra\u017cenia o po\u0142owe
|
||||
Acrobatics.Listener=Akrobatyka:
|
||||
Acrobatics.SubSkill.Roll.Chance=[[RED]]Szansa na Przewr\u00f3t: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=[[RED]]Szansa na \u0141agodny Przewr\u00f3t: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Chance=Szansa na Przewr\u00f3t: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=Szansa na \u0141agodny Przewr\u00f3t: [[YELLOW]]{0}
|
||||
Acrobatics.Roll.Text=**Przewr\u00f3t**
|
||||
Acrobatics.SkillName=AKROBATYKA
|
||||
Acrobatics.Skillup=[[YELLOW]]Umiejetnosc akrobatyka wzrosla o {0}. Razem ({1})
|
||||
Archery.Combat.DazeChance=[[RED]]Szansa na Oszolomienie: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=[[RED]]Szansa na Odzyskanie Strza\u0142: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=[[RED]]Dodatkowe Obra\u017cenia dla Umiej\u0119tno\u015bci: [[YELLOW]]{0}
|
||||
Acrobatics.Skillup=Umiejetnosc akrobatyka wzrosla o {0}. Razem ({1})
|
||||
Archery.Combat.DazeChance=Szansa na Oszolomienie: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=Szansa na Odzyskanie Strza\u0142: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=Dodatkowe Obra\u017cenia dla Umiej\u0119tno\u015bci: [[YELLOW]]{0}
|
||||
Archery.SubSkill.SkillShot.Name=Umiej\u0119tno\u015b\u0107 Aktywna
|
||||
Archery.SubSkill.SkillShot.Description=Zwi\u0119ksza obra\u017cenia zadane z \u0142uku
|
||||
Archery.SubSkill.Daze.Name=Oszo\u0142omienie
|
||||
@ -24,7 +24,7 @@ Archery.SubSkill.ArrowRetrieval.Name=Odzyskiwanie Strza\u0142
|
||||
Archery.SubSkill.ArrowRetrieval.Description=Szansa na wyci\u0105gni\u0119cie strza\u0142 z martwego cia\u0142a
|
||||
Archery.Listener=Lucznictwo
|
||||
Archery.SkillName=LUCZNICTWO
|
||||
Archery.Skillup=[[YELLOW]]Umiejetnosc lucznictwo wzrosla o {0}. Razem ({1})
|
||||
Archery.Skillup=Umiejetnosc lucznictwo wzrosla o {0}. Razem ({1})
|
||||
Axes.Ability.Bonus.0=Mistrzostwo pos\u0142ugiwania si\u0119 siekier\u0105
|
||||
Axes.Ability.Bonus.1={0} Bonusowych obra\u017ce\u0144
|
||||
Axes.Ability.Bonus.2=Wstrz\u0105s od Zbroi
|
||||
@ -34,11 +34,11 @@ Axes.Ability.Bonus.5=Zadaje {0} dodatkowych obra\u017ce\u0144 dla nieopancerzony
|
||||
Axes.Ability.Lower=[[GRAY]]**CHOWASZ SIEKIERE**
|
||||
Axes.Ability.Ready=[[GREEN]]**PRZYGOTOWUJESZ SWOJ\u0104 SIEKIERE**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]Trafiono cie krytycznie!
|
||||
Axes.Combat.CritChance=[[RED]]Szansa na Trafienie Krytyczne: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=[[RED]]TRAFIENIE KRYTYCZNE!
|
||||
Axes.Combat.CritChance=Szansa na Trafienie Krytyczne: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=TRAFIENIE KRYTYCZNE!
|
||||
Axes.Combat.GI.Proc=[[GREEN]]**UDERZONO Z WIELK\u0104 MOC\u0104**
|
||||
Axes.Combat.GI.Struck=[[RED]]TRAFIENIE KRYTYCZNE!
|
||||
Axes.Combat.SS.Length=[[RED]]D\u0142ugo\u015bc \u0141amacza Czaszki: [[YELLOW]]{0}s
|
||||
Axes.Combat.GI.Struck=TRAFIENIE KRYTYCZNE!
|
||||
Axes.Combat.SS.Length=D\u0142ugo\u015bc \u0141amacza Czaszki: [[YELLOW]]{0}s
|
||||
Axes.SubSkill.SkullSplitter.Name=\u0141amacz Czaszek
|
||||
Axes.SubSkill.SkullSplitter.Description=Zadaje obra\u017cenia obszarowe
|
||||
Axes.SubSkill.CriticalStrikes.Name=Krytyczne Uderzenia
|
||||
@ -51,36 +51,36 @@ Axes.SubSkill.GreaterImpact.Name=Trafienie Krytyczne
|
||||
Axes.SubSkill.GreaterImpact.Description=Zadaje dodatkowe obra\u017cenia nieopancerzonym celom
|
||||
Axes.Listener=Siekiery:
|
||||
Axes.SkillName=TOPORY
|
||||
Axes.Skills.SS.Off=[[RED]]**\u0141amacz Czaszek si\u0119 sko\u0144czy\u0142**
|
||||
Axes.Skills.SS.Off=**\u0141amacz Czaszek si\u0119 sko\u0144czy\u0142**
|
||||
Axes.Skills.SS.On=[[GREEN]]**\u0141amacz Czaszek AKTYWOWANY**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]Twoja zdolno\u015b\u0107 [[YELLOW]]\u0141amacz Czaszek [[GREEN]]jest ju\u017c dost\u0119pna!
|
||||
Axes.Skills.SS.Other.Off=[[RED]]\u0141amacz Czaszek[[GREEN]] si\u0119 sko\u0144czy\u0142 [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.Off=\u0141amacz Czaszek[[GREEN]] si\u0119 sko\u0144czy\u0142 [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] u\u017cy\u0142 [[RED]]\u0141amacza Czaszki!
|
||||
Axes.Skillup=[[YELLOW]]Umiej\u0119tno\u015b\u0107 \u015bcinania wzros\u0142a o {0}. Razem ({1})
|
||||
Axes.Skillup=Umiej\u0119tno\u015b\u0107 \u015bcinania wzros\u0142a o {0}. Razem ({1})
|
||||
Excavation.Ability.Lower=[[GRAY]]**CHOWASZ \u0141OPAT\u0118**
|
||||
Excavation.Ability.Ready=[[GREEN]]**PRZYGOTOWUJESZ SWOJ\u0104 \u0141OPAT\u0118**
|
||||
Excavation.SubSkill.GigaDrillBreaker.Name=Mia\u017cdz\u0105ce Wiert\u0142o
|
||||
Excavation.SubSkill.GigaDrillBreaker.Description=3x Szansa na znalezienie przedmiotu, 3x mno\u017cnik zdobywania do\u015bwiadczenia, +pr\u0119dko\u015b\u0107
|
||||
Excavation.SubSkill.TreasureHunter.Name=Lowca Skarbow
|
||||
Excavation.SubSkill.TreasureHunter.Description=Umiej\u0119tno\u015b\u0107 wykopywania skarb\u00f3w.
|
||||
Excavation.Effect.Length=[[RED]]D\u0142ugo\u015bc Mia\u017cdz\u0105cego Wiert\u0142a: [[YELLOW]]{0}s
|
||||
Excavation.Effect.Length=D\u0142ugo\u015bc Mia\u017cdz\u0105cego Wiert\u0142a: [[YELLOW]]{0}s
|
||||
Excavation.Listener=Wykopaliska:
|
||||
Excavation.SkillName=KOPANIE
|
||||
Excavation.Skills.GigaDrillBreaker.Off=[[RED]]**Mia\u017cdz\u0105ce Wiert\u0142o si\u0119 sko\u0144czy\u0142o**
|
||||
Excavation.Skills.GigaDrillBreaker.Off=**Mia\u017cdz\u0105ce Wiert\u0142o si\u0119 sko\u0144czy\u0142o**
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**MIA\u017bDZ\u0104CE WIERT\u0141O AKTYWOWANE**
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]Twoja zdolno\u015b\u0107 [[YELLOW]]Mia\u017cdz\u0105ce Wiert\u0142o [[GREEN]]jest ju\u017c dost\u0119pna!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=[[RED]]Mia\u017cdz\u0105ce Wiert\u0142o[[GREEN]] si\u0119 sko\u0144czy\u0142o [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=Mia\u017cdz\u0105ce Wiert\u0142o[[GREEN]] si\u0119 sko\u0144czy\u0142o [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] u\u017cy\u0142 [[RED]]Mia\u017cdz\u0105ce Wiert\u0142o!
|
||||
Excavation.Skillup=[[YELLOW]]Umiej\u0119tno\u015b\u0107 wykopalisk wzros\u0142a o {0}. Razem({1})
|
||||
Fishing.Ability.Chance=[[RED]]Szansa na zlapanie ryby: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=[[RED]]Magiczny \u0141owca: [[GRAY]] **Ulepsza si\u0119 wraz z rang\u0105 Poszukiwacza Skarb\u00f3w**
|
||||
Excavation.Skillup=Umiej\u0119tno\u015b\u0107 wykopalisk wzros\u0142a o {0}. Razem({1})
|
||||
Fishing.Ability.Chance=Szansa na zlapanie ryby: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=Magiczny \u0141owca: [[GRAY]] **Ulepsza si\u0119 wraz z rang\u0105 Poszukiwacza Skarb\u00f3w**
|
||||
Fishing.Ability.Locked.0=ZABLOKOWANY DO POZIOMU {0}+ SKILL
|
||||
Fishing.Ability.Locked.1=DOSTEPNE OD POZIOMU {0}+ (LODOWE LOWIENIE RYB)
|
||||
Fishing.Ability.Rank=[[RED]]Ranga lowienia skarbow: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.MagicRate=[[RED]]Szanse na Magicznego \u0141owc\u0119: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=[[RED]]Szansa na Wstrz\u0105s: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=[[RED]]Lodowe lowienie ryb: Idz lowic ryby w lodzie
|
||||
Fishing.Ability.FD=[[RED]]Dieta Rybaka: [[YELLOW]]Ranga {0}
|
||||
Fishing.Ability.Rank=Ranga lowienia skarbow: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.MagicRate=Szanse na Magicznego \u0141owc\u0119: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=Szansa na Wstrz\u0105s: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=Lodowe lowienie ryb: Idz lowic ryby w lodzie
|
||||
Fishing.Ability.FD=Dieta Rybaka: [[YELLOW]]Ranga {0}
|
||||
Fishing.SubSkill.TreasureHunter.Name=Lowca Skarbow (Pasywna)
|
||||
Fishing.SubSkill.TreasureHunter.Description=\u0141owi\u0107 r\u00f3\u017cne obiekty
|
||||
Fishing.SubSkill.MagicHunter.Name=Magiczny Lowca
|
||||
@ -96,16 +96,16 @@ Fishing.Chance.Raining=[[BLUE]] Bonus od Deszczu
|
||||
Fishing.Listener=Rybactwo
|
||||
Fishing.Ability.TH.MagicFound=[[GRAY]]Wyczuwasz w pobli\u017cu \u017ar\u00f3d\u0142o magii...
|
||||
Fishing.SkillName=RYBACTWO
|
||||
Fishing.Skillup=[[YELLOW]]Umiej\u0119tno\u015b\u0107 \u0142owienia wzros\u0142a o {0}. Razem ({1})
|
||||
Herbalism.Ability.DoubleDropChance=[[RED]]Szansa na Podw\u00f3jny Drop: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=[[RED]]Dieta Farmera: [[YELLOW]]Poziom {0}
|
||||
Herbalism.Ability.GTe.Length=[[RED]]D\u0142ugo\u015b\u0107 ?Green Terra?: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=[[RED]]Potrzebujesz wi\u0119cej nasion aby u\u017cy\u0107 Zielonego \u017bycia.
|
||||
Herbalism.Ability.GTh.Chance=[[RED]]Szansa na Zielony Palec: [[YELLOW]]{0}
|
||||
Fishing.Skillup=Umiej\u0119tno\u015b\u0107 \u0142owienia wzros\u0142a o {0}. Razem ({1})
|
||||
Herbalism.Ability.DoubleDropChance=Szansa na Podw\u00f3jny Drop: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=Dieta Farmera: [[YELLOW]]Poziom {0}
|
||||
Herbalism.Ability.GTe.Length=D\u0142ugo\u015b\u0107 ?Green Terra?: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=Potrzebujesz wi\u0119cej nasion aby u\u017cy\u0107 Zielonego \u017bycia.
|
||||
Herbalism.Ability.GTh.Chance=Szansa na Zielony Palec: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=[[GREEN]]**ZIELONY PALEC SI\u0118 NIE UDA\u0141**
|
||||
Herbalism.Ability.GTh.Stage=[[RED]]Etap Zielonego Dotyku: [[YELLOW]] Ro\u015bliny rosn\u0105 w etapie {0}
|
||||
Herbalism.Ability.GTh.Stage=Etap Zielonego Dotyku: [[YELLOW]] Ro\u015bliny rosn\u0105 w etapie {0}
|
||||
Herbalism.Ability.GTh=[[GREEN]]**ZIELONY PALEC**
|
||||
Herbalism.Ability.HylianLuck=[[RED]]Szansa na Szczescie Hylian: [[YELLOW]]{0}
|
||||
Herbalism.Ability.HylianLuck=Szansa na Szczescie Hylian: [[YELLOW]]{0}
|
||||
Herbalism.Ability.Lower=[[GRAY]]**CHOWASZ SWOJ\u0104 MOTYKE**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**PRZYGOTOWUJESZ MOTYKE**
|
||||
Herbalism.SubSkill.GreenTerra.Name=Zielone \u017bycie (ZDOLNO\u015a\u0106)
|
||||
@ -124,10 +124,10 @@ Herbalism.Listener=Zielarstwo
|
||||
Herbalism.SkillName=ZIELARSTWO
|
||||
Herbalism.Skills.GTe.On=[[GREEN]]**?GREEN TERRA? AKTYWOWANA**
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]Twoja zdolno\u015b\u0107 [[YELLOW]]?Green Terra?[[GREEN]]jest ju\u017c gotowa!
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]]?Green Terra?[[GREEN]] si\u0119 sko\u0144czy\u0142o [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.Off=?Green Terra?[[GREEN]] si\u0119 sko\u0144czy\u0142o [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]{0}[[DARK_GREEN]] u\u017cy\u0142 [[RED]]?Green Terra?!
|
||||
Herbalism.Skillup=[[YELLOW]]Umiej\u0119tno\u015b\u0107 zielarstwa wzros\u0142a o {0}. Ca\u0142kowicie ({1})
|
||||
Mining.Ability.Length=[[RED]]D\u0142ugo\u015bc Super Kopacza: [[YELLOW]]{0}s
|
||||
Herbalism.Skillup=Umiej\u0119tno\u015b\u0107 zielarstwa wzros\u0142a o {0}. Ca\u0142kowicie ({1})
|
||||
Mining.Ability.Length=D\u0142ugo\u015bc Super Kopacza: [[YELLOW]]{0}s
|
||||
Mining.Ability.Locked.0=ZABLOKOWANE DO POZIOMU {0}+ SKILL
|
||||
Mining.Ability.Locked.1=ZABLOKOWANE DO POZIOMU {0}+ SKILL
|
||||
Mining.Ability.Locked.2=ZABLOKOWANE DO POZIOMU {0}+ SKILL
|
||||
@ -143,19 +143,19 @@ Mining.SubSkill.BiggerBombs.Name=Wieksze bomby
|
||||
Mining.SubSkill.BiggerBombs.Description=Zwieksza zasieg wybuchu TNT
|
||||
Mining.SubSkill.DemolitionsExpertise.Name=Mistrzostwo w pos\u0142ugiwaniu si\u0119 materia\u0142ami wybuchowymi
|
||||
Mining.SubSkill.DemolitionsExpertise.Description=Zmniejsza obrazenia od explozji TNT
|
||||
Mining.Effect.Decrease=[[RED]]Redukcja Obra\u017ce\u0144 od Materia\u0142\u00f3w Wybuchowych: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=[[RED]]Szansa na Podw\u00f3jny Drop: [[YELLOW]]{0}
|
||||
Mining.Effect.Decrease=Redukcja Obra\u017ce\u0144 od Materia\u0142\u00f3w Wybuchowych: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=Szansa na Podw\u00f3jny Drop: [[YELLOW]]{0}
|
||||
Mining.Listener=G\u00f3rnictwo
|
||||
Mining.SkillName=GORNICTWO
|
||||
Mining.Skills.SuperBreaker.Off=[[RED]]**Super \u0141amacz si\u0119 sko\u0144czy\u0142**
|
||||
Mining.Skills.SuperBreaker.Off=**Super \u0141amacz si\u0119 sko\u0144czy\u0142**
|
||||
Mining.Skills.SuperBreaker.On=[[GREEN]]**SUPER \u0141AMACZ AKTYWOWANY**
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[RED]]Super Kopacz[[GREEN]] si\u0119 sko\u0144czy\u0142 [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.Off=Super Kopacz[[GREEN]] si\u0119 sko\u0144czy\u0142 [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] u\u017cy\u0142 [[RED]]Super Kopacza!
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]Twoja zdolno\u015b\u0107 [[YELLOW]]Super \u0141amacz [[GREEN]]jest ju\u017c dost\u0119pna!
|
||||
Mining.Skillup=[[YELLOW]]Umiejetnosc Gornictwa wzrosla o {0}. Calkowicie ({1})
|
||||
Mining.Skillup=Umiejetnosc Gornictwa wzrosla o {0}. Calkowicie ({1})
|
||||
Mining.Blast.Boom=[[GRAY]]**BOOM**
|
||||
Mining.Blast.Radius.Increase=[[RED]]Zasi\u0119g zwi\u0119kszony o: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=[[RED]]Szybki Kopacz: [[YELLOW]] Ranga {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Radius.Increase=Zasi\u0119g zwi\u0119kszony o: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=Szybki Kopacz: [[YELLOW]] Ranga {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Other.On=[[GREEN]]{0}[[DARK_GREEN]] u\u017cy\u0142 [[RED]]Szybkiego Kopacza!
|
||||
Mining.Blast.Refresh=[[GREEN]]Twoja zdolno\u015b\u0107 [[YELLOW]]B\u0142yskawiczny Kopacz [[GREEN]]jest ju\u017c dost\u0119pna!
|
||||
Repair.SubSkill.Repair.Name=Naprawa
|
||||
@ -186,33 +186,33 @@ Repair.Skills.AdeptDiamond=[[DARK_RED]]Masz za niski poziom aby naprawia\u0107 d
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]Masz za niski poziom aby naprawia\u0107 z\u0142oto.
|
||||
Repair.Skills.AdeptIron=[[DARK_RED]]Masz za niski poziom aby naprawia\u0107 \u017celazo.
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]Masz za niski poziom aby naprawi\u0107 kamie\u0144.
|
||||
Repair.Skills.Adept=[[RED]]Musisz mie\u0107 [[YELLOW]]{0}[[RED]] poziom \u017ceby naprawi\u0107 [[YELLOW]]{1}
|
||||
Repair.Skills.Adept=Musisz mie\u0107 [[YELLOW]]{0}[[RED]] poziom \u017ceby naprawi\u0107 [[YELLOW]]{1}
|
||||
Repair.Skills.FeltEasy=[[GRAY]]Bu\u0142ka z mas\u0142em.
|
||||
Repair.Skills.FullDurability=[[GRAY]]Ten przedmiot jest ju\u017c w pe\u0142ni sprawny.
|
||||
Repair.Skills.SalvageSuccess=[[GRAY]]Przedmiot Odzyskany!
|
||||
Repair.Skills.NotFullDurability=[[DARK_RED]]Nie mo\u017cesz odzyska\u0107 uszkodzonych przedmiot\u00f3w.
|
||||
Repair.Skills.Mastery=[[RED]]Mistrzostwo Napraw: [[YELLOW]] {0} dodatkowej wytrzyma\u0142o\u015bci dla przedmiot\u00f3w
|
||||
Repair.Skills.Mastery=Mistrzostwo Napraw: [[YELLOW]] {0} dodatkowej wytrzyma\u0142o\u015bci dla przedmiot\u00f3w
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]Nie mo\u017cesz naprawia\u0107 zestackowanych przedmiot\u00f3w.
|
||||
Repair.Skills.Super.Chance=[[RED]]Szansa Super Naprawy: [[YELLOW]]{0}
|
||||
Repair.Skillup=[[YELLOW]]Umiejetnosc naprawiania wzrosla o {0}. Razem ({1})
|
||||
Repair.Skills.Super.Chance=Szansa Super Naprawy: [[YELLOW]]{0}
|
||||
Repair.Skillup=Umiejetnosc naprawiania wzrosla o {0}. Razem ({1})
|
||||
Repair.Pretty.Name=Naprawa
|
||||
Salvage.Pretty.Name=Przetapianie
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]AF Szansa na zdegradowanie: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]AF Szanse na sukces: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Downgrade=[[RED]]Energia magiczna tego przedmiotu spad\u0142a.
|
||||
Repair.Arcane.Fail=[[RED]]Moc Arcane na zawsze opuscila przedmiot !
|
||||
Repair.Arcane.Lost=[[RED]]Nie posiada\u0142e\u015b wystarczaj\u0105co du\u017co do\u015bwiadczenia aby zatrzyma\u0107 ulepszenia.
|
||||
Repair.Arcane.Downgrade=Energia magiczna tego przedmiotu spad\u0142a.
|
||||
Repair.Arcane.Fail=Moc Arcane na zawsze opuscila przedmiot !
|
||||
Repair.Arcane.Lost=Nie posiada\u0142e\u015b wystarczaj\u0105co du\u017co do\u015bwiadczenia aby zatrzyma\u0107 ulepszenia.
|
||||
Repair.Arcane.Perfect=[[GREEN]]Nasyci\u0142e\u015b ten przedmiot magiczn\u0105 moc\u0105.
|
||||
Repair.Arcane.Rank=[[RED]]Kowalstwo Ezoteryczne: [[YELLOW]]Ranga {0}/4
|
||||
Repair.Arcane.Rank=Kowalstwo Ezoteryczne: [[YELLOW]]Ranga {0}/4
|
||||
Swords.Ability.Lower=[[GRAY]]**CHOWASZ SW\u00d3J MIECZ**
|
||||
Swords.Ability.Ready=[[GREEN]] **PODNIOSLES SWOJ MIECZ**
|
||||
Swords.Combat.Bleed.Chance=[[RED]]Szansa na Krwawienie: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=[[RED]]D\u0142ugo\u015bc Krwotoku: [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Chance=Szansa na Krwawienie: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=D\u0142ugo\u015bc Krwotoku: [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Note=[[GRAY]]NOTE: [[YELLOW]]1 tykni\u0119cie zdarza si\u0119 co 2 sekundy
|
||||
Swords.Combat.Bleeding.Started=[[DARK_RED]] Krwawisz!
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]Krwawienie [[GREEN]]usta\u0142o[[GRAY]]!
|
||||
Swords.Combat.Bleeding=[[GREEN]]**PRZECIWNIK KRAWI**
|
||||
Swords.Combat.Counter.Chance=[[RED]]Szansa na Kontratak: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Chance=Szansa na Kontratak: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Hit=[[DARK_RED]]Kontratak!
|
||||
Swords.Combat.Countered=[[GREEN]]**KONTR-ATAK**
|
||||
Swords.Combat.SS.Struck=[[DARK_RED]]Zosta\u0142e\u015b powalony przez Z\u0104BKOWANY ATAK!
|
||||
@ -225,13 +225,13 @@ Swords.SubSkill.Bleed.Name=Krwawienie
|
||||
Swords.SubSkill.Bleed.Description=Spowodowano krwawienie
|
||||
Swords.Listener=Miecze
|
||||
Swords.SkillName=MIECZE
|
||||
Swords.Skills.SS.Off=[[RED]]**Z\u0105bkowany Atak si\u0119 sko\u0144czy\u0142**
|
||||
Swords.Skills.SS.Off=**Z\u0105bkowany Atak si\u0119 sko\u0144czy\u0142**
|
||||
Swords.Skills.SS.On=[[GREEN]]**?Z\u0104BKOWANY? ATAK AKTYWOWANY**
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]Tw\u00f3j [[YELLOW]]Z\u0105bkowany Atak [[GREEN]]jest ju\u017c dost\u0119pny!
|
||||
Swords.Skills.SS.Other.Off=[[RED]]Z\u0105bkowany Atak[[GREEN]] si\u0119 sko\u0144czy\u0142 [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.Off=Z\u0105bkowany Atak[[GREEN]] si\u0119 sko\u0144czy\u0142 [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] u\u017cy\u0142 [[RED]]Z\u0105bkowanego Ciosu!
|
||||
Swords.Skillup=[[YELLOW]]Umiej\u0119tno\u015b\u0107 Pos\u0142ugiwania si\u0119 Mieczem wzros\u0142a o {0}. Ca\u0142kowicie ({1})
|
||||
Swords.SS.Length=[[RED]]D\u0142ugo\u015b\u0107 Z\u0105bkowanego Ataku: [[YELLOW]]{0}s
|
||||
Swords.Skillup=Umiej\u0119tno\u015b\u0107 Pos\u0142ugiwania si\u0119 Mieczem wzros\u0142a o {0}. Ca\u0142kowicie ({1})
|
||||
Swords.SS.Length=D\u0142ugo\u015b\u0107 Z\u0105bkowanego Ataku: [[YELLOW]]{0}s
|
||||
Taming.Ability.Bonus.0=Przyjazne dla \u015brodowiska
|
||||
Taming.Ability.Bonus.1=Wilki unikn\u0119\u0142y zagro\u017cenia
|
||||
Taming.Ability.Bonus.2=Grube Futro
|
||||
@ -248,7 +248,7 @@ Taming.Ability.Locked.1=ZABLOKOWANE DO POZIOMU {0}+ SKILL
|
||||
Taming.Ability.Locked.2=ZABLOKOWANE DO POZIOMU {0}+ SKILL
|
||||
Taming.Ability.Locked.3=ZABLOKOWANE DO POZIOMU {0}+ SKILL
|
||||
Taming.Ability.Locked.4=ZABLOKOWANE DO POZIOMU {0}+ SKILL
|
||||
Taming.Combat.Chance.Gore=[[RED]]Szansa na Brutalno\u015b\u0107: [[YELLOW]]{0}
|
||||
Taming.Combat.Chance.Gore=Szansa na Brutalno\u015b\u0107: [[YELLOW]]{0}
|
||||
Taming.SubSkill.BeastLore.Name=Wiedza o zwierz\u0119tach
|
||||
Taming.SubSkill.BeastLore.Description=Ko\u015b\u0107 - przyci\u0105ga uwag\u0119 wilk\u00f3w i ocelot\u00f3w
|
||||
Taming.SubSkill.ShockProof.Name=Odporno\u015b\u0107 na wstrz\u0105sy
|
||||
@ -270,17 +270,17 @@ Taming.SubSkill.ThickFur.Description=Redukcja Obra\u017ce\u0144, Odporno\u015b\u
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]Tw\u00f3j wilk biegnie do ciebie...
|
||||
Taming.Listener=Oswajanie:
|
||||
Taming.SkillName=OSWAJANIE
|
||||
Taming.Skillup=[[YELLOW]]Umiej\u0119tno\u015b\u0107 oswajania wzros\u0142a o {0}. Razem ({1})
|
||||
Taming.Skillup=Umiej\u0119tno\u015b\u0107 oswajania wzros\u0142a o {0}. Razem ({1})
|
||||
Taming.Summon.Complete=[[GREEN]]Przywo\u0142ywanie uko\u0144czone
|
||||
Taming.Summon.Fail.Ocelot=[[RED]]Obecnie masz przy sobie zbyt du\u017co ocelot\u00f3w aby przywo\u0142a\u0107 kolejnego.
|
||||
Taming.Summon.Fail.Wolf=[[RED]]Obecnie masz przy sobie zbyt du\u017co wilk\u00f3w aby przywo\u0142a\u0107 kolejnego.
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]D\u0142ugo\u015b\u0107 Berserka: [[YELLOW]]{0}s
|
||||
Taming.Summon.Fail.Ocelot=Obecnie masz przy sobie zbyt du\u017co ocelot\u00f3w aby przywo\u0142a\u0107 kolejnego.
|
||||
Taming.Summon.Fail.Wolf=Obecnie masz przy sobie zbyt du\u017co wilk\u00f3w aby przywo\u0142a\u0107 kolejnego.
|
||||
Unarmed.Ability.Berserk.Length=D\u0142ugo\u015b\u0107 Berserka: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Bonus.0=Styl \u017belaznej D\u0142oni
|
||||
Unarmed.Ability.Bonus.1=Ulepszenie obra\u017ce\u0144 +{0}
|
||||
Unarmed.Ability.Chance.ArrowDeflect=[[RED]]Szansa na Odbicie Strza\u0142y: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=[[RED]]Szansa na Rozbrojenie: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=[[RED]]Szansa za Zelazny Chwyt: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=[[RED]]Tw\u00f3j przeciwnik ma \u017celazny u\u015bcisk!
|
||||
Unarmed.Ability.Chance.ArrowDeflect=Szansa na Odbicie Strza\u0142y: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=Szansa na Rozbrojenie: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=Szansa za Zelazny Chwyt: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=Tw\u00f3j przeciwnik ma \u017celazny u\u015bcisk!
|
||||
Unarmed.Ability.IronGrip.Defender=[[GREEN]]Tw\u00f3j \u017belazny Uchwyt uchroni\u0142 ci\u0119 przed Rozbrojeniem!
|
||||
Unarmed.Ability.Lower=[[GRAY]]**OPUSZCZASZ SWOJE PI\u0118\u015aCI**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**PRZYGOTOWUJESZ SWOJE PIESCI**
|
||||
@ -296,16 +296,16 @@ Unarmed.SubSkill.IronGrip.Name=Zelazny Chwyt
|
||||
Unarmed.SubSkill.IronGrip.Description=Zapobiega przed Twoim rozbrojeniem
|
||||
Unarmed.Listener=NIEUZBROJONY
|
||||
Unarmed.SkillName=NIEUZBROJONY
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**Berserk si\u0119 sko\u0144czy\u0142**
|
||||
Unarmed.Skills.Berserk.Off=**Berserk si\u0119 sko\u0144czy\u0142**
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**BERSERK AKTYWOWANY**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]]Berserk[[GREEN]] si\u0119 sko\u0144czy\u0142 [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.Off=Berserk[[GREEN]] si\u0119 sko\u0144czy\u0142 [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] u\u017cy\u0142 [[RED]]Berserka!
|
||||
Unarmed.Skills.Berserk.Refresh=[[GREEN]]Twoja zdolno\u015b\u0107 [[YELLOW]]Berserka [[GREEN]]jest ju\u017c dost\u0119pna!
|
||||
Unarmed.Skillup=[[YELLOW]]Umiej\u0119tno\u015b\u0107 boksowania zwi\u0119kszona o {0}. Ca\u0142kowicie ({1})
|
||||
Unarmed.Skillup=Umiej\u0119tno\u015b\u0107 boksowania zwi\u0119kszona o {0}. Ca\u0142kowicie ({1})
|
||||
Woodcutting.Ability.0=Dmucharka do li\u015bci
|
||||
Woodcutting.Ability.1=Zdmuchuje li\u015bcie
|
||||
Woodcutting.Ability.Chance.DDrop=[[RED]]Szansa na Dwukrotny Drop: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=[[RED]]D\u0142ugo\u015bc Powalacza Drzew: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Chance.DDrop=Szansa na Dwukrotny Drop: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=D\u0142ugo\u015bc Powalacza Drzew: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Locked.0=ZABLOKOWANY DO POZIOMU {0}+ SKILL
|
||||
Woodcutting.SubSkill.TreeFeller.Name=Powalacz Drzew
|
||||
Woodcutting.SubSkill.TreeFeller.Description=Sprawia, i\u017c drzewa eksploduj\u0105
|
||||
@ -315,116 +315,116 @@ Woodcutting.SubSkill.HarvestLumber.Name=Podwojny Drop
|
||||
Woodcutting.SubSkill.HarvestLumber.Description=Podwaja ilo\u015b\u0107 zdobywanych przedmiot\u00f3w
|
||||
Woodcutting.Listener=\u015aCINANIE DRZEW
|
||||
Woodcutting.SkillName=\u015aCINANIE DRZEW
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]]**Powalacz Drzew si\u0119 sko\u0144czy\u0142**
|
||||
Woodcutting.Skills.TreeFeller.Off=**Powalacz Drzew si\u0119 sko\u0144czy\u0142**
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**POWALACZ DRZEW AKTYWOWANY**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]Twoja zdolno\u015b\u0107 [[YELLOW]]Powalacz Drzew [[GREEN]] jest ju\u017c dost\u0119pna!
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]]Powalenie Drzewa[[GREEN]] si\u0119 sko\u0144czy\u0142o [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=Powalenie Drzewa[[GREEN]] si\u0119 sko\u0144czy\u0142o [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]] u\u017cy\u0142 [[RED]]Powalacza Drzew!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]TWOJA SIEKIERA ROZPAD\u0141A SI\u0118 NA DRZAZGI!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]To drzewo jest zbyt du\u017ce!
|
||||
Woodcutting.Skillup=[[YELLOW]]Umiej\u0119tno\u015b\u0107 \u015bcinania wzros\u0142a o {0}. Razem ({1})
|
||||
Woodcutting.Skills.TreeFeller.Splinter=TWOJA SIEKIERA ROZPAD\u0141A SI\u0118 NA DRZAZGI!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=To drzewo jest zbyt du\u017ce!
|
||||
Woodcutting.Skillup=Umiej\u0119tno\u015b\u0107 \u015bcinania wzros\u0142a o {0}. Razem ({1})
|
||||
Ability.Generic.Refresh=[[GREEN]]**UMIEJ\u0118TNO\u015aCI DOST\u0118PNE!**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
Combat.ArrowDeflect=[[WHITE]]**ODBICIE STRZALY**
|
||||
Combat.BeastLore=[[GREEN]]**WIEDZA O ZWIERZETACH**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]\u017bycie ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]Wlasciciel ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**KRWOTOK**
|
||||
Combat.StruckByGore=[[RED]]**WYKRWAWIASZ SI\u0118**
|
||||
Combat.StruckByGore=**WYKRWAWIASZ SI\u0118**
|
||||
Combat.TargetDazed=Cel zostal [[DARK_RED]]oszolomiony.
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]Zostales oszolomiony.
|
||||
mcMMO.Description=[[DARK_AQUA]]O [[YELLOW]]mcMMO[[DARK_AQUA]] Project:,[[GOLD]]mcMMO jest [[RED]]open source[[GOLD]] modem RPG stworzonym w lutym 2011 r.,[[GOLD]]przez [[BLUE]]nossr50[[GOLD]]. Celem jest wprowadzenie doswiadczen RPG.,[[DARK_AQUA]]Porady:,[[GOLD]] - [[GREEN]]Uzywaj [[RED]]/mcmmo help[[GREEN]] by zobaczyc komendy,[[GOLD]] - [[GREEN]]Pisz [[RED]]/NAZWA_UMIEJETNOSCI[[GREEN]] by zobaczyc informacje na jej temat,[[DARK_AQUA]]Programisci:,[[GOLD]] - [[GREEN]]nossr50 [[BLUE]](Zalozyciel),[[GOLD]] - [[GREEN]]GJ [[BLUE]](Manager projektu),[[GOLD]] - [[GREEN]]NuclearW [[BLUE]](Developer),[[GOLD]] - [[GREEN]]bm01 [[BLUE]](Developer),[[GOLD]] - [[GREEN]]TfT_02 [[BLUE]](Developer),[[GOLD]] - [[GREEN]]Glitchfinder [[BLUE]](Developer),[[GOLD]] - [[GREEN]]t00thpick1 [[BLUE]](Developer),[[DARK_AQUA]]Przydatne linki:,[[GOLD]] - [[GREEN]]https://github.com/mcMMO-Dev/mcMMO/issues[[GOLD]] Zglaszanie bled\u00f3w,[[GOLD]] - [[GREEN]]#mcmmo @ irc.esper.net[[GOLD]] IRC Chat,
|
||||
Commands.addlevels.AwardAll.1=[[GREEN]]Otrzyma\u0142e\u015b {0} poziom\u00f3w we wszystkich dziedzinach!
|
||||
Commands.addlevels.AwardAll.2=[[RED]]Wszystkie dziedziny zosta\u0142y zmienione na poziom {0}.
|
||||
Commands.addlevels.AwardAll.2=Wszystkie dziedziny zosta\u0142y zmienione na poziom {0}.
|
||||
Commands.addlevels.AwardSkill.1=[[GREEN]]Zdoby\u0142e\u015b {0} poziom\u00f3w w dziedzinie {1}!
|
||||
Commands.addlevels.AwardSkill.2=[[RED]]{0} zosta\u0142 zmieniony dla {1}.
|
||||
Commands.addlevels.AwardSkill.2={0} zosta\u0142 zmieniony dla {1}.
|
||||
Commands.addxp.AwardAll=[[GREEN]]Otrzyma\u0142e\u015b {0} XP\'a we wszystkich dziedzinach!
|
||||
Commands.addxp.AwardSkill=[[GREEN]]Otrzyma\u0142e\u015b {0} XP\'a we dziedzinie {1}!
|
||||
Commands.Ability.Off=Umiej\u0119tno\u015b\u0107 wy\u0142\u0105czona [[RED]]
|
||||
Commands.Ability.On=Umiej\u0119tno\u015b\u0107 w\u0142\u0105czona [[GREEN]]
|
||||
Commands.AdminChat.Off=Czat tylko dla adminow [[RED]] Wylaczony
|
||||
Commands.AdminChat.On=Czat tylko dla adminow [[RED]] W\u0142\u0105czony
|
||||
Commands.AdminToggle=[[RED]]- Wlacza/wylacza czat adminow
|
||||
Commands.AdminToggle=- Wlacza/wylacza czat adminow
|
||||
Commands.Chat.Console=\"Konsola\"
|
||||
Commands.Disabled=[[RED]]Komenda ta jest wylaczona.
|
||||
Commands.DoesNotExist=[[RED]]Nie ma takiego gracza!
|
||||
Commands.GodMode.Disabled=[[YELLOW]]Nie\u015bmiertelno\u015b\u0107 wy\u0142\u0105czona
|
||||
Commands.GodMode.Enabled=[[YELLOW]]Nie\u015bmiertelno\u015b\u0107 w\u0142\u0105czona
|
||||
Commands.Disabled=Komenda ta jest wylaczona.
|
||||
Commands.DoesNotExist=Nie ma takiego gracza!
|
||||
Commands.GodMode.Disabled=Nie\u015bmiertelno\u015b\u0107 wy\u0142\u0105czona
|
||||
Commands.GodMode.Enabled=Nie\u015bmiertelno\u015b\u0107 w\u0142\u0105czona
|
||||
Commands.GodMode.Forbidden=[mcMMO] Nie\u015bmiertelno\u015b\u0107 nie jest dozwolona na tym \u015bwiecie.
|
||||
Commands.Inspect=<player> [[RED]]- Pokazuje informacje o graczu
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]Zaproszenie zaakceptowane. Do\u0142\u0105czy\u0142e\u015b do dru\u017cyny {0}
|
||||
Commands.Invite.Success=[[GREEN]]Pomyslnie wyslano zaproszenie
|
||||
Commands.Leaderboards=<skill> <page> [[RED]]- Rankingi
|
||||
Commands.mcc.Header=[[RED]]---[][[YELLOW]]mcMMO Komendy[[RED]][]---
|
||||
Commands.mcgod=[[RED]]- W\u0142\u0105cza/Wy\u0142\u0105cza Nie\u015bmiertelno\u015b\u0107
|
||||
Commands.mchud.Invalid=[[RED]]Nie ma takiego Typu Interfejsu.
|
||||
Commands.mcc.Header=---[][[YELLOW]]mcMMO Komendy[[RED]][]---
|
||||
Commands.mcgod=- W\u0142\u0105cza/Wy\u0142\u0105cza Nie\u015bmiertelno\u015b\u0107
|
||||
Commands.mchud.Invalid=Nie ma takiego Typu Interfejsu.
|
||||
Commands.mcpurge.Success=[[GREEN]]Baza danych zosta\u0142a wyczyszczona!
|
||||
Commands.mcrank.Heading=[[GOLD]]-=OSOBISTE RANKINGI=-
|
||||
Commands.mcrank.Overall=[[YELLOW]]Og\u00f3lne Statystyki[[GREEN]] - [[GOLD]]Ranga [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=[[RED]]CEL: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill=[[YELLOW]]{0}[[GREEN]] - [[GOLD]]Ranga [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Overall=Og\u00f3lne Statystyki[[GREEN]] - [[GOLD]]Ranga [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=CEL: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill={0}[[GREEN]] - [[GOLD]]Ranga [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Unranked=[[WHITE]]Bez Rangi
|
||||
Commands.mcrefresh.Success=Umiejetnosci [[RED]]{0} zostaly odnowione.
|
||||
Commands.mcremove.Success=[[GREEN]]{0} zosta\u0142 usuni\u0119ty z bazy danych!
|
||||
Commands.mctop.Tip=[[GOLD]]Porada: Wpisz [[RED]]/mcrank[[GOLD]] aby zobaczy\u0107 swoje rankingi!
|
||||
Commands.mmoedit=[player] <skill> <newvalue> [[RED]] - Modyfikuje cel
|
||||
Commands.mmoedit.Modified.1=[[GREEN]]Tw\u00f3j poziom w {0} zosta\u0142 zmieniony na {1}!
|
||||
Commands.mmoedit.Modified.2=[[RED]]{0} zosta\u0142 zmieniony na {1}.
|
||||
Commands.ModDescription=[[RED]]- Przeczytaj opis
|
||||
Commands.mmoedit.Modified.2={0} zosta\u0142 zmieniony na {1}.
|
||||
Commands.ModDescription=- Przeczytaj opis
|
||||
Commands.NoConsole=Konsola nie obs\u0142uguje tej komendy.
|
||||
Commands.Notifications.Off=Informacje na temat umiejetnosci [[RED]]wylaczone
|
||||
Commands.Notifications.On=Informacje na temat umiejetnosci [[GREEN]]wlaczone
|
||||
Commands.Other=[[GREEN]]--POZOSTA\u0141E KOMENDY--
|
||||
Commands.Party.Header=[[RED]]-----[][[GREEN]]DRUZYNA[[RED]][]-----
|
||||
Commands.Party.Header=-----[][[GREEN]]DRUZYNA[[RED]][]-----
|
||||
Commands.Party.ShareMode=[[DARK_GRAY]]TRYB DZIELENIA SIE:
|
||||
Commands.Party.ItemShare=[[GRAY]]PRZEDMIOT [[DARK_AQUA]]({0})
|
||||
Commands.Party.ExpShare=[[GRAY]]EXP [[DARK_AQUA]]({0})
|
||||
Commands.Party.MembersNear=[[DARK_GRAY]]OBOK CIEBIE [[DARK_AQUA]]{0}[[DARK_GRAY]]/[[DARK_AQUA]]{1}
|
||||
Commands.Party.Accept=[[RED]]- Akceptuje zaproszenie grupy
|
||||
Commands.Party.Accept=- Akceptuje zaproszenie grupy
|
||||
Commands.Party.Chat.Off=Czat wy\u0142acznie dla dru\u017cyny [[RED]]Off
|
||||
Commands.Party.Chat.On=Czat wy\u0142acznie dla dru\u017cyny w\u0142\u0105czony [[RED]]
|
||||
Commands.Party.Commands=[[GREEN]]--KOMENDY DLA DRU\u017bYN--
|
||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]Otrzyma\u0142e\u015b zaproszenie do dru\u017cyny {0} od {1}
|
||||
Commands.Party.Invite.1=[[YELLOW]]Wpisz [[GREEN]]/party accept[[YELLOW]] by akceptowac zaproszenie
|
||||
Commands.Party.Invite=[[RED]]- Wysyla zaproszenie do druzyny
|
||||
Commands.Party.Invite.0=ALERT: [[GREEN]]Otrzyma\u0142e\u015b zaproszenie do dru\u017cyny {0} od {1}
|
||||
Commands.Party.Invite.1=Wpisz [[GREEN]]/party accept[[YELLOW]] by akceptowac zaproszenie
|
||||
Commands.Party.Invite=- Wysyla zaproszenie do druzyny
|
||||
Commands.Party.Join=[[GRAY]]Dolaczono do druzyny: {0}
|
||||
Commands.Party.Create=[[GRAY]]Utworzono druzyne: {0}
|
||||
Commands.Party.Rename=[[GRAY]]Nazwa druzyny zmieniona na: [[WHITE]]{0}
|
||||
Commands.Party.SetSharing=[[GRAY]]Druzyny {0} dzielenie sie przedmiotami ustawiono na: [[DARK_AQUA]]{1}
|
||||
Commands.Party.AlreadyExists=[[DARK_RED]]Druzyna {0} juz istnieje!
|
||||
Commands.Party.Kick=[[RED]]Zosta\u0142e\u015b wyrzucony z dru\u017cyny {0}!
|
||||
Commands.Party.Leave=[[RED]]Opu\u015bci\u0142e\u015b dru\u017cyn\u0119.
|
||||
Commands.Party.Members.Header=[[RED]]-----[][[GREEN]]CZLONKOWIE[[RED]][]-----
|
||||
Commands.Party.None=[[RED]]Nie jestes w druzynie.
|
||||
Commands.Party.Quit=[[RED]]- Opuszcza obecn\u0105 dru\u017cyne
|
||||
Commands.Party.Kick=Zosta\u0142e\u015b wyrzucony z dru\u017cyny {0}!
|
||||
Commands.Party.Leave=Opu\u015bci\u0142e\u015b dru\u017cyn\u0119.
|
||||
Commands.Party.Members.Header=-----[][[GREEN]]CZLONKOWIE[[RED]][]-----
|
||||
Commands.Party.None=Nie jestes w druzynie.
|
||||
Commands.Party.Quit=- Opuszcza obecn\u0105 dru\u017cyne
|
||||
Commands.Party.Teleport=<player> [[RED]]- Teleportacja do czlonka grupy.
|
||||
Commands.Party.Toggle=[[RED]]- W\u0142\u0105cza/Wy\u0142\u0105cza czat dla dru\u017cyn
|
||||
Commands.Party.1=[[RED]]- Tworzy nowa druzyne
|
||||
Commands.Party.2=[[RED]]- Dolacza do druzyny gracza
|
||||
Commands.Party.Toggle=- W\u0142\u0105cza/Wy\u0142\u0105cza czat dla dru\u017cyn
|
||||
Commands.Party.1=- Tworzy nowa druzyne
|
||||
Commands.Party.2=- Dolacza do druzyny gracza
|
||||
Commands.ptp.Enabled=Teleportacja druzynowa [[GREEN]]aktywna
|
||||
Commands.ptp.Disabled=Teleportacja druzynowa [[RED]]wylaczona
|
||||
Commands.ptp.NoRequests=[[RED]]Nie masz zadnych zadan teleportacji w tym momencie
|
||||
Commands.ptp.NoWorldPermissions=[[RED]][mcMMO] Nie masz uprawnien do teleportacji do swiata {0}.
|
||||
Commands.ptp.Request1=[[YELLOW]]{0} [[GREEN]]chce sie steleportowac do Ciebie.
|
||||
Commands.ptp.NoRequests=Nie masz zadnych zadan teleportacji w tym momencie
|
||||
Commands.ptp.NoWorldPermissions=[mcMMO] Nie masz uprawnien do teleportacji do swiata {0}.
|
||||
Commands.ptp.Request1={0} [[GREEN]]chce sie steleportowac do Ciebie.
|
||||
Commands.ptp.Request2=[[GREEN]]By sie steleportowac, wpisz [[YELLOW]]/ptp accept. [[GREEN]]Zadanie wygasa po [[RED]]{0} [[GREEN]]sekundach.
|
||||
Commands.ptp.AcceptAny.Disabled=Potwierdzenie zadania teleportacji druzynowej [[RED]]wylaczone
|
||||
Commands.ptp.RequestExpired=[[RED]]Zadanie druzynowego teleportu wygaslo!
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO[[BLUE]] Poziom Mocy [[YELLOW]]Ranking--
|
||||
Commands.ptp.RequestExpired=Zadanie druzynowego teleportu wygaslo!
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO[[BLUE]] Poziom Mocy [[YELLOW]]Ranking--
|
||||
Commands.PowerLevel.Capped=[[DARK_RED]]POZIOM MOCY: [[GREEN]]{0} [[DARK_RED]]MAKSYMALNY POZIOM: [[YELLOW]]{1}
|
||||
Commands.PowerLevel=[[DARK_RED]]POZIOM MOCY: [[GREEN]]{0}
|
||||
Commands.Reset.All=[[GREEN]]Wszystkie twoje umiej\u0119tno\u015bci zosta\u0142y zresetowane.
|
||||
Commands.Reset.Single=[[GREEN]]Tw\u00f3j poziom w {0} zosta\u0142 zresetowany.
|
||||
Commands.Reset=[[RED]]Resetuje poziom umiej\u0119tno\u015bci do 0
|
||||
Commands.Skill.Invalid=[[RED]]Nie ma takiej umiej\u0119tno\u015bci!
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--mcMMO [[BLUE]]{0}[[YELLOW]] Ranking--
|
||||
Commands.SkillInfo=[[RED]]- Zobacz szczeg\u00f3lowe informacje na temat tej umiejetnosci
|
||||
Commands.Reset=Resetuje poziom umiej\u0119tno\u015bci do 0
|
||||
Commands.Skill.Invalid=Nie ma takiej umiej\u0119tno\u015bci!
|
||||
Commands.Skill.Leaderboard=--mcMMO [[BLUE]]{0}[[YELLOW]] Ranking--
|
||||
Commands.SkillInfo=- Zobacz szczeg\u00f3lowe informacje na temat tej umiejetnosci
|
||||
Commands.Stats.Self=TWOJE STATYSTYKI
|
||||
Commands.Stats=[[RED]]- Zobacz swoje statystyki
|
||||
Commands.ToggleAbility=[[RED]]- W\u0142\u0105cza/Wy\u0142\u0105cza zdolno\u015b\u0107 PPM
|
||||
Commands.Usage.1=[[RED]]W\u0142a\u015bciwa komenda to /{0} {1}
|
||||
Commands.Usage.2=[[RED]]W\u0142a\u015bciwa komenda to /{0} {1} {2}
|
||||
Commands.Usage.3=[[RED]]W\u0142a\u015bciwa komenda to /{0} {1} {2} {3}
|
||||
Commands.Stats=- Zobacz swoje statystyki
|
||||
Commands.ToggleAbility=- W\u0142\u0105cza/Wy\u0142\u0105cza zdolno\u015b\u0107 PPM
|
||||
Commands.Usage.1=W\u0142a\u015bciwa komenda to /{0} {1}
|
||||
Commands.Usage.2=W\u0142a\u015bciwa komenda to /{0} {1} {2}
|
||||
Commands.Usage.3=W\u0142a\u015bciwa komenda to /{0} {1} {2} {3}
|
||||
Commands.Usage.Level=poziom
|
||||
Commands.Usage.Message=wiadomo\u015b\u0107
|
||||
Commands.Usage.Page=strona
|
||||
@ -432,40 +432,40 @@ Commands.Usage.Password=haslo
|
||||
Commands.Usage.Player=gracz
|
||||
Commands.Usage.Skill=zdolno\u015b\u0107
|
||||
Commands.Usage.XP=xp
|
||||
mcMMO.NoInvites=[[RED]]Nie masz zadnych zaproszen
|
||||
mcMMO.NoInvites=Nie masz zadnych zaproszen
|
||||
mcMMO.NoPermission=[[DARK_RED]]Nie wystarczaj\u0105ce uprawnienia.
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]Je\u015bli nie posiadasz dost\u0119pu do zdolno\u015bci, nie b\u0119dzie ona tu ukazana.
|
||||
Party.Forbidden=[mcMMO] Dru\u017cyny nie s\u0105 dozwolone na tym \u015bwiecie
|
||||
Party.Help.9=[[RED]]Uzyj [[DARK_AQUA]]{0} [[RED]]by dzielic sie przedmiotami z czlonkami druzyny
|
||||
Party.Help.10=[[RED]]Uzyj [[DARK_AQUA]]{0} [[RED]]by aktywowac dzielenie sie XP z czlonkami druzyny
|
||||
Party.Help.9=Uzyj [[DARK_AQUA]]{0} [[RED]]by dzielic sie przedmiotami z czlonkami druzyny
|
||||
Party.Help.10=Uzyj [[DARK_AQUA]]{0} [[RED]]by aktywowac dzielenie sie XP z czlonkami druzyny
|
||||
Party.InformedOnJoin={0} [[GREEN]]dolaczyl do Twojej druzyny
|
||||
Party.InformedOnQuit={0} [[GREEN]]opuscil Twoja druzyne
|
||||
Party.InformedOnNameChange=[[GOLD]]{0} [[GREEN]]zmienil nazwe druzyny na [[WHITE]]{1}
|
||||
Party.InvalidName=[[DARK_RED]]Nie istnieje dru\u017cyna o takiej nazwie!
|
||||
Party.Invite.Self=[[RED]]Nie mozesz zaprosic siebie samego!
|
||||
Party.IsLocked=[[RED]]Ta grupa jest juz zamknieta!
|
||||
Party.IsntLocked=[[RED]]Ta grupa nie jest zamkni\u0119ta!
|
||||
Party.Locked=[[RED]]Grupa jest zamknieta, tylko wlasciciel moze dodac graczy.
|
||||
Party.Invite.Self=Nie mozesz zaprosic siebie samego!
|
||||
Party.IsLocked=Ta grupa jest juz zamknieta!
|
||||
Party.IsntLocked=Ta grupa nie jest zamkni\u0119ta!
|
||||
Party.Locked=Grupa jest zamknieta, tylko wlasciciel moze dodac graczy.
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} nie jest cz\u0142onkiem twojej dru\u017cyny.
|
||||
Party.NotOwner=[[DARK_RED]]Nie jeste\u015b liderem grupy.
|
||||
Party.Owner.New=[[GREEN]]{0} jest nowym liderem grupy.
|
||||
Party.Owner.NotLeader=[[DARK_RED]]Nie jeste\u015b ju\u017c liderem grupy.
|
||||
Party.Owner.Player=[[GREEN]]Jeste\u015b teraz liderem grupy.
|
||||
Party.Password.Incorrect=[[RED]]Has\u0142o grupy nieprawid\u0142owe.
|
||||
Party.Password.Incorrect=Has\u0142o grupy nieprawid\u0142owe.
|
||||
Party.Password.Set=[[GREEN]]Haslo grupy zmienione na: {0}
|
||||
Party.Password.Removed=[[GREEN]]Haslo druzyny zostalo wyczyszczone.
|
||||
Party.Player.Invalid=[[RED]]Nie ma takiego gracza.
|
||||
Party.Player.Invalid=Nie ma takiego gracza.
|
||||
Party.NotOnline=[[DARK_RED]]{0} jest offline!
|
||||
Party.Player.InSameParty=[[RED]]{0} juz jest w Twojej druzynie!
|
||||
Party.Player.InSameParty={0} juz jest w Twojej druzynie!
|
||||
Party.PlayerNotInParty=[[DARK_RED]]{0} nie jest w druzynie
|
||||
Party.Teleport.Dead=[[RED]]Nie mo\u017cesz si\u0119 teleportowa\u0107 do zmar\u0142ego gracza.
|
||||
Party.Teleport.Hurt=[[RED]]Zostales ranny przed {0} sekundami i nie mozesz sie steleportowac.
|
||||
Party.Teleport.Dead=Nie mo\u017cesz si\u0119 teleportowa\u0107 do zmar\u0142ego gracza.
|
||||
Party.Teleport.Hurt=Zostales ranny przed {0} sekundami i nie mozesz sie steleportowac.
|
||||
Party.Teleport.Player=[[GREEN]]Teleportowa\u0142e\u015b si\u0119 do {0}.
|
||||
Party.Teleport.Self=[[RED]]Nie mo\u017cesz teleportowa\u0107 si\u0119 do samego siebie!
|
||||
Party.Teleport.Self=Nie mo\u017cesz teleportowa\u0107 si\u0119 do samego siebie!
|
||||
Party.Teleport.Target=[[GREEN]]{0} teleportowa\u0142 si\u0119 do Ciebie.
|
||||
Party.Teleport.Disabled=[[RED]]{0} nie zezwala na teleportacje druzynowa.
|
||||
Party.Rename.Same=[[RED]]Taka juz jest wlasnie nazwa Twojej druzyny!
|
||||
Party.Join.Self=[[RED]]Nie mozesz dolaczyc do samego siebie!
|
||||
Party.Teleport.Disabled={0} nie zezwala na teleportacje druzynowa.
|
||||
Party.Rename.Same=Taka juz jest wlasnie nazwa Twojej druzyny!
|
||||
Party.Join.Self=Nie mozesz dolaczyc do samego siebie!
|
||||
Party.Unlocked=[[GRAY]]Grupa jest otwarta dla wszystkich.
|
||||
Party.Disband=[[GRAY]]Druzyna zostala rozwiazana
|
||||
Party.Status.Locked=[[DARK_RED]](TYLKO NA ZAPROSZENIE)
|
||||
@ -473,7 +473,7 @@ Party.ShareType.Xp=EXP
|
||||
Party.ShareType.Item=PRZEDMIOTOWY
|
||||
Party.ShareMode.Equal=R\u00d3WNY
|
||||
Party.ShareMode.Random=LOSOWY
|
||||
Party.ItemShare.Disabled=[[RED]]Druzynowe dzielenie sie przedmiotami jest wylaczone.
|
||||
Party.ItemShare.Disabled=Druzynowe dzielenie sie przedmiotami jest wylaczone.
|
||||
Party.ItemShare.Category.Loot=Loot
|
||||
Party.ItemShare.Category.Mining=G\u00f3rnictwo
|
||||
Party.ItemShare.Category.Herbalism=Zielarstwo
|
||||
@ -495,11 +495,11 @@ Commands.XPGain.Woodcutting=\u015acina drzewa
|
||||
Commands.XPGain=[[DARK_GRAY]Zdobyte do\u015bwiadczenie: [[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]Tw\u00f3j pasek XP\'a jest zablokowany {0}!
|
||||
Commands.xplock.unlocked=[[GOLD]]Tw\u00f3j pasek XP\'a jest odblokowany {0}!
|
||||
Commands.xprate.modified=[[RED]]Modyfikator zdobywania do\u015bwiadczenia zosta\u0142 zmieniony na {0}
|
||||
Commands.xprate.modified=Modyfikator zdobywania do\u015bwiadczenia zosta\u0142 zmieniony na {0}
|
||||
Commands.xprate.over=[[GOLD]]Event[[RED]] zwi\u0119kszonego zdobywania XP\'a jest zako\u0144czony!
|
||||
Commands.xprate.proper.0=[[RED]]Aby zmieni\u0107 mno\u017cnik XP - /xprate <mno\u017cnik> <true/false>
|
||||
Commands.xprate.proper.1=[[RED]]Aby przywr\u00f3ci\u0107 normalny mno\u017cnik zdobywania XP\'a - /xprate reset
|
||||
Commands.xprate.proper.2=[[RED]]Wpisz true/false aby okre\u015bli\u0107 czy jest to EVENT czy te\u017c nie
|
||||
Commands.xprate.proper.0=Aby zmieni\u0107 mno\u017cnik XP - /xprate <mno\u017cnik> <true/false>
|
||||
Commands.xprate.proper.1=Aby przywr\u00f3ci\u0107 normalny mno\u017cnik zdobywania XP\'a - /xprate reset
|
||||
Commands.xprate.proper.2=Wpisz true/false aby okre\u015bli\u0107 czy jest to EVENT czy te\u017c nie
|
||||
Commands.xprate.started.0=[[GOLD]]EVENT zwi\u0119kszonego zdobywania XP\'a w\u0142a\u015bnie si\u0119 zacz\u0105\u0142!
|
||||
Commands.xprate.started.1=[[GOLD]]Mno\u017cnik zdobywania XP\'a wynosi {0}x!
|
||||
XPRate.Event=[[GOLD]]mcMMO is currently in an XP rate event! XP rate is {0}x!
|
||||
@ -512,25 +512,25 @@ Guides.Available=[[GRAY]]Przewodnik dla {0} jest dost\u0119pny - wpisz /{1} ? [s
|
||||
Guides.Header=[[GOLD]]-=[[GREEN]]{0} Przewodnik[[GOLD]]=-
|
||||
Guides.Page.Invalid=Niew\u0142a\u015bciwa strona!
|
||||
Guides.Page.OutOfRange=Ta strona nie istnieje, jest tylko {0} stron.
|
||||
Guides.Usage=[[RED]] W\u0142a\u015bciwa Komenda to /{0} ? [strona]
|
||||
Guides.Usage= W\u0142a\u015bciwa Komenda to /{0} ? [strona]
|
||||
Guides.Smelting.Section.0=Wkrotce...
|
||||
Inspect.Offline=[[RED]]Nie masz odpowiednich uprawnie\u0144 aby przygl\u0105da\u0107 si\u0119 graczom offline!
|
||||
Inspect.Offline=Nie masz odpowiednich uprawnie\u0144 aby przygl\u0105da\u0107 si\u0119 graczom offline!
|
||||
Inspect.OfflineStats=Statystyki Gracza Offline [[YELLOW]]{0}
|
||||
Inspect.Stats=[[GREEN]]Statystyki Gracza [[YELLOW]]{0}
|
||||
Inspect.TooFar=[[RED]]Jeste\u015b zbyt daleko aby przyjrze\u0107 si\u0119 temu graczowi!
|
||||
Inspect.TooFar=Jeste\u015b zbyt daleko aby przyjrze\u0107 si\u0119 temu graczowi!
|
||||
Item.ChimaeraWing.Fail=**U\u017bYCIE SKRZYD\u0141A CHIMERY NIE POWIOD\u0141O SI\u0118**
|
||||
Item.ChimaeraWing.Pass=**SKRZYD\u0141O CHIMERY**
|
||||
Item.ChimaeraWing.Name=Skrzydlo Chimery
|
||||
Item.ChimaeraWing.Lore=[[GRAY]]Teleportuje Cie do Twojego l\u00f3zka.
|
||||
Item.Generic.Wait=[[RED]]Musisz poczekac, nim bedziesz m\u00f3gl uzyc tego ponownie! [[YELLOW]]({0}s)
|
||||
Item.Generic.Wait=Musisz poczekac, nim bedziesz m\u00f3gl uzyc tego ponownie! [[YELLOW]]({0}s)
|
||||
Item.Injured.Wait=Zosta\u0142e\u015b ostatnio ranny i musisz poczeka\u0107 aby tego u\u017cy\u0107. [[YELLOW]]({0}s)
|
||||
Teleport.Commencing=[[GRAY]]Teleportacja za [[GOLD]]({0}) [[GRAY]]sekund, nie ruszaj sie...
|
||||
Teleport.Cancelled=[[DARK_RED]]Teleportacja anulowana!
|
||||
Skills.Disarmed=[[DARK_RED]]Zostales rozbrojony!
|
||||
Skills.Header=[[RED]]-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.Header=-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.NeedMore=[[DARK_RED]]Potrzebujesz wiecej
|
||||
Skills.Stats=[[YELLOW]]{0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.TooTired=[[RED]]Musisz odpoczac zanim ponownie uzyjesz tej umiejetnosci.
|
||||
Skills.Stats={0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.TooTired=Musisz odpoczac zanim ponownie uzyjesz tej umiejetnosci.
|
||||
Skills.ConfirmOrCancel=[[GREEN]]Prawy-klik ponownie by potwierdzic [[GOLD]]{0}[[GREEN]]. Lewy-klik by anulowac.
|
||||
Stats.Header.Combat=[[GOLD]]-=UMIEJ\u0118TNO\u015aCI BOJOWE=-
|
||||
Stats.Header.Gathering=[[GOLD]]-=UMIEJ\u0118TNO\u015aCI ZBIERANIA=-
|
||||
@ -550,14 +550,14 @@ Perks.ActivationTime.Bonus=[[GOLD]] ({0}s ze zdolno\u015bci\u0105 Wytrzyma\u0142
|
||||
MOTD.Donate=[[DARK_AQUA]]Informacje o Dotacji:
|
||||
MOTD.Hardcore.DeathStatLoss.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Kara za \u015amier\u0107: [[DARK_RED]]{0}%
|
||||
MOTD.Hardcore.Vampirism.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Statystyki Wampirycznych Pijawek: [[DARK_RED]]{0}%
|
||||
MOTD.PerksPrefix=[[RED]][mcMMO Zdolno\u015bci]
|
||||
MOTD.PerksPrefix=[mcMMO Zdolno\u015bci]
|
||||
MOTD.Version=[[GOLD]][mcMMO] Obecna Wersja [[DARK_AQUA]]{0}
|
||||
MOTD.Website=[[GOLD]][mcMMO] [[GREEN]]{0}[[YELLOW]] - Strona mcMMO
|
||||
Smelting.Ability.FuelEfficiency=[[RED]]Mnoznik wydajnosci paliwa: [[YELLOW]]{0}x
|
||||
Smelting.Ability.FuelEfficiency=Mnoznik wydajnosci paliwa: [[YELLOW]]{0}x
|
||||
Smelting.Ability.Locked.0=DOSTEPNE OD POZIOMU {0}+ (VANILLA XP BOOST)
|
||||
Smelting.Ability.Locked.1=DOSTEPNE OD POZIOMU {0}+ (FLUX MINING)
|
||||
Smelting.Ability.SecondSmelt=[[RED]]Szansa na drugie przetopienie: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=[[RED]]Vanilla mnoznik XP: [[YELLOW]]{0}x
|
||||
Smelting.Ability.SecondSmelt=Szansa na drugie przetopienie: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=Vanilla mnoznik XP: [[YELLOW]]{0}x
|
||||
Smelting.SubSkill.FuelEfficiency.Name=Wydajnosc paliwa
|
||||
Smelting.SubSkill.FuelEfficiency.Description=Zwieksza czas spalania sie paliwa w piecu podczas przetapiania
|
||||
Smelting.SubSkill.SecondSmelt.Name=Drugie przetopienie
|
||||
|
@ -4,17 +4,17 @@ Acrobatics.SubSkill.Dodge.Name=Esquivou
|
||||
Acrobatics.Listener=Acrobacias:
|
||||
Acrobatics.Roll.Text=**Rolou**
|
||||
Acrobatics.SkillName=Acrobacia
|
||||
Acrobatics.Skillup=[[YELLOW]]Habilidade Acrobacia aumentada em {0}. Total ({1})
|
||||
Acrobatics.Skillup=Habilidade Acrobacia aumentada em {0}. Total ({1})
|
||||
Archery.SubSkill.SkillShot.Name=Tiro Habilidoso
|
||||
Archery.SubSkill.SkillShot.Description=Aumenta o dano feito com arcos
|
||||
Archery.SubSkill.ArrowRetrieval.Description=Chance de recuperar flechas dos corpos
|
||||
Archery.Listener=Arqueiro
|
||||
Archery.SkillName=ARQUEIRO
|
||||
Archery.Skillup=[[YELLOW]]Habilidade Arqueiro aumentada em {0}. Total ({1})
|
||||
Archery.Skillup=Habilidade Arqueiro aumentada em {0}. Total ({1})
|
||||
Axes.Ability.Bonus.0=Machado
|
||||
Axes.Ability.Lower=[[GRAY]]**VOCE ABAIXA SEU MACHADO**
|
||||
Axes.Ability.Ready=[[GREEN]]**VOCE PREPARA SEU MACHADO**
|
||||
Axes.Combat.GI.Struck=[[RED]]**GOLPEADO POR UM GRANDE IMPACTO**
|
||||
Axes.Combat.GI.Struck=**GOLPEADO POR UM GRANDE IMPACTO**
|
||||
Axes.SubSkill.CriticalStrikes.Description=Dano Duplo
|
||||
Axes.SubSkill.AxeMastery.Description=Adiciona dano extra
|
||||
Axes.Listener=Machados:
|
||||
@ -22,32 +22,32 @@ Axes.SkillName=Machado
|
||||
Axes.Skills.SS.On=[[GREEN]]**Racha Cranio ATIVADO**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]Sua [[YELLOW]] Racha Cranio [[GREEN]] habilidade esta pronta.
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] usou [[RED]]Racha Cranios!
|
||||
Axes.Skillup=[[YELLOW]]Habilidade em Machado aumentada em {0}. Total ({1})
|
||||
Axes.Skillup=Habilidade em Machado aumentada em {0}. Total ({1})
|
||||
Excavation.Ability.Lower=[[GRAY]]**VOCE ABAIXA SUA PA**
|
||||
Excavation.Ability.Ready=[[GREEN]]**VOCE PREPARA SUA PA**
|
||||
Excavation.SubSkill.TreasureHunter.Description=Habilidade de cavar tesouros
|
||||
Excavation.Listener=Escavacao:
|
||||
Excavation.SkillName=Escava\u00e7\u00e3o
|
||||
Excavation.Skillup=[[YELLOW]]Habilidade de Escavacao aumentada em {0}. Total ({1})
|
||||
Excavation.Skillup=Habilidade de Escavacao aumentada em {0}. Total ({1})
|
||||
Fishing.Listener=Pescaria:
|
||||
Fishing.Ability.TH.MagicFound=[[GRAY]]You feel a touch of magic with this catch...
|
||||
Fishing.SkillName=PESCARIA
|
||||
Fishing.Skillup=[[YELLOW]]Habilidade em Pescaria aumentada em {0}. Total ({1})
|
||||
Fishing.Skillup=Habilidade em Pescaria aumentada em {0}. Total ({1})
|
||||
Herbalism.Ability.GTh=[[GREEN]]**DEDAO VERDE**
|
||||
Herbalism.Ability.Lower=[[GRAY]]**VOCE ABAIXA SUA ENXADA**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**VOCE PREPARA SUA ENXADA**
|
||||
Herbalism.Listener=Herbalismo
|
||||
Herbalism.SkillName=HERBALISMO
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]Sua [[YELLOW]]pronta sua habilidade de [[GREEN]]Terra Verde
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]]Terra Verde[[GREEN]] acabou para o [[YELLOW]]{0}
|
||||
Herbalism.Skillup=[[YELLOW]]Habilidade em Herbalismo aumentada em {0}. Total ({1})
|
||||
Mining.Ability.Length=[[RED]]Super Partir Duracao: [[YELLOW]]{0}s
|
||||
Herbalism.Skills.GTe.Other.Off=Terra Verde[[GREEN]] acabou para o [[YELLOW]]{0}
|
||||
Herbalism.Skillup=Habilidade em Herbalismo aumentada em {0}. Total ({1})
|
||||
Mining.Ability.Length=Super Partir Duracao: [[YELLOW]]{0}s
|
||||
Mining.Ability.Lower=[[GRAY]]**VOCE ABAIXA SUA PICARETA**
|
||||
Mining.Ability.Ready=[[GREEN]]**VOCE PREPARA SUA PICARETA**
|
||||
Mining.Listener=Mineracao:
|
||||
Mining.SkillName=MINERAR
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]A tua [[YELLOW]]habilidade Super Partir [[GREEN]]esta pronta!
|
||||
Mining.Skillup=[[YELLOW]]Habilidade Minerar aumentada em {0}. Total ({1})
|
||||
Mining.Skillup=Habilidade Minerar aumentada em {0}. Total ({1})
|
||||
Mining.Blast.Boom=[[GRAY]]**BOOM**
|
||||
Mining.Blast.Refresh=[[GREEN]]A tua [[YELLOW]]habilidade de explosao [[GREEN]]esta pronta!
|
||||
Repair.SubSkill.Repair.Name=Reparar
|
||||
@ -61,10 +61,10 @@ Repair.Skills.AdeptDiamond=[[DARK_RED]]Voce nao tem nivel suficiente pra reparar
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]Voc\u00ea n\u00e3o tem nivel suficiente pra reparar Ouro.
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]Voce nao tem nivel suficiente pra reparar Pedra.
|
||||
Repair.Skills.FeltEasy=[[GRAY]]Isso pareceu facil.
|
||||
Repair.Skillup=[[YELLOW]]Habilidade de Reparacao aumentada em {0}. Total ({1})
|
||||
Repair.Skillup=Habilidade de Reparacao aumentada em {0}. Total ({1})
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]AF Percentagem de Sucesso: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Fail=[[RED]]Poder misterioso saiu permanentemente do item.
|
||||
Repair.Arcane.Lost=[[RED]]Voce nao foi habilidoso o suficiente para manter os encantamentos.
|
||||
Repair.Arcane.Fail=Poder misterioso saiu permanentemente do item.
|
||||
Repair.Arcane.Lost=Voce nao foi habilidoso o suficiente para manter os encantamentos.
|
||||
Swords.Ability.Lower=[[GRAY]]**VOCE ABAIXA SUA ESPADA**
|
||||
Swords.Ability.Ready=[[GREEN]]**VOCE PREPARA SUA ESPADA**
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]O sangramento[[GREEN]]parou[[GRAY]]!
|
||||
@ -75,9 +75,9 @@ Swords.SubSkill.Bleed.Name=Sangrou
|
||||
Swords.Listener=Espadas:
|
||||
Swords.SkillName=Espada
|
||||
Swords.Skills.SS.On=[[GREEN]]**ATAQUE DE SERRA ACTIVADO**
|
||||
Swords.Skills.SS.Other.Off=[[RED]]Ataque de cerra[[GREEN]] acabou para [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.Off=Ataque de cerra[[GREEN]] acabou para [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] usou [[RED]] quebra rapida!
|
||||
Swords.Skillup=[[YELLOW]]Habilidade com Espadas aumentada em {0}. Total ({1})
|
||||
Swords.Skillup=Habilidade com Espadas aumentada em {0}. Total ({1})
|
||||
Taming.Ability.Bonus.1=Lobos evitam o perigo
|
||||
Taming.Ability.Bonus.6=Garras Afiadas
|
||||
Taming.SubSkill.ShockProof.Description=Reducao de dano explosivo
|
||||
@ -89,11 +89,11 @@ Taming.SubSkill.SharpenedClaws.Description=Dano Bonus
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]O seu lobo correu de volta ate voce...
|
||||
Taming.Listener=Domar
|
||||
Taming.SkillName=DOMAR
|
||||
Taming.Skillup=[[YELLOW]]Habilidade de Domesticar aumentada em {0}. Total ({1})
|
||||
Taming.Skillup=Habilidade de Domesticar aumentada em {0}. Total ({1})
|
||||
Unarmed.Listener=Desarmado:
|
||||
Unarmed.SkillName=DESARMAR
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**Berserk acabou**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]]Quebra rapida[[GREEN]] acabou para [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Off=**Berserk acabou**
|
||||
Unarmed.Skills.Berserk.Other.Off=Quebra rapida[[GREEN]] acabou para [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] usou [[RED]]Berserk!
|
||||
Woodcutting.Ability.0=Soprador de Folhas
|
||||
Woodcutting.Ability.1=Soprar Folhas
|
||||
@ -101,48 +101,48 @@ Woodcutting.SubSkill.TreeFeller.Description=Faz arvores explodirem.
|
||||
Woodcutting.SubSkill.HarvestLumber.Name=Drops duplos
|
||||
Woodcutting.Listener=Lenhador
|
||||
Woodcutting.SkillName=Lenhador
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]]Corta Arvores[[GREEN]] acabou para o [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]SEU MACHADO SE QUEBROU EM DEZENAS DE PEDACOS!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]Essa arvore e muito grande!
|
||||
Woodcutting.Skillup=[[YELLOW]]Habilidade como Lenhador aumentada em {0}. Total ({1})
|
||||
Ability.Generic.Template=[[RED]]{0}:[[YELLOW]]{1}
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=Corta Arvores[[GREEN]] acabou para o [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Splinter=SEU MACHADO SE QUEBROU EM DEZENAS DE PEDACOS!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=Essa arvore e muito grande!
|
||||
Woodcutting.Skillup=Habilidade como Lenhador aumentada em {0}. Total ({1})
|
||||
Ability.Generic.Template={0}:[[YELLOW]]{1}
|
||||
Combat.ArrowDeflect=[[WHITE]]*DESVIOU A FLECHA*
|
||||
Combat.BeastLore=[[GREEN]]*CONHECIMENTO DE ANIMAIS*
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]Vida ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]Dono ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]*MORDIDA*
|
||||
Combat.StruckByGore=[[RED]]*ATINGIDO POR MORDIDA*
|
||||
Combat.StruckByGore=*ATINGIDO POR MORDIDA*
|
||||
Combat.TargetDazed=Alvo foi [[DARK_RED]]Atordoado
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]Visao turva. Sente Tonturas.
|
||||
Commands.addlevels.AwardAll.1=[[GREEN]]Voce ganhou {0} leveis em todas suas skills!
|
||||
Commands.addlevels.AwardAll.2=[[RED]]Todas suas skills foram alteradas para {0}.
|
||||
Commands.addlevels.AwardAll.2=Todas suas skills foram alteradas para {0}.
|
||||
Commands.addlevels.AwardSkill.1=[[GREEN]]Voce ganhou {0} leveis em {1}!
|
||||
Commands.addlevels.AwardSkill.2=[[RED]]{0} foi modificado para {1}.
|
||||
Commands.addlevels.AwardSkill.2={0} foi modificado para {1}.
|
||||
Commands.addxp.AwardAll=[[GREEN]]Voce ganhou {0} experiencias em todas skills!
|
||||
Commands.addxp.AwardSkill=[[GREEN]]Voce ganhou {0} experiencias em {1}!
|
||||
Commands.AdminChat.Off=Chat Admin [[RED]]Desligado
|
||||
Commands.AdminChat.On=Chat de Admin [[GREEN]]Ligado
|
||||
Commands.AdminToggle=[[RED]]- Liga o Admin chat
|
||||
Commands.Disabled=[[RED]]Este comando esta desabilitado.
|
||||
Commands.DoesNotExist=[[RED]]Player nao existe na database!
|
||||
Commands.GodMode.Disabled=[[YELLOW]]mcMMO Modo God desabilitado
|
||||
Commands.GodMode.Enabled=[[YELLOW]]mcMMO Godmode Ligado
|
||||
Commands.AdminToggle=- Liga o Admin chat
|
||||
Commands.Disabled=Este comando esta desabilitado.
|
||||
Commands.DoesNotExist=Player nao existe na database!
|
||||
Commands.GodMode.Disabled=mcMMO Modo God desabilitado
|
||||
Commands.GodMode.Enabled=mcMMO Godmode Ligado
|
||||
Commands.Invite.Accepted=[[GREEN]]Convite aceito. Voce se juntou ao grupo {0}
|
||||
Commands.mmoedit=[player] <skill> <newvalue> [[RED]] - Modifica alvo
|
||||
Commands.ModDescription=[[RED]]- Leia a descricao breve do mod
|
||||
Commands.ModDescription=- Leia a descricao breve do mod
|
||||
Commands.NoConsole=Esse comando nao suporta uso no console
|
||||
Commands.Party.Accept=[[RED]]- Aceitar convite de grupo
|
||||
Commands.Party.Accept=- Aceitar convite de grupo
|
||||
Commands.Party.Chat.Off=Chat de grupo [[RED]]Desligado
|
||||
Commands.Party.Commands=[[GREEN]]--COMANDOS DE GRUPO--
|
||||
Commands.Party.Invite.0=[[RED]]ALERTA: [[GREEN]]Voce recebeu um convite para o grupo {0} de {1}
|
||||
Commands.Party.Kick=[[RED]]Voce foi kickado do grupo {0}!
|
||||
Commands.Party.Leave=[[RED]]Voce saiu do grupo
|
||||
Commands.Party.None=[[RED]]Voce nao esta em um grupo.
|
||||
Commands.Party.Quit=[[RED]]- Deixe seu grupo atual
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO[[BLUE]] Nivel de Poder [[YELLOW]]Podium--
|
||||
Commands.Party.Invite.0=ALERTA: [[GREEN]]Voce recebeu um convite para o grupo {0} de {1}
|
||||
Commands.Party.Kick=Voce foi kickado do grupo {0}!
|
||||
Commands.Party.Leave=Voce saiu do grupo
|
||||
Commands.Party.None=Voce nao esta em um grupo.
|
||||
Commands.Party.Quit=- Deixe seu grupo atual
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO[[BLUE]] Nivel de Poder [[YELLOW]]Podium--
|
||||
Commands.PowerLevel=[[DARK_RED]]N\u00cdVEL DE PODER: [[GREEN]]{0}
|
||||
Commands.Scoreboard.Clear=[[DARK_AQUA]]mcMMO scoreboard sumiu.
|
||||
Commands.Scoreboard.NoBoard=[[RED]]The mcMMO scoreboard nao esta ativo.
|
||||
Commands.Scoreboard.NoBoard=The mcMMO scoreboard nao esta ativo.
|
||||
Commands.Scoreboard.Keep=[[DARK_AQUA]]O mcMMO scoreboard vai estar visivel ate voce usar [[GREEN]]/mcscoreboard clear[[DARK_AQUA]].
|
||||
Commands.Scoreboard.Timer=[[DARK_AQUA]]O mcMMO scoreboard vai sumir em [[GOLD]]{0}[[DARK_AQUA]] segundos.
|
||||
Commands.Scoreboard.Help.0=[[GOLD]] == [[GREEN]]Ajuda para [[RED]]/mcscoreboard[[GOLD]] ==
|
||||
@ -155,11 +155,11 @@ Commands.Stats.Self=SEUS STATS
|
||||
mcMMO.NoPermission=[[DARK_RED]]Permissoes insuficientes.
|
||||
Party.Forbidden=[mcMMO] Parties not permitted on this world (See Permissions)
|
||||
Party.InvalidName=[[DARK_RED]]Isto nao e um nome valido.
|
||||
Party.Locked=[[RED]]Equipe esta bloqueada, soh o lider pode convidar.
|
||||
Party.Locked=Equipe esta bloqueada, soh o lider pode convidar.
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} nao est\u00e1 na sua equipe
|
||||
Party.Password.Set=[[GREEN]]Senha da equipe: {0}
|
||||
Party.Player.Invalid=[[RED]]Isto nao e um jogador valido.
|
||||
Party.Teleport.Dead=[[RED]]Voce nao pode teleportar para um jogador morto.
|
||||
Party.Player.Invalid=Isto nao e um jogador valido.
|
||||
Party.Teleport.Dead=Voce nao pode teleportar para um jogador morto.
|
||||
Party.Teleport.Player=[[GREEN]]Voce teleportou para {0}.
|
||||
Party.Teleport.Target=[[GREEN]]{0} teleportou-se para voce.
|
||||
Party.Unlocked=[[GRAY]]Equipe foi Destrancada
|
||||
@ -174,24 +174,24 @@ Commands.XPGain.Taming=Domesticar animais, ou combater com os seus lobos
|
||||
Commands.XPGain=[[DARK_GRAY]]XP ADQUIRIDO: [[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]Sua barra de XP BAR est\u00e1 travada em {0}!
|
||||
Commands.xplock.unlocked=[[GOLD]]Sua barra de XP foi [[GREEN]]DESTRAVADA[[GOLD]]!
|
||||
Commands.xprate.over=[[RED]]Evento de XP Rate acabou!!
|
||||
Commands.xprate.over=Evento de XP Rate acabou!!
|
||||
XPRate.Event=[[GOLD]]mcMMO esta em um evento de XP aumentada! O aumento de XP e {0}x!
|
||||
Effects.Effects=EFEITOS
|
||||
Inspect.OfflineStats=Estatisticas do mcMMO para o player offline [[YELLOW]]{0}
|
||||
Inspect.Stats=[[GREEN]]Estatisticas do mcMMO para [[YELLOW]]{0}
|
||||
Inspect.TooFar=[[RED]]Voce esta muito longe para inspecionar este Player!
|
||||
Inspect.TooFar=Voce esta muito longe para inspecionar este Player!
|
||||
Item.ChimaeraWing.Fail=**ASAS DE QUIMERA FALHARAM!**
|
||||
Item.ChimaeraWing.Pass=**ASAS DE QUIMERA**
|
||||
Item.Injured.Wait=Voce foi ferido recentemente e deve esperar para usar isto. [[YELLOW]]({0}s)
|
||||
Skills.Disarmed=[[DARK_RED]]Voc\u00ea foi Desarmado!
|
||||
Skills.NeedMore=[[DARK_RED]]Voc\u00ea precisa de mais
|
||||
Skills.TooTired=[[RED]]Voc\u00ea est\u00e1 cansado pra usar essa habilidade.
|
||||
Skills.Cancelled=[[RED]]{0} cancelado!
|
||||
Skills.TooTired=Voc\u00ea est\u00e1 cansado pra usar essa habilidade.
|
||||
Skills.Cancelled={0} cancelado!
|
||||
Stats.Header.Combat=[[GOLD]]-=SKILLS DE COMBATE=-
|
||||
Stats.Header.Gathering=[[GOLD]]-=SKILLS DE RECOLHA=-
|
||||
Stats.Header.Misc=[[GOLD]]-=OUTRAS SKILLS=-
|
||||
Scoreboard.Header.PlayerCooldowns=[[YELLOW]]mcMMO Restantes
|
||||
Scoreboard.Header.PlayerCooldowns=mcMMO Restantes
|
||||
Scoreboard.Misc.CurrentXP=[[GREEN]]XP Atual
|
||||
Scoreboard.Misc.RemainingXP=[[YELLOW]]XP Restante
|
||||
Scoreboard.Misc.RemainingXP=XP Restante
|
||||
Scoreboard.Misc.Cooldown=[[LIGHT_PURPLE]]Faltando
|
||||
Scoreboard.Misc.Overall=[[GOLD]]Geral
|
||||
|
@ -1,6 +1,6 @@
|
||||
Acrobatics.Ability.Proc=[[GREEN]]**\u0418\u0437\u044f\u0449\u043d\u043e\u0435 \u041f\u0440\u0438\u0437\u0435\u043c\u043b\u0435\u043d\u0438\u0435 **
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**\u0423\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u0435**
|
||||
Acrobatics.DodgeChance=[[RED]]\u0428\u0430\u043d\u0441 \u0423\u043a\u043b\u043e\u043d\u0438\u0442\u044c\u0441\u044f: [[YELLOW]]{0} %
|
||||
Acrobatics.DodgeChance=\u0428\u0430\u043d\u0441 \u0423\u043a\u043b\u043e\u043d\u0438\u0442\u044c\u0441\u044f: [[YELLOW]]{0} %
|
||||
Acrobatics.SubSkill.Roll.Name=\u0421\u043a\u043e\u043b\u044c\u0436\u0435\u043d\u0438\u0435
|
||||
Acrobatics.SubSkill.Roll.Description=\u0423\u043c\u0435\u043d\u044c\u0448\u0430\u0435\u0442 \u0438\u043b\u0438 \u0438\u0433\u043d\u043e\u0440\u0438\u0440\u0443\u0435\u0442 \u043f\u043e\u0432\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f \u043e\u0442 \u043f\u0430\u0434\u0435\u043d\u0438\u044f
|
||||
Acrobatics.SubSkill.GracefulRoll.Name=\u0418\u0437\u044f\u0449\u043d\u043e\u0435 \u0421\u043a\u043e\u043b\u044c\u0436\u0435\u043d\u0438\u0435
|
||||
@ -8,14 +8,14 @@ Acrobatics.SubSkill.GracefulRoll.Description=\u042d\u0444\u0444\u0435\u043a\u044
|
||||
Acrobatics.SubSkill.Dodge.Name=\u0423\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u0435
|
||||
Acrobatics.SubSkill.Dodge.Description=\u0423\u043c\u0435\u043d\u044c\u0448\u0430\u0435\u0442 \u0423\u0440\u043e\u043d \u0432 \u0434\u0432\u0430 \u0440\u0430\u0437\u0430
|
||||
Acrobatics.Listener=\u0410\u043a\u0440\u043e\u0431\u0430\u0442\u0438\u043a\u0430:
|
||||
Acrobatics.SubSkill.Roll.Chance=[[RED]]\u0428\u0430\u043d\u0441 \u0421\u043a\u043e\u043b\u044c\u0436\u0435\u043d\u0438\u044f: [[YELLOW]]{0} %
|
||||
Acrobatics.SubSkill.Roll.GraceChance=[[RED]]\u0428\u0430\u043d\u0441 \u0418\u0437\u044f\u0449\u043d\u043e\u0433\u043e \u0421\u043a\u043e\u043b\u044c\u0436\u0435\u043d\u0438\u044f: [[YELLOW]]{0} %
|
||||
Acrobatics.SubSkill.Roll.Chance=\u0428\u0430\u043d\u0441 \u0421\u043a\u043e\u043b\u044c\u0436\u0435\u043d\u0438\u044f: [[YELLOW]]{0} %
|
||||
Acrobatics.SubSkill.Roll.GraceChance=\u0428\u0430\u043d\u0441 \u0418\u0437\u044f\u0449\u043d\u043e\u0433\u043e \u0421\u043a\u043e\u043b\u044c\u0436\u0435\u043d\u0438\u044f: [[YELLOW]]{0} %
|
||||
Acrobatics.Roll.Text=**\u0421\u043a\u043e\u043b\u044c\u0436\u0435\u043d\u0438\u0435**
|
||||
Acrobatics.SkillName=\u0410\u041a\u0420\u041e\u0411\u0410\u0422\u0418\u041a\u0410
|
||||
Acrobatics.Skillup=[[YELLOW]]\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0410\u043a\u0440\u043e\u0431\u0430\u0442\u0438\u043a\u0430\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Archery.Combat.DazeChance=[[RED]]\u0428\u0430\u043d\u0441 \u0428\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c: [[YELLOW]]{0} %
|
||||
Archery.Combat.RetrieveChance=[[RED]]\u0428\u0430\u043d\u0441 \u0418\u0437\u0432\u043b\u0435\u0447\u044c \u0421\u0442\u0440\u0435\u043b\u044b: [[YELLOW]]{0}%
|
||||
Archery.Combat.SkillshotBonus=[[RED]]\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0423\u0440\u043e\u043d \u043f\u0440\u0438 \u0423\u043c\u0435\u043b\u043e\u043c \u0412\u044b\u0441\u0442\u0440\u0435\u043b\u0435: [[YELLOW]]{0}
|
||||
Acrobatics.Skillup=\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0410\u043a\u0440\u043e\u0431\u0430\u0442\u0438\u043a\u0430\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Archery.Combat.DazeChance=\u0428\u0430\u043d\u0441 \u0428\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c: [[YELLOW]]{0} %
|
||||
Archery.Combat.RetrieveChance=\u0428\u0430\u043d\u0441 \u0418\u0437\u0432\u043b\u0435\u0447\u044c \u0421\u0442\u0440\u0435\u043b\u044b: [[YELLOW]]{0}%
|
||||
Archery.Combat.SkillshotBonus=\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0423\u0440\u043e\u043d \u043f\u0440\u0438 \u0423\u043c\u0435\u043b\u043e\u043c \u0412\u044b\u0441\u0442\u0440\u0435\u043b\u0435: [[YELLOW]]{0}
|
||||
Archery.SubSkill.SkillShot.Name=\u0423\u043c\u0435\u043b\u044b\u0439 \u0412\u044b\u0441\u0442\u0440\u0435\u043b
|
||||
Archery.SubSkill.SkillShot.Description=\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0432\u0430\u0435\u0442 \u0443\u0440\u043e\u043d \u043d\u0430\u043d\u043e\u0441\u0438\u043c\u044b\u0439 \u043b\u0443\u043a\u043e\u043c
|
||||
Archery.SubSkill.Daze.Name=\u0428\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 (\u0418\u0433\u0440\u043e\u043a\u043e\u0432)
|
||||
@ -24,7 +24,7 @@ Archery.SubSkill.ArrowRetrieval.Name=\u0412\u043e\u0437\u0432\u0440\u0430\u0449\
|
||||
Archery.SubSkill.ArrowRetrieval.Description=\u0428\u0430\u043d\u0441 \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u0441\u0442\u0440\u0435\u043b\u044b \u0438\u0437 \u0442\u0440\u0443\u043f\u043e\u0432
|
||||
Archery.Listener=\u0421\u0442\u0440\u0435\u043b\u044c\u0431\u0430 \u0438\u0437 \u043b\u0443\u043a\u0430:
|
||||
Archery.SkillName=\u0421\u0422\u0420\u0415\u041b\u042c\u0411\u0410 \u0418\u0417 \u041b\u0423\u041a\u0410
|
||||
Archery.Skillup=[[YELLOW]]\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0421\u0442\u0440\u0435\u043b\u044c\u0431\u0430 \u0438\u0437 \u043b\u0443\u043a\u0430\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Archery.Skillup=\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0421\u0442\u0440\u0435\u043b\u044c\u0431\u0430 \u0438\u0437 \u043b\u0443\u043a\u0430\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Axes.Ability.Bonus.0=\u041c\u0430\u0441\u0442\u0435\u0440 \u0422\u043e\u043f\u043e\u0440\u0430
|
||||
Axes.Ability.Bonus.1= \u041d\u0430\u043d\u043e\u0441\u0438\u0442 {0} \u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0423\u0440\u043e\u043d\u0430
|
||||
Axes.Ability.Bonus.2=\u0411\u0440\u043e\u043d\u0435\u0431\u043e\u0439\u043d\u044b\u0439 \u0423\u0434\u0430\u0440
|
||||
@ -34,12 +34,12 @@ Axes.Ability.Bonus.5=\u041d\u0430\u043d\u043e\u0441\u0438\u0442 {0} \u0414\u043e
|
||||
Axes.Ability.Lower=[[GREEN]]**\u0422\u041e\u041f\u041e\u0420 \u0412 \u041e\u0411\u042b\u0427\u041d\u041e\u041c \u0421\u041e\u0421\u0422\u041e\u042f\u041d\u0418\u0418**
|
||||
Axes.Ability.Ready=[[GREEN]]**\u0422\u041e\u041f\u041e\u0420 \u0412 \u0421\u041e\u0421\u0422\u041e\u042f\u041d\u0418\u0418 \u0413\u041e\u0422\u041e\u0412\u041d\u041e\u0421\u0422\u0418**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]\u0412\u0430\u043c \u043d\u0430\u043d\u0435\u0441\u0435\u043d\u043e \u041a\u0420\u0418\u0422\u0418\u0427\u0415\u0421\u041a\u041e\u0415 \u043f\u043e\u0432\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435!
|
||||
Axes.Combat.CritChance=[[RED]]\u0428\u0430\u043d\u0441 \u043d\u0430\u043d\u0435\u0441\u0442\u0438 \u043a\u0440\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0443\u0434\u0430\u0440: [[YELLOW]]{0}%
|
||||
Axes.Combat.CriticalHit=[[RED]]\u041a\u0420\u0418\u0422\u0418\u0427\u0415\u0421\u041a\u0418\u0419 \u0423\u0414\u0410\u0420!
|
||||
Axes.Combat.CritChance=\u0428\u0430\u043d\u0441 \u043d\u0430\u043d\u0435\u0441\u0442\u0438 \u043a\u0440\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0443\u0434\u0430\u0440: [[YELLOW]]{0}%
|
||||
Axes.Combat.CriticalHit=\u041a\u0420\u0418\u0422\u0418\u0427\u0415\u0421\u041a\u0418\u0419 \u0423\u0414\u0410\u0420!
|
||||
Axes.Combat.GI.Proc=[[GREEN]]**\u0423\u0414\u0410\u0420 \u0421 \u041e\u0413\u0420\u041e\u041c\u041d\u041e\u0419 \u0421\u0418\u041b\u041e\u0419**
|
||||
Axes.Combat.GI.Struck=[[RED]]**\u041f\u041e\u0420\u0410\u0416\u0415\u041d \u0412\u0415\u041b\u0418\u041a\u0418\u041c \u0423\u0414\u0410\u0420\u041e\u041c**
|
||||
Axes.Combat.GI.Struck=**\u041f\u041e\u0420\u0410\u0416\u0415\u041d \u0412\u0415\u041b\u0418\u041a\u0418\u041c \u0423\u0414\u0410\u0420\u041e\u041c**
|
||||
Axes.Combat.SS.Struck=[[DARK_RED]]\u041f\u043e\u0440\u0430\u0436\u0435\u043d \u0420\u0410\u0421\u041a\u0410\u041b\u042b\u0412\u0410\u0422\u0415\u041b\u0415\u041c \u0427\u0415\u0420\u0415\u041f\u041e\u0412!
|
||||
Axes.Combat.SS.Length=[[RED]]\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f \"\u0420\u0430\u0441\u043a\u0430\u043b\u044b\u0432\u0430\u0442\u0435\u043b\u044c \u0427\u0435\u0440\u0435\u043f\u043e\u0432\": [[YELLOW]]{0}\u0441.
|
||||
Axes.Combat.SS.Length=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f \"\u0420\u0430\u0441\u043a\u0430\u043b\u044b\u0432\u0430\u0442\u0435\u043b\u044c \u0427\u0435\u0440\u0435\u043f\u043e\u0432\": [[YELLOW]]{0}\u0441.
|
||||
Axes.SubSkill.SkullSplitter.Name=\u0420\u0430\u0441\u043a\u0430\u043b\u044b\u0432\u0430\u0442\u0435\u043b\u044c \u0427\u0435\u0440\u0435\u043f\u043e\u0432 (\u0423\u043c\u0435\u043d\u0438\u0435)
|
||||
Axes.SubSkill.SkullSplitter.Description=\u041d\u0430\u043d\u043e\u0441\u0438\u0442 \u0421\u043f\u043b\u044d\u0448 \u0423\u0434\u0430\u0440
|
||||
Axes.SubSkill.CriticalStrikes.Name=\u041a\u0440\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0423\u0434\u0430\u0440
|
||||
@ -52,38 +52,38 @@ Axes.SubSkill.GreaterImpact.Name=\u0412\u0435\u043b\u0438\u043a\u0438\u0439 \u04
|
||||
Axes.SubSkill.GreaterImpact.Description=\u041d\u0430\u043d\u043e\u0441\u0438\u0442 \u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0423\u0440\u043e\u043d \u0431\u0435\u0437\u043e\u0440\u0443\u0436\u043d\u044b\u043c \u0432\u0440\u0430\u0433\u0430\u043c
|
||||
Axes.Listener=\u0412\u043b\u0430\u0434\u0435\u043d\u0438\u0435 \u0422\u043e\u043f\u043e\u0440\u043e\u043c:
|
||||
Axes.SkillName=\u0412\u041b\u0410\u0414\u0415\u041d\u0418\u0415 \u0422\u041e\u041f\u041e\u0420\u041e\u041c
|
||||
Axes.Skills.SS.Off=[[RED]]**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0420\u0430\u0441\u043a\u0430\u043b\u044b\u0432\u0430\u0442\u0435\u043b\u044c \u0427\u0435\u0440\u0435\u043f\u043e\u0432\" \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435**
|
||||
Axes.Skills.SS.Off=**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0420\u0430\u0441\u043a\u0430\u043b\u044b\u0432\u0430\u0442\u0435\u043b\u044c \u0427\u0435\u0440\u0435\u043f\u043e\u0432\" \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435**
|
||||
Axes.Skills.SS.On=[[GREEN]]**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0420\u0430\u0441\u043a\u0430\u043b\u044b\u0432\u0430\u0442\u0435\u043b\u044c \u0427\u0435\u0440\u0435\u043f\u043e\u0432\" \u0410\u041a\u0422\u0418\u0412\u0418\u0420\u041e\u0412\u0410\u041d\u041e**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]\u0412\u0430\u0448\u0435 \u0443\u043c\u0435\u043d\u0438\u0435 [[YELLOW]]\"\u0420\u0430\u0441\u043a\u0430\u043b\u044b\u0432\u0430\u0442\u0435\u043b\u044c\u0427\u0435\u0440\u0435\u043f\u043e\u0432\" [[GREEN]]\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e!
|
||||
Axes.Skills.SS.Other.Off=[[RED]]\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0420\u0430\u0441\u043a\u0430\u043b\u044b\u0432\u0430\u0442\u0435\u043b\u044c \u0427\u0435\u0440\u0435\u043f\u043e\u0432\"[[GREEN]] \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0443 [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.Off=\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0420\u0430\u0441\u043a\u0430\u043b\u044b\u0432\u0430\u0442\u0435\u043b\u044c \u0427\u0435\u0440\u0435\u043f\u043e\u0432\"[[GREEN]] \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0443 [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043b \u0443\u043c\u0435\u043d\u0438\u0435[[RED]]\"\u0420\u0430\u0441\u043a\u0430\u043b\u044b\u0432\u0430\u0442\u0435\u043b\u044c \u0427\u0435\u0440\u0435\u043f\u043e\u0432\"!
|
||||
Axes.Skillup=[[YELLOW]]\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0412\u043b\u0430\u0434\u0435\u043d\u0438\u0435 \u0422\u043e\u043f\u043e\u0440\u043e\u043c\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Axes.Skillup=\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0412\u043b\u0430\u0434\u0435\u043d\u0438\u0435 \u0422\u043e\u043f\u043e\u0440\u043e\u043c\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Excavation.Ability.Lower=[[GREEN]]**\u041b\u041e\u041f\u0410\u0422\u0410 \u0412 \u041e\u0411\u042b\u0427\u041d\u041e\u041c \u0421\u041e\u0421\u0422\u041e\u042f\u041d\u0418\u0418**
|
||||
Excavation.Ability.Ready=[[GREEN]]**\u041b\u041e\u041f\u0410\u0422\u0410 \u0412 \u0421\u041e\u0421\u0422\u041e\u042f\u041d\u0418\u0418 \u0413\u041e\u0422\u041e\u0412\u041d\u041e\u0421\u0422\u0418**
|
||||
Excavation.SubSkill.GigaDrillBreaker.Name=\u041c\u0435\u0433\u0430 \u0411\u0443\u0440 (\u0423\u041c\u0415\u041d\u0418\u0415)
|
||||
Excavation.SubSkill.GigaDrillBreaker.Description=\u0422\u0440\u043e\u0439\u043d\u043e\u0439 \u0414\u0440\u043e\u043f, \u0422\u0440\u043e\u0439\u043d\u043e\u0439 \u041e\u043f\u044b\u0442, \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0430\u044f \u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0420\u0430\u0441\u043a\u043e\u043f\u043e\u043a
|
||||
Excavation.SubSkill.TreasureHunter.Name=\u041e\u0445\u043e\u0442\u043d\u0438\u043a \u0437\u0430 \u0421\u043e\u043a\u0440\u043e\u0432\u0438\u0449\u0430\u043c\u0438
|
||||
Excavation.SubSkill.TreasureHunter.Description=\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0438\u0441\u043a\u0430\u0442\u044c \u0441\u043e\u043a\u0440\u043e\u0432\u0438\u0449\u0430
|
||||
Excavation.Effect.Length=[[RED]]\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f \"\u041c\u0435\u0433\u0430 \u0411\u0443\u0440\": [[YELLOW]]{0}\u0441.
|
||||
Excavation.Effect.Length=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f \"\u041c\u0435\u0433\u0430 \u0411\u0443\u0440\": [[YELLOW]]{0}\u0441.
|
||||
Excavation.Listener=\u0420\u0430\u0441\u043a\u043e\u043f\u043a\u0438:
|
||||
Excavation.SkillName=\u0420\u0430\u0441\u043a\u043e\u043f\u043a\u0430
|
||||
Excavation.Skills.GigaDrillBreaker.Off=[[RED]]**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u041c\u0435\u0433\u0430 \u0411\u0443\u0440\" \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435**
|
||||
Excavation.Skills.GigaDrillBreaker.Off=**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u041c\u0435\u0433\u0430 \u0411\u0443\u0440\" \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435**
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u041c\u0435\u0433\u0430 \u0411\u0443\u0440\" \u0410\u041a\u0422\u0418\u0412\u0418\u0420\u041e\u0412\u0410\u041d\u041e**
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]\u0412\u0430\u0448\u0435 \u0443\u043c\u0435\u043d\u0438\u0435 [[YELLOW]]\"\u041c\u0435\u0433\u0430 \u0411\u0443\u0440\" [[GREEN]]\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=[[RED]]\u0423\u043c\u0435\u043d\u0438\u0435 \"\u041c\u0435\u0433\u0430 \u0411\u0443\u0440\"[[GREEN]] \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0443 [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=\u0423\u043c\u0435\u043d\u0438\u0435 \"\u041c\u0435\u0433\u0430 \u0411\u0443\u0440\"[[GREEN]] \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0443 [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043b \u0443\u043c\u0435\u043d\u0438\u0435[[RED]]\"\u041c\u0435\u0433\u0430 \u0411\u0443\u0440\"!
|
||||
Excavation.Skillup=[[YELLOW]]\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0420\u0430\u0441\u043a\u043e\u043f\u043a\u0438\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Fishing.Ability.Chance=[[RED]]\u0428\u0430\u043d\u0441 \u041f\u043e\u043a\u043b\u0435\u0432\u043a\u0438: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=[[RED]]\u041e\u0445\u043e\u0442\u043d\u0438\u043a \u0417\u0430 \u041c\u0430\u0433\u0438\u0435\u0439: [[GRAY]] **\u0423\u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u0443\u0435\u0442\u0441\u044f \u0441 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435\u043c \u0440\u0430\u043d\u0433\u0430 \u041e\u0445\u043e\u0442\u043d\u0438\u043a\u0430 \u0437\u0430 \u0421\u043e\u043a\u0440\u043e\u0432\u0438\u0449\u0430\u043c\u0438**
|
||||
Excavation.Skillup=\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0420\u0430\u0441\u043a\u043e\u043f\u043a\u0438\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Fishing.Ability.Chance=\u0428\u0430\u043d\u0441 \u041f\u043e\u043a\u043b\u0435\u0432\u043a\u0438: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=\u041e\u0445\u043e\u0442\u043d\u0438\u043a \u0417\u0430 \u041c\u0430\u0433\u0438\u0435\u0439: [[GRAY]] **\u0423\u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u0443\u0435\u0442\u0441\u044f \u0441 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435\u043c \u0440\u0430\u043d\u0433\u0430 \u041e\u0445\u043e\u0442\u043d\u0438\u043a\u0430 \u0437\u0430 \u0421\u043e\u043a\u0440\u043e\u0432\u0438\u0449\u0430\u043c\u0438**
|
||||
Fishing.Ability.Locked.0=\u0417\u0410\u0411\u041b\u041e\u041a\u0418\u0420\u041e\u0412\u0410\u041d\u041e \u0414\u041e \u0414\u041e\u0421\u0422\u0418\u0416\u0415\u041d\u0418\u042f {0}+ \u0423\u0420\u041e\u0412\u041d\u042f \u041d\u0410\u0412\u042b\u041a\u0410 (\u0412\u0421\u0422\u0420\u042f\u0421\u041a\u0410)
|
||||
Fishing.Ability.Locked.1=\u0417\u0410\u0411\u041b\u041e\u041a\u0418\u0420\u041e\u0412\u0410\u041d\u041e \u0414\u041e \u0414\u041e\u0421\u0422\u0418\u0416\u0415\u041d\u0418\u042f {0}+ \u0423\u0420\u041e\u0412\u041d\u042f \u041d\u0410\u0412\u042b\u041a\u0410 (\u041f\u041e\u0414\u041b\u0415\u0414\u041d\u0410\u042f \u0420\u042b\u0411\u0410\u041b\u041a\u0410)
|
||||
Fishing.Ability.Locked.2=\u0417\u0410\u0411\u041b\u041e\u041a\u0418\u0420\u041e\u0412\u0410\u041d\u041e \u0414\u041e \u0414\u041e\u0421\u0422\u0418\u0416\u0415\u041d\u0418\u042f {0}+ \u0423\u0420\u041e\u0412\u041d\u042f \u041d\u0410\u0412\u042b\u041a\u0410 (\u041c\u0410\u0421\u0422\u0415\u0420 \u0420\u042b\u0411\u041e\u041b\u041e\u0412)
|
||||
Fishing.Ability.Rank=[[RED]]\u0420\u0430\u043d\u0433 \u041e\u0445\u043e\u0442\u043d\u0438\u043a\u0430 \u0437\u0430 \u0421\u043e\u043a\u0440\u043e\u0432\u0438\u0449\u0430\u043c\u0438: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.DropRate=[[RED]]\u0428\u0430\u043d\u0441\u044b \u0414\u0440\u043e\u043f\u0430: [[DARK_RED]]\u041b\u043e\u0432\u0443\u0448\u043a\u0430: [[YELLOW]]{0} [[GRAY]]\u041e\u0431\u044b\u0447\u043d\u044b\u0439: [[YELLOW]]{1} [[GREEN]]\u041d\u0435\u043e\u0431\u044b\u0447\u043d\u044b\u0439: [[YELLOW]]{2}\n[[BLUE]]\u0420\u0435\u0434\u043a\u0438\u0439: [[YELLOW]]{3} [[LIGHT_PURPLE]]\u042d\u043f\u0438\u0447\u0435\u0441\u043a\u0438\u0439: [[YELLOW]]{4} [[GOLD]]\u041b\u0435\u0433\u0435\u043d\u0434\u0430\u0440\u043d\u044b\u0439: [[YELLOW]]{5} [[AQUA]]\u0420\u0435\u043a\u043e\u0440\u0434\u043d\u044b\u0439: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=[[RED]]\u0428\u0430\u043d\u0441 \u041e\u0445\u043e\u0442\u043d\u0438\u043a\u0430 \u0437\u0430 \u041c\u0430\u0433\u0438\u0435\u0439: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=[[RED]]\u0428\u0430\u043d\u0441 \u0412\u0441\u0442\u0440\u044f\u0441\u043a\u0438: [[YELLOW]]{0}%
|
||||
Fishing.Ability.IceFishing=[[RED]]\u041f\u043e\u0434\u043b\u0435\u0434\u043d\u0430\u044f \u0420\u044b\u0431\u0430\u043b\u043a\u0430: \u0418\u0434\u0438\u0442\u0435 \u0440\u044b\u0431\u0430\u0447\u0438\u0442\u044c \u043d\u0430 \u043b\u0435\u0434
|
||||
Fishing.Ability.FD=[[RED]]\u0420\u044b\u0431\u0430\u0446\u043a\u0430\u044f \u0414\u0438\u0435\u0442\u0430: [[YELLOW]]\u0420\u0430\u043d\u0433 {0}
|
||||
Fishing.Ability.Rank=\u0420\u0430\u043d\u0433 \u041e\u0445\u043e\u0442\u043d\u0438\u043a\u0430 \u0437\u0430 \u0421\u043e\u043a\u0440\u043e\u0432\u0438\u0449\u0430\u043c\u0438: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.DropRate=\u0428\u0430\u043d\u0441\u044b \u0414\u0440\u043e\u043f\u0430: [[DARK_RED]]\u041b\u043e\u0432\u0443\u0448\u043a\u0430: [[YELLOW]]{0} [[GRAY]]\u041e\u0431\u044b\u0447\u043d\u044b\u0439: [[YELLOW]]{1} [[GREEN]]\u041d\u0435\u043e\u0431\u044b\u0447\u043d\u044b\u0439: [[YELLOW]]{2}\n[[BLUE]]\u0420\u0435\u0434\u043a\u0438\u0439: [[YELLOW]]{3} [[LIGHT_PURPLE]]\u042d\u043f\u0438\u0447\u0435\u0441\u043a\u0438\u0439: [[YELLOW]]{4} [[GOLD]]\u041b\u0435\u0433\u0435\u043d\u0434\u0430\u0440\u043d\u044b\u0439: [[YELLOW]]{5} [[AQUA]]\u0420\u0435\u043a\u043e\u0440\u0434\u043d\u044b\u0439: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=\u0428\u0430\u043d\u0441 \u041e\u0445\u043e\u0442\u043d\u0438\u043a\u0430 \u0437\u0430 \u041c\u0430\u0433\u0438\u0435\u0439: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=\u0428\u0430\u043d\u0441 \u0412\u0441\u0442\u0440\u044f\u0441\u043a\u0438: [[YELLOW]]{0}%
|
||||
Fishing.Ability.IceFishing=\u041f\u043e\u0434\u043b\u0435\u0434\u043d\u0430\u044f \u0420\u044b\u0431\u0430\u043b\u043a\u0430: \u0418\u0434\u0438\u0442\u0435 \u0440\u044b\u0431\u0430\u0447\u0438\u0442\u044c \u043d\u0430 \u043b\u0435\u0434
|
||||
Fishing.Ability.FD=\u0420\u044b\u0431\u0430\u0446\u043a\u0430\u044f \u0414\u0438\u0435\u0442\u0430: [[YELLOW]]\u0420\u0430\u043d\u0433 {0}
|
||||
Fishing.SubSkill.TreasureHunter.Name=\u041e\u0445\u043e\u0442\u043d\u0438\u043a \u0437\u0430 \u0421\u043e\u043a\u0440\u043e\u0432\u0438\u0449\u0430\u043c\u0438 (\u041f\u0430\u0441\u0441\u0438\u0432\u043d\u043e\u0435)
|
||||
Fishing.SubSkill.TreasureHunter.Description=\u041b\u043e\u0432\u043b\u044f \u0440\u0430\u0437\u043d\u044b\u0445 \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u043e\u0432
|
||||
Fishing.SubSkill.MagicHunter.Name=\u041e\u0445\u043e\u0442\u043d\u0438\u043a \u0417\u0430 \u041c\u0430\u0433\u0438\u0435\u0439
|
||||
@ -102,20 +102,20 @@ Fishing.Ability.TH.MagicFound=[[GRAY]]You feel a touch of magic with this catch.
|
||||
Fishing.Ability.TH.Boom=[[GRAY]]\u0412\u0420\u0415\u041c\u042f \u0412\u0417\u0420\u042b\u0412\u0410\u0422\u042c!!!
|
||||
Fishing.Ability.TH.Poison=[[GRAY]]\u0427\u0442\u043e-\u0442\u043e \u0441\u0434\u0435\u0441\u044c \u043d\u0435 \u0442\u0430\u043a...
|
||||
Fishing.SkillName=\u0420\u042b\u0411\u041e\u041b\u041e\u0412\u0421\u0422\u0412\u041e
|
||||
Fishing.Skillup=[[YELLOW]]\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0420\u044b\u0431\u043e\u043b\u043e\u0432\u0441\u0442\u0432\u043e\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Herbalism.Ability.DoubleDropChance=[[RED]]\u0428\u0430\u043d\u0441 \u0414\u0432\u043e\u0439\u043d\u043e\u0433\u043e \u0414\u0440\u043e\u043f\u0430: [[YELLOW]]{0} %
|
||||
Herbalism.Ability.FD=[[RED]]\u0424\u0435\u0440\u043c\u0435\u0440\u0441\u043a\u0430\u044f \u0414\u0438\u0435\u0442\u0430: [[YELLOW]]\u0420\u0430\u043d\u0433 {0}
|
||||
Herbalism.Ability.GTe.Length=[[RED]]\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f \"\u041e\u0437\u0435\u043b\u0435\u043d\u0435\u043d\u0438\u0435\": [[YELLOW]]{0}\u0441.
|
||||
Herbalism.Ability.GTe.NeedMore=[[RED]]\u0412\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435 \u0441\u0435\u043c\u044f\u043d \u0434\u043b\u044f \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u041e\u0437\u0435\u043b\u0435\u043d\u0435\u043d\u0438\u044f.
|
||||
Herbalism.Ability.GTh.Chance=[[RED]]\u0428\u0430\u043d\u0441 \u0416\u0438\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u041f\u0440\u0438\u043a\u043e\u0441\u043d\u043e\u0432\u0435\u043d\u0438\u044f: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=[[RED]]**\u0416\u0418\u0412\u0418\u0422\u0415\u041b\u042c\u041d\u041e\u0415 \u041f\u0420\u0418\u041a\u041e\u0421\u041d\u041e\u0412\u0415\u041d\u0418\u0415 \u041d\u0415 \u0423\u0414\u0410\u041b\u041e\u0421\u042c**
|
||||
Herbalism.Ability.GTh.Stage=[[RED]]\u0421\u0442\u0430\u0434\u0438\u044f \u0416\u0438\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u041f\u0440\u0438\u043a\u043e\u0441\u043d\u043e\u0432\u0435\u043d\u0438\u044f: [[YELLOW]] \u0420\u0430\u0441\u0442\u0435\u043d\u0438\u044f \u0440\u0430\u0441\u0442\u0443\u0442 \u043d\u0430 \u0441\u0442\u0430\u0434\u0438\u0438 {0}
|
||||
Fishing.Skillup=\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0420\u044b\u0431\u043e\u043b\u043e\u0432\u0441\u0442\u0432\u043e\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Herbalism.Ability.DoubleDropChance=\u0428\u0430\u043d\u0441 \u0414\u0432\u043e\u0439\u043d\u043e\u0433\u043e \u0414\u0440\u043e\u043f\u0430: [[YELLOW]]{0} %
|
||||
Herbalism.Ability.FD=\u0424\u0435\u0440\u043c\u0435\u0440\u0441\u043a\u0430\u044f \u0414\u0438\u0435\u0442\u0430: [[YELLOW]]\u0420\u0430\u043d\u0433 {0}
|
||||
Herbalism.Ability.GTe.Length=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f \"\u041e\u0437\u0435\u043b\u0435\u043d\u0435\u043d\u0438\u0435\": [[YELLOW]]{0}\u0441.
|
||||
Herbalism.Ability.GTe.NeedMore=\u0412\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435 \u0441\u0435\u043c\u044f\u043d \u0434\u043b\u044f \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u041e\u0437\u0435\u043b\u0435\u043d\u0435\u043d\u0438\u044f.
|
||||
Herbalism.Ability.GTh.Chance=\u0428\u0430\u043d\u0441 \u0416\u0438\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u041f\u0440\u0438\u043a\u043e\u0441\u043d\u043e\u0432\u0435\u043d\u0438\u044f: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=**\u0416\u0418\u0412\u0418\u0422\u0415\u041b\u042c\u041d\u041e\u0415 \u041f\u0420\u0418\u041a\u041e\u0421\u041d\u041e\u0412\u0415\u041d\u0418\u0415 \u041d\u0415 \u0423\u0414\u0410\u041b\u041e\u0421\u042c**
|
||||
Herbalism.Ability.GTh.Stage=\u0421\u0442\u0430\u0434\u0438\u044f \u0416\u0438\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u041f\u0440\u0438\u043a\u043e\u0441\u043d\u043e\u0432\u0435\u043d\u0438\u044f: [[YELLOW]] \u0420\u0430\u0441\u0442\u0435\u043d\u0438\u044f \u0440\u0430\u0441\u0442\u0443\u0442 \u043d\u0430 \u0441\u0442\u0430\u0434\u0438\u0438 {0}
|
||||
Herbalism.Ability.GTh=[[GREEN]]**\u0416\u0418\u0412\u0418\u0422\u0415\u041b\u042c\u041d\u041e\u0415 \u041f\u0420\u0418\u041a\u041e\u0421\u041d\u041e\u0412\u0415\u041d\u0418\u0415**
|
||||
Herbalism.Ability.HylianLuck=[[RED]]\u0428\u0430\u043d\u0441 \u0425\u0430\u0439\u043b\u0438\u0430\u043d\u0441\u043a\u043e\u0439 \u0423\u0434\u0430\u0447\u0438: [[YELLOW]]{0}
|
||||
Herbalism.Ability.HylianLuck=\u0428\u0430\u043d\u0441 \u0425\u0430\u0439\u043b\u0438\u0430\u043d\u0441\u043a\u043e\u0439 \u0423\u0434\u0430\u0447\u0438: [[YELLOW]]{0}
|
||||
Herbalism.Ability.Lower=[[GREEN]]**\u041c\u041e\u0422\u042b\u0413\u0410 \u0412 \u041e\u0411\u042b\u0427\u041d\u041e\u041c \u0421\u041e\u0421\u0422\u041e\u042f\u041d\u0418\u0418**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**\u041c\u041e\u0422\u042b\u0413\u0410 \u0412 \u0421\u041e\u0421\u0422\u041e\u042f\u041d\u0418\u0418 \u0413\u041e\u0422\u041e\u0412\u041d\u041e\u0421\u0422\u0418**
|
||||
Herbalism.Ability.ShroomThumb.Chance=[[RED]]\u0428\u0430\u043d\u0441 \u0413\u0440\u0438\u0431\u043d\u043e\u0433\u043e \u041f\u0440\u0438\u043a\u043e\u0441\u043d\u043e\u0432\u0435\u043d\u0438\u044f: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=[[RED]]**\u0413\u0420\u0418\u0411\u041d\u041e\u0415 \u041f\u0420\u0418\u041a\u041e\u0421\u041d\u041e\u0412\u0415\u041d\u0418\u0415**
|
||||
Herbalism.Ability.ShroomThumb.Chance=\u0428\u0430\u043d\u0441 \u0413\u0440\u0438\u0431\u043d\u043e\u0433\u043e \u041f\u0440\u0438\u043a\u043e\u0441\u043d\u043e\u0432\u0435\u043d\u0438\u044f: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=**\u0413\u0420\u0418\u0411\u041d\u041e\u0415 \u041f\u0420\u0418\u041a\u041e\u0421\u041d\u041e\u0412\u0415\u041d\u0418\u0415**
|
||||
Herbalism.SubSkill.GreenTerra.Name=\u041e\u0437\u0435\u043b\u0435\u043d\u0435\u043d\u0438\u0435 (\u0423\u041c\u0415\u041d\u0418\u0415)
|
||||
Herbalism.SubSkill.GreenTerra.Description=\u0420\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u0417\u0435\u043c\u043b\u0438, \u0422\u0440\u043e\u0439\u043d\u043e\u0439 \u0414\u0440\u043e\u043f
|
||||
Herbalism.SubSkill.GreenThumb.Name=\u0416\u0438\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u041f\u0440\u0438\u043a\u043e\u0441\u043d\u043e\u0432\u0435\u043d\u0438\u0435 (\u041f\u0448\u0435\u043d\u0438\u0446\u0430)
|
||||
@ -137,8 +137,8 @@ Herbalism.Skills.GTe.On=[[GREEN]]**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u041e
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]\u0412\u0430\u0448\u0435 \u0443\u043c\u0435\u043d\u0438\u0435 [[YELLOW]]\"\u041e\u0437\u0435\u043b\u0435\u043d\u0435\u043d\u0438\u0435\" [[GREEN]]\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e!
|
||||
Herbalism.Skills.GTe.Other.Off=[[GREEN]] \u0423\u043c\u0435\u043d\u0438\u0435 \"[[RED]]\u041e\u0437\u0435\u043b\u0435\u043d\u0435\u043d\u0438\u0435[[GREEN]] \" \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0443 [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043b \u0443\u043c\u0435\u043d\u0438\u0435 [[RED]] \"\u041e\u0437\u0435\u043b\u0435\u043d\u0435\u043d\u0438\u0435\"!
|
||||
Herbalism.Skillup=[[YELLOW]]\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0422\u0440\u0430\u0432\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u043e\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Mining.Ability.Length=[[RED]]\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f \"\u0421\u0443\u043f\u0435\u0440 \u0414\u0440\u043e\u0431\u0438\u043b\u043a\u0430\": [[YELLOW]]{0}\u0441.
|
||||
Herbalism.Skillup=\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0422\u0440\u0430\u0432\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u043e\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Mining.Ability.Length=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f \"\u0421\u0443\u043f\u0435\u0440 \u0414\u0440\u043e\u0431\u0438\u043b\u043a\u0430\": [[YELLOW]]{0}\u0441.
|
||||
Mining.Ability.Locked.0=\u0417\u0410\u0411\u041b\u041e\u041a\u0418\u0420\u041e\u0412\u0410\u041d\u041e \u0414\u041e \u0414\u041e\u0421\u0422\u0418\u0416\u0415\u041d\u0418\u042f {0}+ \u0423\u0420\u041e\u0412\u041d\u042f \u041d\u0410\u0412\u042b\u041a\u0410 (\u041f\u041e\u0414\u0420\u042b\u0412\u041d\u0410\u042f \u0414\u041e\u0411\u042b\u0427\u0410)
|
||||
Mining.Ability.Locked.1=\u0417\u0410\u0411\u041b\u041e\u041a\u0418\u0420\u041e\u0412\u0410\u041d\u041e \u0414\u041e \u0414\u041e\u0421\u0422\u0418\u0416\u0415\u041d\u0418\u042f {0}+ \u0423\u0420\u041e\u0412\u041d\u042f \u041d\u0410\u0412\u042b\u041a\u0410 (\u0411\u041e\u041b\u042c\u0428\u0418\u0415 \u0411\u041e\u041c\u0411\u042b)
|
||||
Mining.Ability.Locked.2=\u0417\u0410\u0411\u041b\u041e\u041a\u0418\u0420\u041e\u0412\u0410\u041d\u041e \u0414\u041e \u0414\u041e\u0421\u0422\u0418\u0416\u0415\u041d\u0418\u042f {0}+ \u0423\u0420\u041e\u0412\u041d\u042f \u041d\u0410\u0412\u042b\u041a\u0410 (\u042d\u041a\u0421\u041f\u0415\u0420\u0422 \u0412\u0417\u0420\u042b\u0412\u041e\u0412)
|
||||
@ -154,20 +154,20 @@ Mining.SubSkill.BiggerBombs.Name=\u0411\u043e\u043b\u044c\u0448\u0438\u0435 \u04
|
||||
Mining.SubSkill.BiggerBombs.Description=\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0432\u0430\u0435\u0442 \u0440\u0430\u0434\u0438\u0443\u0441 \u0432\u0437\u0440\u044b\u0432\u0430 \u0414\u0438\u043d\u0430\u043c\u0438\u0442\u0430
|
||||
Mining.SubSkill.DemolitionsExpertise.Name=\u042d\u043a\u0441\u043f\u0435\u0440\u0442 \u0412\u0437\u0440\u044b\u0432\u043e\u0432
|
||||
Mining.SubSkill.DemolitionsExpertise.Description=\u0423\u043c\u0435\u043d\u044c\u0448\u0430\u0435\u0442 \u0443\u0440\u043e\u043d \u043e\u0442 \u0432\u0437\u0440\u044b\u0432\u0430 \u0414\u0438\u043d\u0430\u043c\u0438\u0442\u0430
|
||||
Mining.Effect.Decrease=[[RED]]\u0421\u043d\u0438\u0436\u0435\u043d\u0438\u0435 \u043f\u043e\u0432\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0439 \u0434\u043b\u044f \u042d\u043a\u0441\u043f\u0435\u0440\u0442 \u0412\u0437\u0440\u044b\u0432\u043e\u0432 \u043d\u0430: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=[[RED]]\u0428\u0430\u043d\u0441 \u0414\u0432\u043e\u0439\u043d\u043e\u0433\u043e \u0414\u0440\u043e\u043f\u0430: [[YELLOW]]{0} %
|
||||
Mining.Effect.Decrease=\u0421\u043d\u0438\u0436\u0435\u043d\u0438\u0435 \u043f\u043e\u0432\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0439 \u0434\u043b\u044f \u042d\u043a\u0441\u043f\u0435\u0440\u0442 \u0412\u0437\u0440\u044b\u0432\u043e\u0432 \u043d\u0430: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=\u0428\u0430\u043d\u0441 \u0414\u0432\u043e\u0439\u043d\u043e\u0433\u043e \u0414\u0440\u043e\u043f\u0430: [[YELLOW]]{0} %
|
||||
Mining.Listener=\u0428\u0430\u0445\u0442\u0451\u0440\u0441\u0442\u0432\u043e:
|
||||
Mining.SkillName=\u0428\u0410\u0425\u0422\u0415\u0420\u0421\u0422\u0412\u041e
|
||||
Mining.Skills.SuperBreaker.Off=[[RED]]**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0421\u0443\u043f\u0435\u0440 \u0414\u0440\u043e\u0431\u0438\u043b\u043a\u0430\" \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435**
|
||||
Mining.Skills.SuperBreaker.Off=**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0421\u0443\u043f\u0435\u0440 \u0414\u0440\u043e\u0431\u0438\u043b\u043a\u0430\" \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435**
|
||||
Mining.Skills.SuperBreaker.On=[[GREEN]]**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0421\u0443\u043f\u0435\u0440 \u0414\u0440\u043e\u0431\u0438\u043b\u043a\u0430\" \u0410\u041a\u0422\u0418\u0412\u0418\u0420\u041e\u0412\u0410\u041d\u041e**
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[RED]]\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0421\u0443\u043f\u0435\u0440 \u0414\u0440\u043e\u0431\u0438\u043b\u043a\u0430\"[[GREEN]] \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0443 [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.Off=\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0421\u0443\u043f\u0435\u0440 \u0414\u0440\u043e\u0431\u0438\u043b\u043a\u0430\"[[GREEN]] \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0443 [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043b \u0443\u043c\u0435\u043d\u0438\u0435 [[RED]]\"\u0421\u0443\u043f\u0435\u0440 \u0414\u0440\u043e\u0431\u0438\u043b\u043a\u0430\"!
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]\u0412\u0430\u0448\u0430 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c [[YELLOW]]\u041a\u043e\u043f\u0430\u0442\u0435\u043b\u044c [[GREEN]]\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430!
|
||||
Mining.Skillup=[[YELLOW]]\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0428\u0430\u0445\u0442\u0451\u0440\u0441\u0442\u0432\u043e\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Mining.Skillup=\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0428\u0430\u0445\u0442\u0451\u0440\u0441\u0442\u0432\u043e\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Mining.Blast.Boom=[[GRAY]]**\u0411\u0423\u041c**
|
||||
Mining.Blast.Effect=+{0} \u0440\u0443\u0434\u044b, -{1} \u043c\u0443\u0441\u043e\u0440\u0430, {2}x \u0434\u0440\u043e\u043f
|
||||
Mining.Blast.Radius.Increase=[[RED]]\u0420\u0430\u0434\u0438\u0443\u0441 \u0412\u0437\u0440\u044b\u0432\u0430 \u0423\u0432\u0435\u043b\u0438\u0447\u0435\u043d: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=[[RED]]\u041f\u043e\u0434\u0440\u044b\u0432\u043d\u0430\u044f \u0414\u043e\u0431\u044b\u0447\u0430: [[YELLOW]] \u0420\u0430\u043d\u0433 {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Radius.Increase=\u0420\u0430\u0434\u0438\u0443\u0441 \u0412\u0437\u0440\u044b\u0432\u0430 \u0423\u0432\u0435\u043b\u0438\u0447\u0435\u043d: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=\u041f\u043e\u0434\u0440\u044b\u0432\u043d\u0430\u044f \u0414\u043e\u0431\u044b\u0447\u0430: [[YELLOW]] \u0420\u0430\u043d\u0433 {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043b \u0443\u043c\u0435\u043d\u0438\u0435 [[RED]]\"\u041f\u043e\u0434\u0440\u044b\u0432\u043d\u0430\u044f \u0414\u043e\u0431\u044b\u0447\u0430\"!
|
||||
Mining.Blast.Refresh=[[GREEN]]\u0412\u0430\u0448\u0435 \u0443\u043c\u0435\u043d\u0438\u0435 [[YELLOW]]\"\u041f\u043e\u0434\u0440\u044b\u0432\u043d\u0430\u044f \u0414\u043e\u0431\u044b\u0447\u0430\" [[GREEN]]\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e!
|
||||
Repair.SubSkill.Repair.Name=\u0420\u0435\u043c\u043e\u043d\u0442
|
||||
@ -198,33 +198,33 @@ Repair.Skills.AdeptDiamond=[[DARK_RED]]\u0412\u044b \u043d\u0435\u0434\u043e\u04
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]\u0412\u044b \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043e\u043f\u044b\u0442\u043d\u044b, \u0447\u0442\u043e\u0431\u044b \u0447\u0438\u043d\u0438\u0442\u044c \u0437\u043e\u043b\u043e\u0442\u044b\u0435 \u0432\u0435\u0449\u0438.
|
||||
Repair.Skills.AdeptIron=[[DARK_RED]]\u0412\u044b \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043e\u043f\u044b\u0442\u043d\u044b, \u0447\u0442\u043e\u0431\u044b \u0447\u0438\u043d\u0438\u0442\u044c \u0436\u0435\u043b\u0435\u0437\u043d\u044b\u0435 \u0432\u0435\u0449\u0438.
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]\u0412\u044b \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043e\u043f\u044b\u0442\u043d\u044b, \u0447\u0442\u043e\u0431\u044b \u0447\u0438\u043d\u0438\u0442\u044c \u043a\u0430\u043c\u0435\u043d\u043d\u044b\u0435 \u0432\u0435\u0449\u0438.
|
||||
Repair.Skills.Adept=[[RED]]\u0423 \u0412\u0430\u0441 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0443\u0440\u043e\u0432\u0435\u043d\u044c [[YELLOW]]{0}[[RED]], \u0447\u0442\u043e\u0431\u044b \u043e\u0442\u0440\u0435\u043c\u043e\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c [[YELLOW]]{1}
|
||||
Repair.Skills.Adept=\u0423 \u0412\u0430\u0441 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0443\u0440\u043e\u0432\u0435\u043d\u044c [[YELLOW]]{0}[[RED]], \u0447\u0442\u043e\u0431\u044b \u043e\u0442\u0440\u0435\u043c\u043e\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c [[YELLOW]]{1}
|
||||
Repair.Skills.FeltEasy=[[GRAY]]\u042d\u0442\u043e \u0431\u044b\u043b\u043e \u043b\u0435\u0433\u043a\u043e.
|
||||
Repair.Skills.FullDurability=[[GRAY]]\u042d\u0442\u043e \u0443\u0436\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0447\u043d\u043e\u0441\u0442\u044c.
|
||||
Repair.Skills.SalvageSuccess=[[GRAY]]\u041f\u0440\u0435\u0434\u043c\u0435\u0442 \u0440\u0430\u0437\u043e\u0431\u0440\u0430\u043d!
|
||||
Repair.Skills.NotFullDurability=[[DARK_RED]]\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0430\u0437\u043e\u0431\u0440\u0430\u0442\u044c \u043f\u043e\u0432\u0440\u0435\u0436\u0434\u0435\u043d\u043d\u044b\u0435 \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u044b..
|
||||
Repair.Skills.Mastery=[[RED]]\u041c\u0430\u0441\u0442\u0435\u0440 \u0420\u0435\u043c\u043e\u043d\u0442\u0430: [[YELLOW]]\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e {0} \u043f\u0440\u043e\u0447\u043d\u043e\u0441\u0442\u0438
|
||||
Repair.Skills.Mastery=\u041c\u0430\u0441\u0442\u0435\u0440 \u0420\u0435\u043c\u043e\u043d\u0442\u0430: [[YELLOW]]\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e {0} \u043f\u0440\u043e\u0447\u043d\u043e\u0441\u0442\u0438
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0435\u043c\u043e\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0435\u0449\u0438 \u0432 \u0441\u0442\u0430\u043a\u0430\u0445.
|
||||
Repair.Skills.Super.Chance=[[RED]]\u0428\u0430\u043d\u0441 \u0421\u0443\u043f\u0435\u0440 \u0420\u0435\u043c\u043e\u043d\u0442\u0430: [[YELLOW]]{0} %
|
||||
Repair.Skillup=[[YELLOW]]\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0420\u0435\u043c\u043e\u043d\u0442\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Repair.Skills.Super.Chance=\u0428\u0430\u043d\u0441 \u0421\u0443\u043f\u0435\u0440 \u0420\u0435\u043c\u043e\u043d\u0442\u0430: [[YELLOW]]{0} %
|
||||
Repair.Skillup=\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0420\u0435\u043c\u043e\u043d\u0442\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Repair.Pretty.Name=\u0420\u0435\u043c\u043e\u043d\u0442
|
||||
Salvage.Pretty.Name=\u0423\u0442\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]\u0428\u0430\u043d\u0441 \u0443\u0445\u0443\u0434\u0448\u0435\u043d\u0438\u044f \u043f\u0440\u0438 \u0412\u043e\u043b\u0448\u0435\u0431\u043d\u043e\u0439 \u041a\u043e\u0432\u043a\u0435: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]\u0428\u0430\u043d\u0441 \u0443\u0434\u0430\u0447\u043d\u043e\u0439 \"\u0412\u043e\u043b\u0448\u0435\u0431\u043d\u043e\u0439 \u041a\u043e\u0432\u043a\u0438\": [[YELLOW]]{0}%
|
||||
Repair.Arcane.Downgrade=[[RED]]\u0412\u043e\u043b\u0448\u0435\u0431\u043d\u0430\u044f \u0441\u0438\u043b\u0430 \u044d\u0442\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0430 \u0443\u043c\u0435\u043d\u044c\u0448\u0430\u0435\u0442\u0441\u044f.
|
||||
Repair.Arcane.Fail=[[RED]]\u0412\u043e\u043b\u0448\u0435\u0431\u043d\u0430\u044f \u0441\u0438\u043b\u0430 \u043d\u0430\u0432\u0441\u0435\u0433\u0434\u0430 \u043f\u043e\u043a\u0438\u043d\u0443\u043b\u0430 \u043f\u0440\u0435\u0434\u043c\u0435\u0442.
|
||||
Repair.Arcane.Lost=[[RED]]\u0412\u044b \u043d\u0435 \u0440\u0430\u0437\u0432\u0438\u0442\u044b \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e, \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0437\u0430\u0447\u0430\u0440\u043e\u0432\u0430\u043d\u0438\u044f.
|
||||
Repair.Arcane.Downgrade=\u0412\u043e\u043b\u0448\u0435\u0431\u043d\u0430\u044f \u0441\u0438\u043b\u0430 \u044d\u0442\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0430 \u0443\u043c\u0435\u043d\u044c\u0448\u0430\u0435\u0442\u0441\u044f.
|
||||
Repair.Arcane.Fail=\u0412\u043e\u043b\u0448\u0435\u0431\u043d\u0430\u044f \u0441\u0438\u043b\u0430 \u043d\u0430\u0432\u0441\u0435\u0433\u0434\u0430 \u043f\u043e\u043a\u0438\u043d\u0443\u043b\u0430 \u043f\u0440\u0435\u0434\u043c\u0435\u0442.
|
||||
Repair.Arcane.Lost=\u0412\u044b \u043d\u0435 \u0440\u0430\u0437\u0432\u0438\u0442\u044b \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e, \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0437\u0430\u0447\u0430\u0440\u043e\u0432\u0430\u043d\u0438\u044f.
|
||||
Repair.Arcane.Perfect=[[GREEN]]\u0412\u044b \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0430\u043b\u0438 \u0432\u043e\u043b\u0448\u0435\u0431\u043d\u0443\u044e \u0441\u0438\u043b\u0443 \u044d\u0442\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0430.
|
||||
Repair.Arcane.Rank=[[RED]]\u0412\u043e\u043b\u0448\u0435\u0431\u043d\u0430\u044f \u041a\u043e\u0432\u043a\u0430: [[YELLOW]]\u0420\u0430\u043d\u0433 {0}/4
|
||||
Repair.Arcane.Rank=\u0412\u043e\u043b\u0448\u0435\u0431\u043d\u0430\u044f \u041a\u043e\u0432\u043a\u0430: [[YELLOW]]\u0420\u0430\u043d\u0433 {0}/4
|
||||
Swords.Ability.Lower=[[GREEN]]**\u041c\u0415\u0427 \u0412 \u041e\u0411\u042b\u0427\u041d\u041e\u041c \u0421\u041e\u0421\u0422\u041e\u042f\u041d\u0418\u0418**
|
||||
Swords.Ability.Ready=[[GREEN]]**\u041c\u0415\u0427 \u0412 \u0421\u041e\u0421\u0422\u041e\u042f\u041d\u0418\u0418 \u0413\u041e\u0422\u041e\u0412\u041d\u041e\u0421\u0422\u0418**
|
||||
Swords.Combat.Bleed.Chance=[[RED]]\u0428\u0430\u043d\u0441 \u043d\u0430\u043d\u0435\u0441\u0442\u0438 \u041a\u0440\u043e\u0432\u043e\u0442\u043e\u0447\u0430\u0449\u0438\u0439 \u0423\u0434\u0430\u0440: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=[[RED]]\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u041a\u0440\u043e\u0432\u043e\u0442\u0435\u0447\u0435\u043d\u0438\u044f: [[YELLOW]]{0} \u0442\u0438\u043a\u043e\u0432
|
||||
Swords.Combat.Bleed.Chance=\u0428\u0430\u043d\u0441 \u043d\u0430\u043d\u0435\u0441\u0442\u0438 \u041a\u0440\u043e\u0432\u043e\u0442\u043e\u0447\u0430\u0449\u0438\u0439 \u0423\u0434\u0430\u0440: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u041a\u0440\u043e\u0432\u043e\u0442\u0435\u0447\u0435\u043d\u0438\u044f: [[YELLOW]]{0} \u0442\u0438\u043a\u043e\u0432
|
||||
Swords.Combat.Bleed.Note=[[GRAY]]\u0417\u0410\u041c\u0415\u0422\u041a\u0410: [[YELLOW]]1 \u0422\u0438\u043a \u0441\u043b\u0443\u0447\u0430\u0435\u0442\u0441\u044f \u043a\u0430\u0436\u0434\u044b\u0435 2 \u0441\u0435\u043a\u0443\u043d\u0434\u044b
|
||||
Swords.Combat.Bleeding.Started=[[DARK_RED]] \u0412\u044b \u0438\u0441\u0442\u0435\u043a\u0430\u0435\u0442\u0435 \u043a\u0440\u043e\u0432\u044c\u044e!
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]\u041a\u0440\u043e\u0432\u043e\u0442\u0435\u0447\u0435\u043d\u0438\u0435 [[GREEN]]\u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e\u0441\u044c[[GRAY]]!
|
||||
Swords.Combat.Bleeding=[[GREEN]]**\u0412\u0420\u0410\u0413 \u0418\u0421\u0422\u0415\u041a\u0410\u0415\u0422 \u041a\u0420\u041e\u0412\u042c\u042e**
|
||||
Swords.Combat.Counter.Chance=[[RED]]\u0428\u0430\u043d\u0441 \u041a\u043e\u043d\u0442\u0440\u0430\u0442\u0430\u043a\u0438: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Chance=\u0428\u0430\u043d\u0441 \u041a\u043e\u043d\u0442\u0440\u0430\u0442\u0430\u043a\u0438: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Hit=[[DARK_RED]]\u041f\u043e\u0440\u0430\u0436\u0435\u043d \u043a\u043e\u043d\u0442\u0440\u0430\u0442\u0430\u043a\u043e\u0439!
|
||||
Swords.Combat.Countered=[[GREEN]]**\u041a\u041e\u041d\u0422\u0420\u0410\u0422\u0410\u041a\u0410**
|
||||
Swords.Combat.SS.Struck=[[DARK_RED]]\u041f\u043e\u0440\u0430\u0436\u0435\u043d \u0420\u0415\u0416\u0423\u0429\u0418\u041c \u0423\u0414\u0410\u0420\u041e\u041c!
|
||||
@ -238,13 +238,13 @@ Swords.SubSkill.Bleed.Name=\u041a\u0440\u043e\u0432\u043e\u0442\u0435\u0447\u043
|
||||
Swords.SubSkill.Bleed.Description=\u0417\u0430\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u0440\u0430\u0433\u0430 \u043a\u0440\u043e\u0432\u043e\u0442\u043e\u0447\u0438\u0442\u044c
|
||||
Swords.Listener=\u0412\u043b\u0430\u0434\u0435\u043d\u0438\u0435 \u043c\u0435\u0447\u0430\u043c\u0438:
|
||||
Swords.SkillName=\u0412\u041b\u0410\u0414\u0415\u041d\u0418\u0415 \u041c\u0415\u0427\u0415\u041c
|
||||
Swords.Skills.SS.Off=[[RED]]**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0420\u0435\u0436\u0443\u0449\u0438\u0439 \u0443\u0434\u0430\u0440\" \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435**
|
||||
Swords.Skills.SS.Off=**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0420\u0435\u0436\u0443\u0449\u0438\u0439 \u0443\u0434\u0430\u0440\" \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435**
|
||||
Swords.Skills.SS.On=[[GREEN]]**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0420\u0435\u0436\u0443\u0449\u0438\u0439 \u0443\u0434\u0430\u0440\" \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043e**
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]\u0412\u0430\u0448\u0435 \u0443\u043c\u0435\u043d\u0438\u0435 [[YELLOW]]\"\u0420\u0435\u0436\u0443\u0449\u0438\u0439 \u0423\u0434\u0430\u0440\" [[GREEN]]\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e!
|
||||
Swords.Skills.SS.Other.Off=[[GREEN]]\u0423\u043c\u0435\u043d\u0438\u0435 \"[[RED]]\u0420\u0435\u0436\u0443\u0449\u0438\u0439 \u0443\u0434\u0430\u0440[[GREEN]]\" \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0443 [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043b \u0443\u043c\u0435\u043d\u0438\u0435 [[RED]]\"\u0420\u0435\u0436\u0443\u0449\u0438\u0439 \u0423\u0434\u0430\u0440\"!
|
||||
Swords.Skillup=[[YELLOW]]\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0412\u043b\u0430\u0434\u0435\u043d\u0438\u0435 \u041c\u0435\u0447\u0435\u043c\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Swords.SS.Length=[[RED]]\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f \"\u0420\u0435\u0436\u0443\u0449\u0438\u0439 \u0423\u0434\u0430\u0440\": [[YELLOW]]{0}\u0441.
|
||||
Swords.Skillup=\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0412\u043b\u0430\u0434\u0435\u043d\u0438\u0435 \u041c\u0435\u0447\u0435\u043c\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Swords.SS.Length=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f \"\u0420\u0435\u0436\u0443\u0449\u0438\u0439 \u0423\u0434\u0430\u0440\": [[YELLOW]]{0}\u0441.
|
||||
Taming.Ability.Bonus.0=\u0417\u043d\u0430\u043d\u0438\u0435 \u041e\u043a\u0440\u0443\u0436\u0430\u044e\u0449\u0435\u0439 \u0421\u0440\u0435\u0434\u044b
|
||||
Taming.Ability.Bonus.1=\u0412\u043e\u043b\u043a\u0438 \u0438\u0437\u0431\u0435\u0433\u0430\u044e\u0442 \u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438
|
||||
Taming.Ability.Bonus.2=\u0413\u0443\u0441\u0442\u043e\u0439 \u041c\u0435\u0445
|
||||
@ -263,7 +263,7 @@ Taming.Ability.Locked.2=\u0417\u0410\u0411\u041b\u041e\u041a\u0418\u0420\u041e\u
|
||||
Taming.Ability.Locked.3=\u0417\u0410\u0411\u041b\u041e\u041a\u0418\u0420\u041e\u0412\u0410\u041d\u041e \u0414\u041e \u0414\u041e\u0421\u0422\u0418\u0416\u0415\u041d\u0418\u042f {0}+ \u0423\u0420\u041e\u0412\u041d\u042f \u041d\u0410\u0412\u042b\u041a\u0410 (\u041e\u0421\u0422\u0420\u042b\u0415 \u041a\u041e\u0413\u0422\u0418)
|
||||
Taming.Ability.Locked.4=\u0417\u0410\u0411\u041b\u041e\u041a\u0418\u0420\u041e\u0412\u0410\u041d\u041e \u0414\u041e \u0414\u041e\u0421\u0422\u0418\u0416\u0415\u041d\u0418\u042f {0}+ \u0423\u0420\u041e\u0412\u041d\u042f \u041d\u0410\u0412\u042b\u041a\u0410 (\u0411\u042b\u0421\u0422\u0420\u041e\u0415 \u041f\u0418\u0422\u0410\u041d\u0418\u0415)
|
||||
Taming.Ability.Locked.5=\u0417\u0410\u0411\u041b\u041e\u041a\u0418\u0420\u041e\u0412\u0410\u041d\u041e \u0414\u041e \u0414\u041e\u0421\u0422\u0418\u0416\u0415\u041d\u0418\u042f {0}+ \u0423\u0420\u041e\u0412\u041d\u042f \u041d\u0410\u0412\u042b\u041a\u0410 (\u0421\u0412\u042f\u0422\u041e\u0419 \u041f\u0415\u0421)
|
||||
Taming.Combat.Chance.Gore=[[RED]]\u0428\u0430\u043d\u0441 \u0423\u043a\u0443\u0441\u0430: [[YELLOW]]{0}
|
||||
Taming.Combat.Chance.Gore=\u0428\u0430\u043d\u0441 \u0423\u043a\u0443\u0441\u0430: [[YELLOW]]{0}
|
||||
Taming.SubSkill.BeastLore.Name=\u0417\u043d\u0430\u043d\u0438\u0435 \u0417\u0432\u0435\u0440\u0435\u0439
|
||||
Taming.SubSkill.BeastLore.Description=\u0423\u0434\u0430\u0440 \u043a\u043e\u0441\u0442\u044c\u044e \u0434\u043b\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0432\u043e\u043b\u043a\u043e\u0432 \u0438 \u043e\u0446\u0435\u043b\u043e\u0442\u043e\u0432
|
||||
Taming.SubSkill.ShockProof.Name=\u041d\u0430\u0434\u0435\u0436\u043d\u0430\u044f \u0417\u0430\u0449\u0438\u0442\u0430
|
||||
@ -288,19 +288,19 @@ Taming.SubSkill.ThickFur.Description=\u0421\u043d\u0438\u0436\u0435\u043d\u0438\
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]\u0412\u0430\u0448 \u0432\u043e\u043b\u043a \u0445\u043e\u0447\u0435\u0442 \u0432\u0435\u0440\u043d\u0443\u0442\u0441\u044f \u043a \u0412\u0430\u043c...
|
||||
Taming.Listener=\u0423\u043a\u0440\u043e\u0449\u0435\u043d\u0438\u0435:
|
||||
Taming.SkillName=\u0423\u041a\u0420\u041e\u0429\u0415\u041d\u0418\u0415
|
||||
Taming.Skillup=[[YELLOW]]\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0423\u043a\u0440\u043e\u0449\u0435\u043d\u0438\u0435\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Taming.Skillup=\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0423\u043a\u0440\u043e\u0449\u0435\u043d\u0438\u0435\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Taming.Summon.Complete=[[GREEN]]\u0412\u044b\u0437\u043e\u0432 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d
|
||||
Taming.Summon.Fail.Ocelot=[[RED]]\u0412\u043e\u043a\u0440\u0443\u0433 \u0412\u0430\u0441 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043e\u0446\u0435\u043b\u043e\u0442\u043e\u0432.
|
||||
Taming.Summon.Fail.Wolf=[[RED]]\u0412\u043e\u043a\u0440\u0443\u0433 \u0412\u0430\u0441 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u0432\u043e\u043b\u043a\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0437\u0432\u0430\u0442\u044c \u0435\u0449\u0435.
|
||||
Taming.Summon.Fail.Horse=[[RED]]\u0412\u043e\u043a\u0440\u0443\u0433 \u0432\u0430\u0441 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043b\u043e\u0448\u0430\u0434\u0435\u0439 \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0437\u0432\u0430\u0442\u044c \u0435\u0449\u0435.
|
||||
Taming.Summon.Fail.Ocelot=\u0412\u043e\u043a\u0440\u0443\u0433 \u0412\u0430\u0441 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043e\u0446\u0435\u043b\u043e\u0442\u043e\u0432.
|
||||
Taming.Summon.Fail.Wolf=\u0412\u043e\u043a\u0440\u0443\u0433 \u0412\u0430\u0441 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u0432\u043e\u043b\u043a\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0437\u0432\u0430\u0442\u044c \u0435\u0449\u0435.
|
||||
Taming.Summon.Fail.Horse=\u0412\u043e\u043a\u0440\u0443\u0433 \u0432\u0430\u0441 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043b\u043e\u0448\u0430\u0434\u0435\u0439 \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0437\u0432\u0430\u0442\u044c \u0435\u0449\u0435.
|
||||
Taming.Summon.Name.Format={0}s {1}
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f \"\u0411\u0435\u0440\u0441\u0435\u0440\u043a\": [[YELLOW]]{0}\u0441.
|
||||
Unarmed.Ability.Berserk.Length=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f \"\u0411\u0435\u0440\u0441\u0435\u0440\u043a\": [[YELLOW]]{0}\u0441.
|
||||
Unarmed.Ability.Bonus.0=\u0421\u0442\u0438\u043b\u044c \"\u0416\u0435\u043b\u0435\u0437\u043d\u044b\u0439 \u041a\u0443\u043b\u0430\u043a\"
|
||||
Unarmed.Ability.Bonus.1=\u0423\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u0435 \u0423\u0440\u043e\u043d\u0430 \u043d\u0430 {0}
|
||||
Unarmed.Ability.Chance.ArrowDeflect=[[RED]]\u0428\u0430\u043d\u0441 \u041e\u0442\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0421\u0442\u0440\u0435\u043b: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=[[RED]]\u0428\u0430\u043d\u0441 \u0420\u0430\u0437\u043e\u0440\u0443\u0436\u0438\u0442\u044c: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=[[RED]]\u0428\u0430\u043d\u0441 \u0416\u0435\u043b\u0435\u0437\u043d\u043e\u0439 \u0425\u0432\u0430\u0442\u043a\u0438: [[YELLOW]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=[[RED]]\u0423 \u0432\u0430\u0448\u0435\u0433\u043e \u043e\u043f\u043f\u043e\u043d\u0435\u043d\u0442\u0430 \u0436\u0435\u043b\u0435\u0437\u043d\u0430\u044f \u0445\u0432\u0430\u0442\u043a\u0430!
|
||||
Unarmed.Ability.Chance.ArrowDeflect=\u0428\u0430\u043d\u0441 \u041e\u0442\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0421\u0442\u0440\u0435\u043b: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=\u0428\u0430\u043d\u0441 \u0420\u0430\u0437\u043e\u0440\u0443\u0436\u0438\u0442\u044c: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=\u0428\u0430\u043d\u0441 \u0416\u0435\u043b\u0435\u0437\u043d\u043e\u0439 \u0425\u0432\u0430\u0442\u043a\u0438: [[YELLOW]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=\u0423 \u0432\u0430\u0448\u0435\u0433\u043e \u043e\u043f\u043f\u043e\u043d\u0435\u043d\u0442\u0430 \u0436\u0435\u043b\u0435\u0437\u043d\u0430\u044f \u0445\u0432\u0430\u0442\u043a\u0430!
|
||||
Unarmed.Ability.IronGrip.Defender=[[GREEN]]\u0412\u0430\u0448\u0430 \u0436\u0435\u043b\u0435\u0437\u043d\u0430\u044f \u0445\u0432\u0430\u0442\u043a\u0430 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u0438\u043b\u0430 \u0440\u0430\u0437\u043e\u0440\u0443\u0436\u0435\u043d\u0438\u0435!
|
||||
Unarmed.Ability.Lower=[[GREEN]]**\u041a\u0423\u041b\u0410\u041a\u0418 \u0412 \u041e\u0411\u042b\u0427\u041d\u041e\u041c \u0421\u041e\u0421\u0422\u041e\u042f\u041d\u0418\u0418**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**\u041a\u0423\u041b\u0410\u041a\u0418 \u0412 \u0421\u041e\u0421\u0422\u041e\u042f\u041d\u0418\u0418 \u0413\u041e\u0422\u041e\u0412\u041d\u041e\u0421\u0422\u0418**
|
||||
@ -316,16 +316,16 @@ Unarmed.SubSkill.IronGrip.Name=\u0416\u0435\u043b\u0435\u0437\u043d\u0430\u044f
|
||||
Unarmed.SubSkill.IronGrip.Description=\u041f\u0440\u0435\u043f\u044f\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0440\u0430\u0437\u043e\u0440\u0443\u0436\u0435\u043d\u0438\u044e \u0432\u0430\u0441 \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u043e\u043c
|
||||
Unarmed.Listener=\u0411\u0435\u0437\u043e\u0440\u0443\u0436\u043d\u044b\u0439:
|
||||
Unarmed.SkillName=\u0411\u0415\u0417\u041e\u0420\u0423\u0416\u041d\u042b\u0419
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0411\u0435\u0440\u0441\u0435\u0440\u043a\" \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435**
|
||||
Unarmed.Skills.Berserk.Off=**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0411\u0435\u0440\u0441\u0435\u0440\u043a\" \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435**
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0411\u0435\u0440\u0441\u0435\u0440\u043a\" \u0410\u041a\u0422\u0418\u0412\u0418\u0420\u041e\u0412\u0410\u041d\u041e**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[GREEN]]\u0423\u043c\u0435\u043d\u0438\u0435 \"[[RED]]\u0411\u0435\u0440\u0441\u0435\u0440\u043a[[GREEN]]\" \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0443 [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0432\u043a\u043b\u044e\u0447\u0438\u043b [[RED]]\u0443\u043c\u0435\u043d\u0438\u0435 \"\u0411\u0435\u0440\u0441\u0435\u0440\u043a\"!
|
||||
Unarmed.Skills.Berserk.Refresh=[[GREEN]]\u0412\u0430\u0448\u0435 \u0443\u043c\u0435\u043d\u0438\u0435 [[YELLOW]]\"\u0411\u0435\u0440\u0441\u0435\u0440\u043a\" [[GREEN]]\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e!
|
||||
Unarmed.Skillup=[[YELLOW]]\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0411\u0435\u0437\u043e\u0440\u0443\u0436\u043d\u044b\u0439\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Unarmed.Skillup=\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u0411\u0435\u0437\u043e\u0440\u0443\u0436\u043d\u044b\u0439\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Woodcutting.Ability.0=\u0421\u0434\u0443\u0432\u0430\u0442\u0435\u043b\u044c \u041b\u0438\u0441\u0442\u044c\u0435\u0432
|
||||
Woodcutting.Ability.1=\u0421\u0434\u0443\u0432\u0430\u0439\u0442\u0435 \u043b\u0438\u0441\u0442\u044c\u044f \u043f\u0440\u043e\u0447\u044c!
|
||||
Woodcutting.Ability.Chance.DDrop=[[RED]]\u0428\u0430\u043d\u0441 \u0414\u0432\u043e\u0439\u043d\u043e\u0433\u043e \u0414\u0440\u043e\u043f\u0430: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=[[RED]]\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f \"\u041b\u0435\u0441\u043e\u0440\u0443\u0431\": [[YELLOW]]{0}\u0441.
|
||||
Woodcutting.Ability.Chance.DDrop=\u0428\u0430\u043d\u0441 \u0414\u0432\u043e\u0439\u043d\u043e\u0433\u043e \u0414\u0440\u043e\u043f\u0430: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f \"\u041b\u0435\u0441\u043e\u0440\u0443\u0431\": [[YELLOW]]{0}\u0441.
|
||||
Woodcutting.Ability.Locked.0=\u0417\u0410\u0411\u041b\u041e\u041a\u0418\u0420\u041e\u0412\u0410\u041d\u041e \u0414\u041e \u0414\u041e\u0421\u0422\u0418\u0416\u0415\u041d\u0418\u042f {0}+ \u0423\u0420\u041e\u0412\u041d\u042f \u041d\u0410\u0412\u042b\u041a\u0410 (\u0421\u0414\u0423\u0412\u0410\u0422\u0415\u041b\u042c \u041b\u0418\u0421\u0422\u042c\u0415\u0412)
|
||||
Woodcutting.SubSkill.TreeFeller.Name=\u041b\u0435\u0441\u043e\u0440\u0443\u0431 (\u0423\u041c\u0415\u041d\u0418\u0415)
|
||||
Woodcutting.SubSkill.TreeFeller.Description=\u0412\u0437\u0440\u044b\u0432\u0430\u0435\u0442 \u0434\u0435\u0440\u0435\u0432\u044c\u044f
|
||||
@ -340,25 +340,25 @@ Woodcutting.Skills.TreeFeller.On=[[GREEN]]**\u0423\u043c\u0435\u043d\u0438\u0435
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]\u0412\u0430\u0448\u0435 \u0443\u043c\u0435\u043d\u0438\u0435 [[YELLOW]]\"\u041b\u0435\u0441\u043e\u0440\u0443\u0431\" [[GREEN]]\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e!
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[GREEN]]\u0423\u043c\u0435\u043d\u0438\u0435 \"[[RED]]\u041b\u0435\u0441\u043e\u0440\u0443\u0431[[GREEN]]\" \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u043b\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0443 [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043b \u0443\u043c\u0435\u043d\u0438\u0435 [[RED]]\"\u041b\u0435\u0441\u043e\u0440\u0443\u0431\"!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]\u0412\u0410\u0428 \u0422\u041e\u041f\u041e\u0420 \u0420\u0410\u0421\u041a\u041e\u041b\u041e\u041b\u0421\u042f \u041d\u0410 \u0414\u0415\u0421\u042f\u0422\u041a\u0418 \u041a\u0423\u0421\u041a\u041e\u0412!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]\u042d\u0442\u043e \u0434\u0435\u0440\u0435\u0432\u043e \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0434\u043b\u0438\u043d\u043d\u043e\u0435!
|
||||
Woodcutting.Skillup=[[YELLOW]]\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u041b\u0435\u0441\u043e\u0440\u0443\u0431\u0441\u0442\u0432\u043e\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Woodcutting.Skills.TreeFeller.Splinter=\u0412\u0410\u0428 \u0422\u041e\u041f\u041e\u0420 \u0420\u0410\u0421\u041a\u041e\u041b\u041e\u041b\u0421\u042f \u041d\u0410 \u0414\u0415\u0421\u042f\u0422\u041a\u0418 \u041a\u0423\u0421\u041a\u041e\u0412!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=\u042d\u0442\u043e \u0434\u0435\u0440\u0435\u0432\u043e \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0434\u043b\u0438\u043d\u043d\u043e\u0435!
|
||||
Woodcutting.Skillup=\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \"\u041b\u0435\u0441\u043e\u0440\u0443\u0431\u0441\u0442\u0432\u043e\" \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d \u043d\u0430 {0}. \u0412\u0441\u0435\u0433\u043e ({1})
|
||||
Ability.Generic.Refresh=[[GREEN]]**\u0423\u041c\u0415\u041d\u0418\u042f \u0412\u041e\u0421\u0421\u0422\u0410\u041d\u041e\u0412\u041b\u0415\u041d\u042b!**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
Combat.ArrowDeflect=[[WHITE]]**\u0421\u0422\u0420\u0415\u041b\u0410 \u041e\u0422\u0421\u041a\u041e\u0427\u0418\u041b\u0410**
|
||||
Combat.BeastLore=[[GREEN]]**\u0423\u043c\u0435\u043d\u0438\u0435 \"\u0417\u043d\u0430\u043d\u0438\u0435 \u0417\u0432\u0435\u0440\u0435\u0439\" \u0410\u041a\u0422\u0418\u0412\u0418\u0420\u041e\u0412\u0410\u041d\u041e**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]\u0417\u0434\u043e\u0440\u043e\u0432\u044c\u0435 ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]\u0412\u043b\u0430\u0434\u0435\u043b\u0435\u0446 ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**\u0423\u041a\u0423\u0428\u0415\u041d**
|
||||
Combat.StruckByGore=[[RED]]**\u0412\u042b \u0411\u042b\u041b\u0418 \u0423\u041a\u0423\u0428\u0415\u041d\u042b**
|
||||
Combat.StruckByGore=**\u0412\u042b \u0411\u042b\u041b\u0418 \u0423\u041a\u0423\u0428\u0415\u041d\u042b**
|
||||
Combat.TargetDazed=\u0412\u0430\u0448\u0430 \u0446\u0435\u043b\u044c [[DARK_RED]]\u0428\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]\u0412\u044b \u0438\u0441\u0442\u0435\u043a\u0430\u0435\u0442\u0435 \u043a\u0440\u043e\u0432\u044c\u044e. \u041a\u0440\u0443\u0436\u0438\u0442\u0441\u044f \u0433\u043e\u043b\u043e\u0432\u0430.
|
||||
mcMMO.Description=[[DARK_AQUA]]\u041e \u043f\u0440\u043e\u044d\u043a\u0442\u0435 [[YELLOW]]mcMMO[[DARK_AQUA]]:,[[GOLD]]mcMMO \u044d\u0442\u043e [[RED]]\u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0439[[GOLD]] RPG \u043c\u043e\u0434, \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0439 \u0432 \u0444\u0435\u0432\u0440\u0430\u043b\u0435 2011,[[GOLD]]\u043a\u043e\u043c\u043c\u0430\u043d\u0434\u043e\u0439 [[BLUE]]nossr50[[GOLD]]. \u0415\u0433\u043e \u0446\u0435\u043b\u044c\u044e \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e RPG \u043e\u043f\u044b\u0442\u0430 \u0432 \u0438\u0433\u0440\u0435.,[[DARK_AQUA]]\u041f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0438:,[[GOLD]] - [[GREEN]]\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[RED]]/mcmmo help[[GREEN]] \u0447\u0442\u043e\u0431\u044b \u0443\u0432\u0438\u0434\u0435\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u043a\u043e\u043c\u043c\u0430\u043d\u0434\u044b,[[GOLD]] - [[GREEN]]\u041d\u0430\u043f\u0435\u0447\u0430\u0442\u0430\u0439\u0442\u0435 [[RED]]/SKILLNAME[[GREEN]] \u0447\u0442\u043e\u0431\u044b \u0443\u0432\u0438\u0434\u0435\u0442\u044c \u0434\u0435\u0442\u0430\u043b\u044c\u043d\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u043d\u0430\u0432\u044b\u043a\u0435,[[DARK_AQUA]]\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0438:,[[GOLD]] - [[GREEN]]nossr50 [[BLUE]](\u041e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b\u044c),[[GOLD]] - [[GREEN]]GJ [[BLUE]](\u041b\u0438\u0434\u0435\u0440 \u041f\u0440\u043e\u044d\u043a\u0442\u0430),[[GOLD]] - [[GREEN]]NuclearW [[BLUE]](\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a),[[GOLD]] - [[GREEN]]bm01 [[BLUE]](\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a),[[GOLD]] - [[GREEN]]TfT_02 [[BLUE]](\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a),[[GOLD]] - [[GREEN]]Glitchfinder [[BLUE]]\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a),[[GOLD]] - [[GREEN]]t00thpick1 [[BLUE]](\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a),[[DARK_AQUA]]\u041f\u043e\u043b\u0435\u0437\u043d\u044b\u0435 \u0441\u0441\u044b\u043b\u043a\u0438:,[[GOLD]] - [[GREEN]]https://github.com/mcMMO-Dev/mcMMO/issues[[GOLD]] \u041e\u0442\u0447\u0435\u0442\u044b \u043e \u0431\u0430\u0433\u0430\u0445,[[GOLD]] - [[GREEN]]#mcmmo @ irc.esper.net[[GOLD]] IRC \u0447\u0430\u0442,
|
||||
Commands.addlevels.AwardAll.1=[[GREEN]]\u0412\u044b \u0431\u044b\u043b\u0438 \u043d\u0430\u0433\u0440\u0430\u0436\u0434\u0435\u043d\u044b {0} \u043e\u0447\u043a\u0430\u043c\u0438 \u043e\u043f\u044b\u0442\u0430 \u0432\u043e \u0432\u0441\u0435\u0445 \u043d\u0430\u0432\u044b\u043a\u0430\u0445!
|
||||
Commands.addlevels.AwardAll.2=[[RED]]\u0412\u0441\u0435 \u043d\u0430\u0432\u044b\u043a\u0438 \u0431\u044b\u043b\u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u043d\u0430 {0}.
|
||||
Commands.addlevels.AwardAll.2=\u0412\u0441\u0435 \u043d\u0430\u0432\u044b\u043a\u0438 \u0431\u044b\u043b\u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u043d\u0430 {0}.
|
||||
Commands.addlevels.AwardSkill.1=[[GREEN]]\u0412\u044b \u0431\u044b\u043b\u0438 \u043d\u0430\u0433\u0440\u0430\u0436\u0434\u0435\u043d\u044b {0} \u0443\u0440\u043e\u0432\u043d\u044f\u043c\u0438 \u0432 {1}!
|
||||
Commands.addlevels.AwardSkill.2=[[RED]]{0} \u0431\u044b\u043b\u043e \u043c\u043e\u0434\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0434\u043b\u044f {1}.
|
||||
Commands.addlevels.AwardSkill.2={0} \u0431\u044b\u043b\u043e \u043c\u043e\u0434\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0434\u043b\u044f {1}.
|
||||
Commands.addxp.AwardAll=[[GREEN]]\u0412\u044b \u0431\u044b\u043b\u0438 \u043d\u0430\u0433\u0440\u0430\u0436\u0434\u0435\u043d\u044b {0} \u043e\u0447\u043a\u0430\u043c\u0438 \u043e\u043f\u044b\u0442\u0430 \u0432\u043e \u0432\u0441\u0435\u0445 \u043d\u0430\u0432\u044b\u043a\u0430\u0445!
|
||||
Commands.addxp.AwardSkill=[[GREEN]]\u0412\u044b \u0431\u044b\u043b\u0438 \u043d\u0430\u0433\u0440\u0430\u0436\u0434\u0435\u043d\u044b {0} \u043e\u0447\u043a\u0430\u043c\u0438 \u043e\u043f\u044b\u0442\u0430 \u0432 {1}!
|
||||
Commands.Ability.Off=\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f [[RED]]\u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0430
|
||||
@ -366,16 +366,16 @@ Commands.Ability.On=\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442
|
||||
Commands.Ability.Toggle=\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u044f \u0432\u043a\u043b./\u043e\u0442\u043a\u043b. \u0434\u043b\u044f [[YELLOW]]{0}
|
||||
Commands.AdminChat.Off=\u0420\u0435\u0436\u0438\u043c \u0447\u0430\u0442\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u043c\u0435\u0436\u0434\u0443 \u0430\u0434\u043c\u0438\u043d\u0430\u043c\u0438 [[RED]]\u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d
|
||||
Commands.AdminChat.On=\u0420\u0435\u0436\u0438\u043c \u0447\u0430\u0442\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u043c\u0435\u0436\u0434\u0443 \u0430\u0434\u043c\u0438\u043d\u0430\u043c\u0438 [[RED]]\u0432\u043a\u043b\u044e\u0447\u0435\u043d
|
||||
Commands.AdminToggle=[[RED]]- \u0412\u043a\u043b./\u043e\u0442\u043a\u043b. \u0440\u0435\u0436\u0438\u043c \u0447\u0430\u0442\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u043c\u0435\u0436\u0434\u0443 \u0430\u0434\u043c\u0438\u043d\u0430\u043c\u0438
|
||||
Commands.AdminToggle=- \u0412\u043a\u043b./\u043e\u0442\u043a\u043b. \u0440\u0435\u0436\u0438\u043c \u0447\u0430\u0442\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u043c\u0435\u0436\u0434\u0443 \u0430\u0434\u043c\u0438\u043d\u0430\u043c\u0438
|
||||
Commands.Chat.Console=*\u041a\u043e\u043d\u0441\u043e\u043b\u044c*
|
||||
Commands.Cooldowns.Header=[[GOLD]]--= [[GREEN]]\u041a\u0443\u043b\u0434\u0430\u0443\u043d\u044b \u0423\u043c\u0435\u043d\u0438\u0439 mcMMO[[GOLD]] =--
|
||||
Commands.Cooldowns.Row.N=\\ [[RED]]{0}[[WHITE]] - [[GOLD]]{1} \u0441\u0435\u043a\u0443\u043d\u0434 \u043e\u0441\u0442\u0430\u043b\u043e\u0441\u044c
|
||||
Commands.Cooldowns.Row.Y=\\ [[AQUA]]{0}[[WHITE]] - [[DARK_GREEN]]\u0413\u043e\u0442\u043e\u0432!
|
||||
Commands.Database.Cooldown=[[RED]]\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u043f\u043e\u0434\u043e\u0436\u0434\u0430\u0442\u044c 1 \u0441\u0435\u043a\u0443\u043d\u0434\u0443 \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043e\u043f\u044f\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u0443 \u043a\u043e\u043c\u0430\u043d\u0434\u0443.
|
||||
Commands.Disabled=[[RED]]\u042d\u0442\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0430.
|
||||
Commands.DoesNotExist=[[RED]]\u0418\u0433\u0440\u043e\u043a\u0430 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0432 \u0431\u0430\u0437\u0435 \u0434\u0430\u043d\u043d\u044b\u0445!
|
||||
Commands.GodMode.Disabled=[[YELLOW]]\u0420\u0435\u0436\u0438\u043c-\u0431\u043e\u0433\u0430 mcMMO \u041e\u0442\u043a\u043b\u044e\u0447\u0435\u043d
|
||||
Commands.GodMode.Enabled=[[YELLOW]]\u0420\u0435\u0436\u0438\u043c-\u0431\u043e\u0433\u0430 mcMMO \u0412\u043a\u043b\u044e\u0447\u0435\u043d
|
||||
Commands.Database.Cooldown=\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u043f\u043e\u0434\u043e\u0436\u0434\u0430\u0442\u044c 1 \u0441\u0435\u043a\u0443\u043d\u0434\u0443 \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043e\u043f\u044f\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u0443 \u043a\u043e\u043c\u0430\u043d\u0434\u0443.
|
||||
Commands.Disabled=\u042d\u0442\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0430.
|
||||
Commands.DoesNotExist=\u0418\u0433\u0440\u043e\u043a\u0430 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0432 \u0431\u0430\u0437\u0435 \u0434\u0430\u043d\u043d\u044b\u0445!
|
||||
Commands.GodMode.Disabled=\u0420\u0435\u0436\u0438\u043c-\u0431\u043e\u0433\u0430 mcMMO \u041e\u0442\u043a\u043b\u044e\u0447\u0435\u043d
|
||||
Commands.GodMode.Enabled=\u0420\u0435\u0436\u0438\u043c-\u0431\u043e\u0433\u0430 mcMMO \u0412\u043a\u043b\u044e\u0447\u0435\u043d
|
||||
Commands.GodMode.Forbidden=[mcMMO] \u0420\u0435\u0436\u0438\u043c \u0411\u043e\u0433\u0430 \u043d\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d \u0432 \u044d\u0442\u043e\u043c \u043c\u0438\u0440\u0435 (\u0421\u043c\u043e\u0442\u0440\u0438 Permissions)
|
||||
Commands.GodMode.Toggle=\u0420\u0435\u0436\u0438\u043c \u0411\u043e\u0433\u0430 \u0432\u043a\u043b./\u043e\u0442\u043a\u043b. \u0434\u043b\u044f [[YELLOW]]{0}
|
||||
Commands.Healthbars.Changed.HEARTS=[mcMMO] \u0422\u0438\u043f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0448\u043a\u0430\u043b\u044b \u0437\u0434\u043e\u0440\u043e\u0432\u044c\u044f \u0431\u044b\u043b \u0438\u0437\u043c\u0435\u043d\u0435\u043d \u043d\u0430 [[YELLOW]]\u0421\u0435\u0440\u0434\u0446\u0430[[WHITE]].
|
||||
@ -386,83 +386,83 @@ Commands.Inspect=<player> [[RED]]- \u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u043d\u044f\u0442\u043e. \u0412\u044b \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0435\u043d\u0438\u043b\u0438\u0441\u044c \u043a \u0433\u0440\u0443\u043f\u0435 {0}
|
||||
Commands.Invite.Success=[[GREEN]]\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e.
|
||||
Commands.Leaderboards=<skill> <page> [[RED]]- \u0421\u043f\u0438\u0441\u043a\u0438 \u041b\u0438\u0434\u0435\u0440\u043e\u0432
|
||||
Commands.mcc.Header=[[RED]]---[][[YELLOW]]\u041a\u043e\u043c\u0430\u043d\u0434\u044b mcMMO[[RED]][]---
|
||||
Commands.mcgod=[[RED]]- \u0412\u043a\u043b./\u043e\u0442\u043a\u043b. \u0440\u0435\u0436\u0438\u043c-\u0431\u043e\u0433\u0430 mcMMO
|
||||
Commands.mchud.Invalid=[[RED]]\u042d\u0442\u043e \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439 \u0442\u0438\u043f \u041f\u0430\u043d\u0435\u043b\u0438 \u0412\u0430\u0436\u043d\u043e\u0439 \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438.
|
||||
Commands.mcc.Header=---[][[YELLOW]]\u041a\u043e\u043c\u0430\u043d\u0434\u044b mcMMO[[RED]][]---
|
||||
Commands.mcgod=- \u0412\u043a\u043b./\u043e\u0442\u043a\u043b. \u0440\u0435\u0436\u0438\u043c-\u0431\u043e\u0433\u0430 mcMMO
|
||||
Commands.mchud.Invalid=\u042d\u0442\u043e \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439 \u0442\u0438\u043f \u041f\u0430\u043d\u0435\u043b\u0438 \u0412\u0430\u0436\u043d\u043e\u0439 \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438.
|
||||
Commands.mcpurge.Success=[[GREEN]]\u0411\u0430\u0437\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 \u0431\u044b\u043b\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0430!
|
||||
Commands.mcrank.Heading=[[GOLD]]-=\u041f\u0415\u0420\u0421\u041e\u041d\u0410\u041b\u042c\u041d\u042b\u0415 \u0420\u0410\u041d\u0413\u0418=-
|
||||
Commands.mcrank.Overall=[[YELLOW]]\u041e\u0431\u0449\u0438\u0439[[GREEN]] - [[GOLD]]\u0420\u0430\u043d\u0433 [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=[[RED]]\u0426\u0415\u041b\u042c: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill=[[YELLOW]]{0}[[GREEN]] - [[GOLD]]\u0420\u0430\u043d\u0433 [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Overall=\u041e\u0431\u0449\u0438\u0439[[GREEN]] - [[GOLD]]\u0420\u0430\u043d\u0433 [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=\u0426\u0415\u041b\u042c: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill={0}[[GREEN]] - [[GOLD]]\u0420\u0430\u043d\u0433 [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Unranked=[[WHITE]]\u0420\u044f\u0434\u043e\u0432\u043e\u0439
|
||||
Commands.mcrefresh.Success=[[RED]]{0} \u043e\u0447\u043a\u043e\u0432 \u0443\u043c\u0435\u043d\u0438\u0439 \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e
|
||||
Commands.mcrefresh.Success={0} \u043e\u0447\u043a\u043e\u0432 \u0443\u043c\u0435\u043d\u0438\u0439 \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e
|
||||
Commands.mcremove.Success=[[GREEN]]{0} \u0431\u044b\u043b \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d \u0438\u0437 \u0431\u0430\u0437\u044b \u0434\u0430\u043d\u043d\u044b\u0445!
|
||||
Commands.mctop.Tip=[[GOLD]]\u041f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430: \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[RED]]/mcrank[[GOLD]] \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0432\u0441\u0435 \u0432\u0430\u0448\u0438 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0435 \u0440\u0430\u043d\u0433\u0438!
|
||||
Commands.mmoedit=[player] <skill> <newvalue> [[RED]] - \u041c\u043e\u0434\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u0446\u0435\u043b\u0438
|
||||
Commands.mmoedit.AllSkills.1=[[GREEN]]\u0412\u0430\u0448 \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u0432\u043e \u0432\u0441\u0435\u0445 \u043d\u0430\u0432\u044b\u043a\u0430\u0445 \u0431\u044b\u043b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d \u043d\u0430 {0}!
|
||||
Commands.mmoedit.Modified.1=[[GREEN]]\u0412\u0430\u0448 \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u0432 {0} \u0431\u044b\u043b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d \u043d\u0430 {1}!
|
||||
Commands.mmoedit.Modified.2=[[RED]]{0} \u0431\u044b\u043b\u043e \u043c\u043e\u0434\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0434\u043b\u044f {1}.
|
||||
Commands.mcconvert.Database.Same=[[RED]]\u0412\u044b \u0443\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0435 \u0431\u0430\u0437\u0443 \u0434\u0430\u043d\u043d\u044b\u0445 {0}!
|
||||
Commands.mcconvert.Database.InvalidType=[[RED]]{0} \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u043c \u0442\u0438\u043f\u043e\u043c \u0431\u0430\u0437\u044b \u0434\u0430\u043d\u043d\u044b\u0445.
|
||||
Commands.mmoedit.Modified.2={0} \u0431\u044b\u043b\u043e \u043c\u043e\u0434\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0434\u043b\u044f {1}.
|
||||
Commands.mcconvert.Database.Same=\u0412\u044b \u0443\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0435 \u0431\u0430\u0437\u0443 \u0434\u0430\u043d\u043d\u044b\u0445 {0}!
|
||||
Commands.mcconvert.Database.InvalidType={0} \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u043c \u0442\u0438\u043f\u043e\u043c \u0431\u0430\u0437\u044b \u0434\u0430\u043d\u043d\u044b\u0445.
|
||||
Commands.mcconvert.Database.Start=[[GRAY]]\u041d\u0430\u0447\u0430\u043b\u043e \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0430\u0446\u0438\u0438 \u0438\u0437 {0} \u0432 {1}...
|
||||
Commands.mcconvert.Database.Finish=[[GRAY]]\u041c\u0438\u0433\u0440\u0430\u0446\u0438\u044f \u0431\u0430\u0437\u044b \u0434\u0430\u043d\u043d\u044b\u0445 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430; \u0431\u0430\u0437\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 {1} \u0442\u0435\u043f\u0435\u0440\u044c \u0432\u043a\u043b\u044e\u0447\u0430\u0435\u0442 \u0432\u0441\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u0437 {0}.
|
||||
Commands.mmoshowdb=[[YELLOW]]\u0422\u0435\u043a\u0443\u0449\u0430\u044f \u0431\u0430\u0437\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=[[RED]]\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u0442\u0438\u043f \u0444\u043e\u0440\u043c\u0443\u043b\u044b! \u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0442\u0438\u043f\u044b: [[GREEN]]\u041b\u0418\u041d\u0415\u0419\u041d\u0418\u0419 [[RED]]\u0438 [[GREEN]]\u042d\u041a\u0421\u041f\u041e\u041d\u0415\u041d\u0426\u0418\u0410\u041b\u042c\u041d\u042b\u0419.
|
||||
Commands.mcconvert.Experience.Same=[[RED]]\u0423\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0442\u0438\u043f \u0444\u043e\u0440\u043c\u0443\u043b\u044b {0}
|
||||
Commands.mmoshowdb=\u0422\u0435\u043a\u0443\u0449\u0430\u044f \u0431\u0430\u0437\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u0442\u0438\u043f \u0444\u043e\u0440\u043c\u0443\u043b\u044b! \u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0442\u0438\u043f\u044b: [[GREEN]]\u041b\u0418\u041d\u0415\u0419\u041d\u0418\u0419 [[RED]]\u0438 [[GREEN]]\u042d\u041a\u0421\u041f\u041e\u041d\u0415\u041d\u0426\u0418\u0410\u041b\u042c\u041d\u042b\u0419.
|
||||
Commands.mcconvert.Experience.Same=\u0423\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0442\u0438\u043f \u0444\u043e\u0440\u043c\u0443\u043b\u044b {0}
|
||||
Commands.mcconvert.Experience.Start=[[GRAY]]\u041d\u0430\u0447\u0430\u043b\u043e \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0430\u0446\u0438\u0438 \u0438\u0437 {0} \u0432 \u043a\u0440\u0438\u0432\u0443\u044e {1}
|
||||
Commands.mcconvert.Experience.Finish=[[GRAY]]\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0430\u0446\u0438\u044f \u0444\u043e\u0440\u043c\u0443\u043b\u044b \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430; \u0442\u0435\u043f\u0435\u0440\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u043a\u0440\u0438\u0432\u0430\u044f \u043e\u043f\u044b\u0442\u0430 {0}.
|
||||
Commands.ModDescription=[[RED]]- \u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043a\u0440\u0430\u0442\u043a\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043c\u043e\u0434\u0430
|
||||
Commands.ModDescription=- \u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043a\u0440\u0430\u0442\u043a\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043c\u043e\u0434\u0430
|
||||
Commands.NoConsole=\u042d\u0442\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0441 \u043a\u043e\u043d\u0441\u043e\u043b\u0438
|
||||
Commands.Notifications.Off=\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u043e\u0431 \u0443\u043c\u0435\u043d\u0438\u044f\u0445 [[RED]]\u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u044b
|
||||
Commands.Notifications.On=\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u043e [[GREEN]] \u043d\u0430
|
||||
Commands.Offline=[RED]] \u042d\u0442\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u0432 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435 \u0438\u0433\u0440\u043e\u043a\u043e\u0432.
|
||||
Commands.Other=[[GREEN]]--\u0414\u0420\u0423\u0413\u0418\u0415 \u041a\u041e\u041c\u0410\u041d\u0414\u042b--
|
||||
Commands.Party.Header=[[RED]]-----[][[GREEN]]\u0413\u0420\u0423\u041f\u041f\u0410[[RED]][]-----
|
||||
Commands.Party.Header=-----[][[GREEN]]\u0413\u0420\u0423\u041f\u041f\u0410[[RED]][]-----
|
||||
Commands.Party.Status=[[DARK_GRAY]]\u041d\u0410\u0417\u0412\u0410\u041d\u0418\u0415: [[WHITE]]{0} {1}
|
||||
Commands.Party.ShareMode=[[DARK_GRAY]]\u0420\u0415\u0416\u0418\u041c \u0421\u041e\u0412\u041c\u0415\u0421\u0422\u041d\u041e\u0413\u041e \u041f\u041e\u041b\u042c\u0417\u041e\u0412\u0410\u041d\u0418\u042f:
|
||||
Commands.Party.ItemShare=[[GRAY]]\u041f\u0420\u0415\u0414\u041c\u0415\u0422 [[DARK_AQUA]]({0})
|
||||
Commands.Party.ExpShare=[[GRAY]]\u041e\u041f\u042b\u0422 [[DARK_AQUA]]({0})
|
||||
Commands.Party.ItemShareCategories=[[DARK_GRAY]]\u0414\u0435\u043b\u0435\u0436 \u041f\u0440\u0435\u0434\u043c\u0435\u0442\u043e\u0432: [[GRAY]][[ITALIC]]{0}
|
||||
Commands.Party.MembersNear=[[DARK_GRAY]]\u0412\u041e\u0417\u041b\u0415 \u0412\u0410\u0421 [[DARK_AQUA]]{0}[[DARK_GRAY]]/[[DARK_AQUA]]{1}
|
||||
Commands.Party.Accept=[[RED]]- \u041f\u0440\u0438\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0432 \u0433\u0440\u0443\u043f\u043f\u0443
|
||||
Commands.Party.Accept=- \u041f\u0440\u0438\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0432 \u0433\u0440\u0443\u043f\u043f\u0443
|
||||
Commands.Party.Chat.Off=\u0413\u0440\u0443\u043f\u043f\u043e\u0432\u043e\u0439 \u0427\u0430\u0442 [[RED]]\u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d
|
||||
Commands.Party.Chat.On=\u0413\u0440\u0443\u043f\u043f\u043e\u0432\u043e\u0439 \u0427\u0430\u0442 [[RED]]\u0432\u043a\u043b\u044e\u0447\u0435\u043d
|
||||
Commands.Party.Commands=[[GREEN]]--\u0413\u0420\u0423\u041f\u041f\u041e\u0412\u042b\u0415 \u041a\u041e\u041c\u0410\u041d\u0414\u042b--
|
||||
Commands.Party.Invite.0=[[RED]]\u0412\u041d\u0418\u041c\u0410\u041d\u0418\u0415: [[GREEN]]\u0412\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0432 \u0433\u0440\u0443\u043f\u043f\u0443 {0} \u043e\u0442 {1}
|
||||
Commands.Party.Invite.1=[[YELLOW]]\u041d\u0430\u043f\u0435\u0447\u0430\u0442\u0430\u0439\u0442\u0435 [[GREEN]]/party accept[[YELLOW]], \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0432 \u0433\u0440\u0443\u043f\u043f\u0443
|
||||
Commands.Party.Invite=[[RED]]- \u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0432 \u0433\u0440\u0443\u043f\u043f\u0443
|
||||
Commands.Party.Invite.0=\u0412\u041d\u0418\u041c\u0410\u041d\u0418\u0415: [[GREEN]]\u0412\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0432 \u0433\u0440\u0443\u043f\u043f\u0443 {0} \u043e\u0442 {1}
|
||||
Commands.Party.Invite.1=\u041d\u0430\u043f\u0435\u0447\u0430\u0442\u0430\u0439\u0442\u0435 [[GREEN]]/party accept[[YELLOW]], \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0432 \u0433\u0440\u0443\u043f\u043f\u0443
|
||||
Commands.Party.Invite=- \u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0432 \u0433\u0440\u0443\u043f\u043f\u0443
|
||||
Commands.Party.Join=[[GRAY]]\u0423\u0447\u0430\u0441\u0442\u043d\u0438\u043a \u0413\u0440\u0443\u043f\u043f\u044b: {0}
|
||||
Commands.Party.Create=[[GRAY]]\u0421\u043e\u0437\u0434\u0430\u043d\u0430 \u0413\u0440\u0443\u043f\u043f\u0430: {0}
|
||||
Commands.Party.Rename=[[GRAY]]\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0433\u0440\u0443\u043f\u043f\u044b \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u043e \u043d\u0430: [[WHITE]]{0}
|
||||
Commands.Party.SetSharing=[[GRAY]]\u0423 \u0433\u0440\u0443\u043f\u043f\u044b {0} \u0432 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438: [[DARK_AQUA]]{1}
|
||||
Commands.Party.ToggleShareCategory=[[GRAY]]\u0414\u0435\u043b\u0435\u0436 \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0430\u043c\u0438 \u0432 \u0433\u0440\u0443\u043f\u0435 \u0434\u043b\u044f [[GOLD]]{0} [[GRAY]] [[DARK_AQUA]]{1}
|
||||
Commands.Party.AlreadyExists=[[DARK_RED]]\u0413\u0440\u0443\u043f\u043f\u0430 {0} \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442!
|
||||
Commands.Party.Kick=[[RED]]\u0412\u044b \u0432\u044b\u0433\u043d\u0430\u043d\u044b \u0438\u0437 \u0433\u0440\u0443\u043f\u043f\u044b {0}!
|
||||
Commands.Party.Leave=[[RED]]\u0412\u044b \u043f\u043e\u043a\u0438\u043d\u0443\u043b\u0438 \u0433\u0440\u0443\u043f\u043f\u0443
|
||||
Commands.Party.Members.Header=[[RED]]-----[][[GREEN]]\u0423\u0427\u0410\u0421\u0422\u041d\u0418\u041a\u0418[[RED]][]-----
|
||||
Commands.Party.None=[[RED]]\u0412\u044b \u043d\u0435 \u0432 \u0433\u0440\u0443\u043f\u043f\u0435.
|
||||
Commands.Party.Quit=[[RED]]- \u041f\u043e\u043a\u0438\u043d\u0443\u0442\u044c \u0442\u0435\u043a\u0443\u0449\u0443\u044e \u0433\u0440\u0443\u043f\u043f\u0443
|
||||
Commands.Party.Kick=\u0412\u044b \u0432\u044b\u0433\u043d\u0430\u043d\u044b \u0438\u0437 \u0433\u0440\u0443\u043f\u043f\u044b {0}!
|
||||
Commands.Party.Leave=\u0412\u044b \u043f\u043e\u043a\u0438\u043d\u0443\u043b\u0438 \u0433\u0440\u0443\u043f\u043f\u0443
|
||||
Commands.Party.Members.Header=-----[][[GREEN]]\u0423\u0427\u0410\u0421\u0422\u041d\u0418\u041a\u0418[[RED]][]-----
|
||||
Commands.Party.None=\u0412\u044b \u043d\u0435 \u0432 \u0433\u0440\u0443\u043f\u043f\u0435.
|
||||
Commands.Party.Quit=- \u041f\u043e\u043a\u0438\u043d\u0443\u0442\u044c \u0442\u0435\u043a\u0443\u0449\u0443\u044e \u0433\u0440\u0443\u043f\u043f\u0443
|
||||
Commands.Party.Teleport=<player> [[RED]]- \u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043a \u0447\u043b\u0435\u043d\u0443 \u0433\u0440\u0443\u043f\u043f\u044b
|
||||
Commands.Party.Toggle=[[RED]]- \u0412\u043a\u043b./\u043e\u0442\u043a\u043b. \u0433\u0440\u0443\u043f\u043f\u043e\u0432\u043e\u0439 \u0447\u0430\u0442
|
||||
Commands.Party.1=[[RED]]- \u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u0443\u044e \u0433\u0440\u0443\u043f\u043f\u0443
|
||||
Commands.Party.2=[[RED]]- \u041f\u0440\u0438\u0441\u043e\u0435\u0434\u0435\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0433\u0440\u0443\u043f\u043f\u0435 \u0438\u0433\u0440\u043e\u043a\u043e\u0432
|
||||
Commands.Party.Toggle=- \u0412\u043a\u043b./\u043e\u0442\u043a\u043b. \u0433\u0440\u0443\u043f\u043f\u043e\u0432\u043e\u0439 \u0447\u0430\u0442
|
||||
Commands.Party.1=- \u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u0443\u044e \u0433\u0440\u0443\u043f\u043f\u0443
|
||||
Commands.Party.2=- \u041f\u0440\u0438\u0441\u043e\u0435\u0434\u0435\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0433\u0440\u0443\u043f\u043f\u0435 \u0438\u0433\u0440\u043e\u043a\u043e\u0432
|
||||
Commands.ptp.Enabled=\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044f \u043a \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c \u0433\u0440\u0443\u043f\u043f\u044b [[GREEN]]\u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430
|
||||
Commands.ptp.Disabled=\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044f \u043a \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c \u0433\u0440\u0443\u043f\u043f\u044b [[RED]]\u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0430
|
||||
Commands.ptp.NoRequests=[[RED]]\u041d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0437\u0430\u043f\u0440\u043e\u0441\u043e\u0432 \u043d\u0430 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044e \u043a \u0432\u0430\u043c \u043d\u0435\u0442
|
||||
Commands.ptp.NoWorldPermissions=[[RED]][mcMMO] \u0423 \u0432\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u0438 \u0432 \u044d\u0442\u043e\u0442 \u043c\u0438\u0440 {0}.
|
||||
Commands.ptp.Request1=[[YELLOW]]{0} [[GREEN]]\u0437\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u0442 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044e \u043a \u0432\u0430\u043c.
|
||||
Commands.ptp.NoRequests=\u041d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0437\u0430\u043f\u0440\u043e\u0441\u043e\u0432 \u043d\u0430 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044e \u043a \u0432\u0430\u043c \u043d\u0435\u0442
|
||||
Commands.ptp.NoWorldPermissions=[mcMMO] \u0423 \u0432\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u0438 \u0432 \u044d\u0442\u043e\u0442 \u043c\u0438\u0440 {0}.
|
||||
Commands.ptp.Request1={0} [[GREEN]]\u0437\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u0442 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044e \u043a \u0432\u0430\u043c.
|
||||
Commands.ptp.Request2=[[GREEN]]\u0414\u043b\u044f \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u043d\u0430 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044e \u043d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 [[YELLOW]]/ptp accept. [[GREEN]]\u0417\u0430\u043f\u0440\u043e\u0441 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0441\u0440\u043e\u0447\u0435\u043d \u0447\u0435\u0440\u0435\u0437 [[RED]]{0} [[GREEN]]\u0441\u0435\u043a\u0443\u043d\u0434.
|
||||
Commands.ptp.AcceptAny.Enabled=\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u043d\u0430 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044e [[GREEN]]\u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e
|
||||
Commands.ptp.AcceptAny.Disabled=\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u043d\u0430 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044e [[RED]]\u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u043e
|
||||
Commands.ptp.RequestExpired=[[RED]]\u0417\u0430\u043f\u0440\u043e\u0441 \u043d\u0430 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044e \u043f\u0440\u043e\u0441\u0440\u043e\u0447\u0435\u043d!
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--\u0421\u043f\u0438\u0441\u043e\u043a \u041b\u0438\u0434\u0435\u0440\u043e\u0432 mcMMO \u043f\u043e[[BLUE]] \u041e\u0431\u0449\u0435\u043c\u0443 \u0423\u0440\u043e\u0432\u043d\u044e [[YELLOW]]--
|
||||
Commands.ptp.RequestExpired=\u0417\u0430\u043f\u0440\u043e\u0441 \u043d\u0430 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044e \u043f\u0440\u043e\u0441\u0440\u043e\u0447\u0435\u043d!
|
||||
Commands.PowerLevel.Leaderboard=--\u0421\u043f\u0438\u0441\u043e\u043a \u041b\u0438\u0434\u0435\u0440\u043e\u0432 mcMMO \u043f\u043e[[BLUE]] \u041e\u0431\u0449\u0435\u043c\u0443 \u0423\u0440\u043e\u0432\u043d\u044e [[YELLOW]]--
|
||||
Commands.PowerLevel.Capped=[[DARK_RED]]\u041e\u0411\u0429\u0418\u0419 \u0423\u0420\u041e\u0412\u0415\u041d\u042c: [[GREEN]]{0} [[DARK_RED]]\u041c\u0410\u041a\u0421\u0418\u041c\u0410\u041b\u042c\u041d\u042b\u0419 \u0423\u0420\u041e\u0412\u0415\u041d\u042c: [[YELLOW]]{1}
|
||||
Commands.PowerLevel=[[DARK_RED]]\u041e\u0411\u0429\u0418\u0419 \u0423\u0420\u041e\u0412\u0415\u041d\u042c: [[GREEN]]{0}
|
||||
Commands.Reset.All=[[GREEN]]\u0412\u0441\u0435 \u0432\u0430\u0448\u0438 \u0443\u0440\u043e\u0432\u043d\u0438 \u043d\u0430\u0432\u044b\u043a\u043e\u0432 \u0431\u044b\u043b\u0438 \u0441\u0431\u0440\u043e\u0448\u0435\u043d\u044b \u0443\u0441\u043f\u0435\u0448\u043d\u043e.
|
||||
Commands.Reset.Single=[[GREEN]]\u0412\u0430\u0448 {0} \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0432\u044b\u043a\u0430 \u0431\u044b\u043b \u0441\u0431\u0440\u043e\u0448\u0435\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e.
|
||||
Commands.Reset=[[RED]]\u0421\u0431\u0440\u043e\u0441 \u0443\u0440\u043e\u0432\u043d\u044f \u043d\u0430\u0432\u044b\u043a\u0430 \u0434\u043e 0
|
||||
Commands.Reset=\u0421\u0431\u0440\u043e\u0441 \u0443\u0440\u043e\u0432\u043d\u044f \u043d\u0430\u0432\u044b\u043a\u0430 \u0434\u043e 0
|
||||
Commands.Scoreboard.Clear=[[DARK_AQUA]]\u0422\u0430\u0431\u043b\u0438\u0446\u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 mcMMO \u0443\u0431\u0440\u0430\u043d\u0430.
|
||||
Commands.Scoreboard.NoBoard=[[RED]]\u0422\u0430\u0431\u043b\u0438\u0446\u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 mcMMO \u043d\u0435 \u0430\u043a\u0442\u0438\u0432\u043d\u0430.
|
||||
Commands.Scoreboard.NoBoard=\u0422\u0430\u0431\u043b\u0438\u0446\u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 mcMMO \u043d\u0435 \u0430\u043a\u0442\u0438\u0432\u043d\u0430.
|
||||
Commands.Scoreboard.Keep=[[DARK_AQUA]]\u0422\u0430\u0431\u043b\u0438\u0446\u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 mcMMO \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0434\u043e \u0442\u0435\u0445 \u043f\u043e\u0440 \u043f\u043e\u043a\u0430 \u0432\u044b \u043d\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0435 [[GREEN]]/mcscoreboard clear[[DARK_AQUA]].
|
||||
Commands.Scoreboard.Timer=[[DARK_AQUA]]\u0422\u0430\u0431\u043b\u0438\u0446\u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 mcMMO \u0438\u0441\u0447\u0435\u0437\u043d\u0435\u0442 \u0447\u0435\u0440\u0435\u0437 [[GOLD]]{0}[[DARK_AQUA]] \u0441\u0435\u043a\u0443\u043d\u0434.
|
||||
Commands.Scoreboard.Help.0=[[GOLD]] == [[GREEN]]\u041f\u043e\u043c\u043e\u0449\u044c \u043f\u043e [[RED]]/mcscoreboard[[GOLD]] ==
|
||||
@ -471,16 +471,16 @@ Commands.Scoreboard.Help.2=[[DARK_AQUA]]/mcscoreboard[[AQUA]] keep [[WHITE]] - \
|
||||
Commands.Scoreboard.Help.3=[[DARK_AQUA]]/mcscoreboard[[AQUA]] time [n] [[WHITE]] - \u0443\u0431\u0440\u0430\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 McMMO \u0447\u0435\u0440\u0435\u0437 [[LIGHT_PURPLE]]n[[WHITE]] \u0441\u0435\u043a\u0443\u043d\u0434
|
||||
Commands.Scoreboard.Tip.Keep=[[GOLD]]\u041f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430: \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[RED]]/mcscoreboard keep[[GOLD]] \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u044b \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u043e\u043d\u0430 \u043d\u0435 \u0438\u0441\u0447\u0435\u0437\u0430\u043b\u0430.
|
||||
Commands.Scoreboard.Tip.Clear=[[GOLD]]\u041f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430: \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[RED]]/mcscoreboard clear[[GOLD]] \u0447\u0442\u043e\u0431\u044b \u0443\u0431\u0440\u0430\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432.
|
||||
Commands.Skill.Invalid=[[RED]]\u042d\u0442\u043e \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043d\u0430\u0432\u044b\u043a\u0430!
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--mcMMO [[BLUE]]{0}[[YELLOW]] \u0421\u043f\u0438\u0441\u043e\u043a \u041b\u0438\u0434\u0435\u0440\u043e\u0432--
|
||||
Commands.SkillInfo=[[RED]]- \u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0434\u0435\u0442\u0430\u043b\u044c\u043d\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u043d\u0430\u0432\u044b\u043a\u0435
|
||||
Commands.Skill.Invalid=\u042d\u0442\u043e \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043d\u0430\u0432\u044b\u043a\u0430!
|
||||
Commands.Skill.Leaderboard=--mcMMO [[BLUE]]{0}[[YELLOW]] \u0421\u043f\u0438\u0441\u043e\u043a \u041b\u0438\u0434\u0435\u0440\u043e\u0432--
|
||||
Commands.SkillInfo=- \u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0434\u0435\u0442\u0430\u043b\u044c\u043d\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u043d\u0430\u0432\u044b\u043a\u0435
|
||||
Commands.Stats.Self=\u0412\u0410\u0428\u0410 \u0421\u0422\u0410\u0422\u0418\u0421\u0422\u0418\u041a\u0410
|
||||
Commands.Stats=[[RED]]- \u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0412\u0430\u0448\u0443 mcMMO \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0443
|
||||
Commands.ToggleAbility=[[RED]]- \u0412\u043a\u043b./\u043e\u0442\u043a\u043b. \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u0435 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0440\u0430\u0432\u043e\u0439 \u043a\u043d\u043e\u043f\u043a\u0438 \u043c\u044b\u0448\u0438
|
||||
Commands.Usage.0=[[RED]]\u041f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 /{0}
|
||||
Commands.Usage.1=[[RED]]\u041f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 /{0} {1}
|
||||
Commands.Usage.2=[[RED]]\u041f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 /{0} {1} {2}
|
||||
Commands.Usage.3=[[RED]]\u041f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 /{0} {1} {2} {3}
|
||||
Commands.Stats=- \u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0412\u0430\u0448\u0443 mcMMO \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0443
|
||||
Commands.ToggleAbility=- \u0412\u043a\u043b./\u043e\u0442\u043a\u043b. \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u0435 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0440\u0430\u0432\u043e\u0439 \u043a\u043d\u043e\u043f\u043a\u0438 \u043c\u044b\u0448\u0438
|
||||
Commands.Usage.0=\u041f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 /{0}
|
||||
Commands.Usage.1=\u041f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 /{0} {1}
|
||||
Commands.Usage.2=\u041f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 /{0} {1} {2}
|
||||
Commands.Usage.3=\u041f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 /{0} {1} {2} {3}
|
||||
Commands.Usage.FullClassName=classname
|
||||
Commands.Usage.Level=level
|
||||
Commands.Usage.Message=message
|
||||
@ -491,51 +491,51 @@ Commands.Usage.Player=player
|
||||
Commands.Usage.Rate=rate
|
||||
Commands.Usage.Skill=skill
|
||||
Commands.Usage.XP=xp
|
||||
mcMMO.NoInvites=[[RED]]\u0421\u0435\u0439\u0447\u0430\u0441 \u0443 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0439
|
||||
mcMMO.NoInvites=\u0421\u0435\u0439\u0447\u0430\u0441 \u0443 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0439
|
||||
mcMMO.NoPermission=[[DARK_RED]]\u041d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432.
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]\u0415\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u043d\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u043d\u0430\u0432\u044b\u043a\u0443, \u0442\u043e \u043e\u043d \u043d\u0435 \u0431\u0443\u0434\u0435\u0442 \u0437\u0434\u0435\u0441\u044c \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0451\u043d.
|
||||
Party.Forbidden=[mcMMO] \u0413\u0440\u0443\u043f\u043f\u044b \u043d\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u044b \u0432 \u044d\u0442\u043e\u043c \u043c\u0438\u0440\u0435 (\u0421\u043c\u043e\u0442\u0440\u0438 Permissions)
|
||||
Party.Help.0=[[RED]]\u041f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 [[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=[[RED]]\u0427\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0433\u0440\u0443\u043f\u043f\u0443 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.2=[[RED]]\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0} [[RED]]\u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438.
|
||||
Party.Help.3=[[RED]]\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0} <player> [password] [[RED]]\u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0435\u043d\u0438\u0442\u044c\u0441\u044f \u0438\u043b\u0438 [[DARK_AQUA]]{1} [[RED]]\u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0439\u0442\u0438
|
||||
Party.Help.4=[[RED]]\u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u043b\u0438 \u0440\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0430\u0448\u0443 \u0433\u0440\u0443\u043f\u043f\u0443 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0}
|
||||
Party.Help.5=[[RED]]\u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0449\u0438\u0442\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u0435\u043c \u0432\u0430\u0448\u0443 \u0433\u0440\u0443\u043f\u043f\u0443 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=[[RED]] \u0427\u0442\u043e\u0431\u044b \u0432\u044b\u0433\u043d\u0430\u0442\u044c \u0438\u0433\u0440\u043e\u043a\u0430 \u0438\u0437 \u0432\u0430\u0448\u0435\u0439 \u043f\u0430\u0442\u0438, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]] {0} <player>
|
||||
Party.Help.7=[[RED]]\u0427\u0442\u043e\u0431\u044b \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u044c \u043f\u0440\u0430\u0432\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u0430\u0448\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u043e\u0439 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=[[RED]]\u0427\u0442\u043e\u0431\u044b \u0440\u0430\u0441\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0432\u0430\u0448\u0443 \u0433\u0440\u0443\u043f\u043f\u0443 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0}
|
||||
Party.Help.9=[[RED]]\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0} [[RED]]\u0434\u043b\u044f \u0434\u0435\u043b\u0435\u0436\u0430 \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0430\u043c\u0438 \u043c\u0435\u0436\u0434\u0443 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c\u0438 \u0433\u0440\u0443\u043f\u043f\u044b
|
||||
Party.Help.10=[[RED]]\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0} [[RED]]\u0447\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0435\u043b\u0435\u0436 \u043e\u043f\u044b\u0442\u0430 \u043c\u0435\u0436\u0434\u0443 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c\u0438 \u0433\u0440\u0443\u043f\u043f\u044b
|
||||
Party.Help.0=\u041f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 [[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=\u0427\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0433\u0440\u0443\u043f\u043f\u0443 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.2=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0} [[RED]]\u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438.
|
||||
Party.Help.3=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0} <player> [password] [[RED]]\u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0435\u043d\u0438\u0442\u044c\u0441\u044f \u0438\u043b\u0438 [[DARK_AQUA]]{1} [[RED]]\u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0439\u0442\u0438
|
||||
Party.Help.4=\u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u043b\u0438 \u0440\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0430\u0448\u0443 \u0433\u0440\u0443\u043f\u043f\u0443 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0}
|
||||
Party.Help.5=\u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0449\u0438\u0442\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u0435\u043c \u0432\u0430\u0448\u0443 \u0433\u0440\u0443\u043f\u043f\u0443 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6= \u0427\u0442\u043e\u0431\u044b \u0432\u044b\u0433\u043d\u0430\u0442\u044c \u0438\u0433\u0440\u043e\u043a\u0430 \u0438\u0437 \u0432\u0430\u0448\u0435\u0439 \u043f\u0430\u0442\u0438, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]] {0} <player>
|
||||
Party.Help.7=\u0427\u0442\u043e\u0431\u044b \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u044c \u043f\u0440\u0430\u0432\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u0430\u0448\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u043e\u0439 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=\u0427\u0442\u043e\u0431\u044b \u0440\u0430\u0441\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0432\u0430\u0448\u0443 \u0433\u0440\u0443\u043f\u043f\u0443 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0}
|
||||
Party.Help.9=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0} [[RED]]\u0434\u043b\u044f \u0434\u0435\u043b\u0435\u0436\u0430 \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0430\u043c\u0438 \u043c\u0435\u0436\u0434\u0443 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c\u0438 \u0433\u0440\u0443\u043f\u043f\u044b
|
||||
Party.Help.10=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 [[DARK_AQUA]]{0} [[RED]]\u0447\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0435\u043b\u0435\u0436 \u043e\u043f\u044b\u0442\u0430 \u043c\u0435\u0436\u0434\u0443 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c\u0438 \u0433\u0440\u0443\u043f\u043f\u044b
|
||||
Party.InformedOnJoin={0} [[GREEN]]\u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0435\u043d\u0438\u043b\u0441\u044f \u043a \u0432\u0430\u0448\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u0435
|
||||
Party.InformedOnQuit={0} [[GREEN]]\u043f\u043e\u043a\u0438\u043d\u0443\u043b \u0432\u0430\u0448\u0443 \u0433\u0440\u0443\u043f\u043f\u0443
|
||||
Party.InformedOnNameChange=[[GOLD]]{0} [[GREEN]]\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0433\u0440\u0443\u043f\u043f\u044b \u043d\u0430 [[WHITE]]{1}
|
||||
Party.InvalidName=[[DARK_RED]]\u041d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0433\u0440\u0443\u043f\u043f\u044b.
|
||||
Party.Invite.Self=[[RED]]\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u0441\u0430\u043c\u0438 \u0441\u0435\u0431\u044f!
|
||||
Party.IsLocked=[[RED]]\u042d\u0442\u0430 \u0433\u0440\u0443\u043f\u043f\u0430 \u0443\u0436\u0435 \u0437\u0430\u043a\u0440\u044b\u0442\u0430!
|
||||
Party.IsntLocked=[[RED]]\u042d\u0442\u0430 \u0433\u0440\u0443\u043f\u043f\u0430 \u043d\u0435 \u0437\u0430\u043a\u0440\u044b\u0442\u0430!
|
||||
Party.Locked=[[RED]]\u0413\u0440\u0443\u043f\u043f\u0430 \u0437\u0430\u043f\u0430\u0440\u043e\u043b\u0435\u043d\u0430, \u0442\u043e\u043b\u044c\u043a\u043e \u043b\u0438\u0434\u0435\u0440 \u0433\u0440\u0443\u043f\u043f\u044b \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0430\u0442\u044c.
|
||||
Party.Invite.Self=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u0441\u0430\u043c\u0438 \u0441\u0435\u0431\u044f!
|
||||
Party.IsLocked=\u042d\u0442\u0430 \u0433\u0440\u0443\u043f\u043f\u0430 \u0443\u0436\u0435 \u0437\u0430\u043a\u0440\u044b\u0442\u0430!
|
||||
Party.IsntLocked=\u042d\u0442\u0430 \u0433\u0440\u0443\u043f\u043f\u0430 \u043d\u0435 \u0437\u0430\u043a\u0440\u044b\u0442\u0430!
|
||||
Party.Locked=\u0413\u0440\u0443\u043f\u043f\u0430 \u0437\u0430\u043f\u0430\u0440\u043e\u043b\u0435\u043d\u0430, \u0442\u043e\u043b\u044c\u043a\u043e \u043b\u0438\u0434\u0435\u0440 \u0433\u0440\u0443\u043f\u043f\u044b \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0430\u0442\u044c.
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} \u043d\u0435 \u0432 \u0433\u0440\u0443\u043f\u043f\u0435
|
||||
Party.NotOwner=[[DARK_RED]]\u0412\u044b \u043d\u0435 \u043b\u0438\u0434\u0435\u0440 \u0433\u0440\u0443\u043f\u043f\u044b.
|
||||
Party.Owner.New=[[GREEN]]{0} \u0442\u0435\u043f\u0435\u0440\u044c \u043d\u043e\u0432\u044b\u0439 \u043b\u0438\u0434\u0435\u0440 \u0433\u0440\u0443\u043f\u043f\u044b.
|
||||
Party.Owner.NotLeader=[[DARK_RED]]\u0412\u044b \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u043b\u0438\u0434\u0435\u0440 \u0433\u0440\u0443\u043f\u043f\u044b.
|
||||
Party.Owner.Player=[[GREEN]]\u0422\u0435\u043f\u0435\u0440\u044c \u0432\u044b \u043b\u0438\u0434\u0435\u0440 \u0433\u0440\u0443\u043f\u043f\u044b.
|
||||
Party.Password.None=[[RED]]\u042d\u0442\u0430 \u0433\u0440\u0443\u043f\u043f\u0430 \u0437\u0430\u0449\u0438\u0449\u0435\u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0435\u043c. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u044c \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0435\u043d\u0438\u0442\u044c\u0441\u044f.
|
||||
Party.Password.Incorrect=[[RED]]\u041f\u0430\u0440\u043e\u043b\u044c \u0433\u0440\u0443\u043f\u043f\u044b \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439.
|
||||
Party.Password.None=\u042d\u0442\u0430 \u0433\u0440\u0443\u043f\u043f\u0430 \u0437\u0430\u0449\u0438\u0449\u0435\u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0435\u043c. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u044c \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0435\u043d\u0438\u0442\u044c\u0441\u044f.
|
||||
Party.Password.Incorrect=\u041f\u0430\u0440\u043e\u043b\u044c \u0433\u0440\u0443\u043f\u043f\u044b \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439.
|
||||
Party.Password.Set=[[GREEN]]\u041f\u0430\u0440\u043e\u043b\u044c \u0433\u0440\u0443\u043f\u043f\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d {0}
|
||||
Party.Password.Removed=[[GREEN]]\u041f\u0430\u0440\u043e\u043b\u044c \u0433\u0440\u0443\u043f\u043f\u044b \u0431\u044b\u043b \u0443\u0434\u0430\u043b\u0435\u043d.
|
||||
Party.Player.Invalid=[[RED]]\u042d\u0442\u043e \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0438\u0433\u0440\u043e\u043a.
|
||||
Party.Player.Invalid=\u042d\u0442\u043e \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0438\u0433\u0440\u043e\u043a.
|
||||
Party.NotOnline=[[DARK_RED]]{0} \u043d\u0435 \u0432 \u043e\u043d\u043b\u0430\u0439\u043d\u0435!
|
||||
Party.Player.InSameParty=[[RED]]{0} \u0443\u0436\u0435 \u0432 \u0432\u0430\u0448\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u0435!
|
||||
Party.Player.InSameParty={0} \u0443\u0436\u0435 \u0432 \u0432\u0430\u0448\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u0435!
|
||||
Party.PlayerNotInParty=[[DARK_RED]]{0} \u043d\u0435 \u0441\u043e\u0441\u0442\u043e\u0438\u0442 \u0432 \u0433\u0440\u0443\u043f\u043f\u0435
|
||||
Party.Specify=[[RED]]\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0433\u0440\u0443\u043f\u043f\u0443.
|
||||
Party.Teleport.Dead=[[RED]]\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u0441\u044f \u043a \u043c\u0435\u0440\u0442\u0432\u043e\u043c\u0443 \u0438\u0433\u0440\u043e\u043a\u0443.
|
||||
Party.Teleport.Hurt=[[RED]]\u0412\u0430\u043c \u0431\u044b\u043b \u043d\u0430\u043d\u0435\u0441\u0435\u043d \u0443\u0440\u043e\u043d \u043d\u0430 \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 {0} \u0441\u0435\u043a\u0443\u043d\u0434, \u0442\u0430\u043a \u0447\u0442\u043e \u0432\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f.
|
||||
Party.Specify=\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0433\u0440\u0443\u043f\u043f\u0443.
|
||||
Party.Teleport.Dead=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u0441\u044f \u043a \u043c\u0435\u0440\u0442\u0432\u043e\u043c\u0443 \u0438\u0433\u0440\u043e\u043a\u0443.
|
||||
Party.Teleport.Hurt=\u0412\u0430\u043c \u0431\u044b\u043b \u043d\u0430\u043d\u0435\u0441\u0435\u043d \u0443\u0440\u043e\u043d \u043d\u0430 \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 {0} \u0441\u0435\u043a\u0443\u043d\u0434, \u0442\u0430\u043a \u0447\u0442\u043e \u0432\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f.
|
||||
Party.Teleport.Player=[[GREEN]]\u0412\u044b \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043b\u0438\u0441\u044c \u043a {0}.
|
||||
Party.Teleport.Self=[[RED]]\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u043c\u043e\u043c\u0443 \u0441\u0435\u0431\u0435!
|
||||
Party.Teleport.Self=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u043c\u043e\u043c\u0443 \u0441\u0435\u0431\u0435!
|
||||
Party.Teleport.Target=[[GREEN]]{0} \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043b\u0441\u044f \u043a \u0412\u0430\u043c.
|
||||
Party.Teleport.Disabled=[[RED]]\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044f \u043a \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c \u0433\u0440\u0443\u043f\u043f\u044b {0} \u0437\u0430\u043f\u0440\u0435\u0449\u0435\u043d\u0430
|
||||
Party.Rename.Same=[[RED]]\u042d\u0442\u043e \u0443\u0436\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043c \u0432\u0430\u0448\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b!
|
||||
Party.Join.Self=[[RED]]\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u043c\u043e\u043c\u0443 \u0441\u0435\u0431\u0435!
|
||||
Party.Teleport.Disabled=\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044f \u043a \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c \u0433\u0440\u0443\u043f\u043f\u044b {0} \u0437\u0430\u043f\u0440\u0435\u0449\u0435\u043d\u0430
|
||||
Party.Rename.Same=\u042d\u0442\u043e \u0443\u0436\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043c \u0432\u0430\u0448\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b!
|
||||
Party.Join.Self=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u043c\u043e\u043c\u0443 \u0441\u0435\u0431\u0435!
|
||||
Party.Unlocked=[[GRAY]]\u0413\u0440\u0443\u043f\u043f\u0430 \u0440\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430
|
||||
Party.Disband=[[GRAY]\u0413\u0440\u0443\u043f\u043f\u0430 \u0431\u044b\u043b\u0430 \u0440\u0430\u0441\u043f\u0443\u0449\u0435\u043d\u0430
|
||||
Party.Status.Locked=[[DARK_RED]](\u0422\u041e\u041b\u042c\u041a\u041e \u041f\u041e \u041f\u0420\u0418\u0413\u041b\u0410\u0428\u0415\u041d\u0418\u042e)
|
||||
@ -545,8 +545,8 @@ Party.ShareType.Item=\u041f\u0420\u0415\u0414\u041c\u0415\u0422
|
||||
Party.ShareMode.None=\u041d\u0418\u0427\u0415\u0413\u041e
|
||||
Party.ShareMode.Equal=\u0420\u0410\u0412\u041d\u042b\u0419
|
||||
Party.ShareMode.Random=\u0421\u041b\u0423\u0427\u0410\u0419\u041d\u041e
|
||||
Party.XpShare.Disabled=[[RED]]\u0414\u0435\u043b\u0435\u0436 \u043e\u043f\u044b\u0442\u0430 \u0432 \u0433\u0440\u0443\u043f\u043f\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d.
|
||||
Party.ItemShare.Disabled=[[RED]]\u0414\u0435\u043b\u0435\u0436 \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u043e\u0432 \u0432 \u0433\u0440\u0443\u043f\u043f\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d.
|
||||
Party.XpShare.Disabled=\u0414\u0435\u043b\u0435\u0436 \u043e\u043f\u044b\u0442\u0430 \u0432 \u0433\u0440\u0443\u043f\u043f\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d.
|
||||
Party.ItemShare.Disabled=\u0414\u0435\u043b\u0435\u0436 \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u043e\u0432 \u0432 \u0433\u0440\u0443\u043f\u043f\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d.
|
||||
Party.ItemShare.Category.Loot=\u0414\u043e\u0431\u044b\u0447\u0430
|
||||
Party.ItemShare.Category.Mining=\u0428\u0430\u0445\u0442\u0451\u0440\u0441\u0442\u0432\u043e
|
||||
Party.ItemShare.Category.Herbalism=\u0422\u0440\u0430\u0432\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u043e
|
||||
@ -568,11 +568,11 @@ Commands.XPGain.Woodcutting=\u0420\u0443\u0431\u0438\u0442\u0435 \u0434\u0435\u0
|
||||
Commands.XPGain=[[DARK_GRAY]]\u041f\u041e\u041b\u0423\u0427\u0415\u041d\u041e \u041e\u041f\u042b\u0422\u0410: [[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]\u0412\u0430\u0448\u0430 \u041f\u0430\u043d\u0435\u043b\u044c \u041e\u043f\u044b\u0442\u0430 \u0442\u0435\u043f\u0435\u0440\u044c \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430 \u043d\u0430 {0}!
|
||||
Commands.xplock.unlocked=[[GOLD]]\u0412\u0430\u0448\u0430 \u043f\u0430\u043d\u0435\u043b\u044c \u043e\u043f\u044b\u0442\u0430 \u0442\u0435\u043f\u0435\u0440\u044c [[GREEN]]\u0420\u0410\u0417\u0411\u041b\u041e\u041a\u0418\u0420\u041e\u0412\u0410\u041d\u0410[[GOLD]]!
|
||||
Commands.xprate.modified=[[RED]]\u0412\u0430\u0448 \u0423\u0440\u043e\u0432\u0435\u043d\u044c \u041e\u043f\u044b\u0442\u0430 \u0431\u044b\u043b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d \u043d\u0430 {0}
|
||||
Commands.xprate.over=[[RED]]\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043e\u043f\u044b\u0442\u0430 \u0441\u043d\u043e\u0432\u0430 \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0432 \u043e\u0431\u044b\u0447\u043d\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435!
|
||||
Commands.xprate.proper.0=[[RED]]\u0427\u0442\u043e\u0431\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043e\u043f\u044b\u0442\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=[[RED]]\u0427\u0442\u043e\u0431\u044b \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043e\u043f\u044b\u0442\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 /xprate reset
|
||||
Commands.xprate.proper.2=[[RED]]\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 true \u0438\u043b\u0438 false \u0447\u0442\u043e\u0431\u044b \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043b\u0438 \u044d\u0442\u043e \u0440\u0435\u0436\u0438\u043c\u043e\u043c \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043e\u043f\u044b\u0442\u0430
|
||||
Commands.xprate.modified=\u0412\u0430\u0448 \u0423\u0440\u043e\u0432\u0435\u043d\u044c \u041e\u043f\u044b\u0442\u0430 \u0431\u044b\u043b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d \u043d\u0430 {0}
|
||||
Commands.xprate.over=\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043e\u043f\u044b\u0442\u0430 \u0441\u043d\u043e\u0432\u0430 \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0432 \u043e\u0431\u044b\u0447\u043d\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435!
|
||||
Commands.xprate.proper.0=\u0427\u0442\u043e\u0431\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043e\u043f\u044b\u0442\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=\u0427\u0442\u043e\u0431\u044b \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043e\u043f\u044b\u0442\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 /xprate reset
|
||||
Commands.xprate.proper.2=\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 true \u0438\u043b\u0438 false \u0447\u0442\u043e\u0431\u044b \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043b\u0438 \u044d\u0442\u043e \u0440\u0435\u0436\u0438\u043c\u043e\u043c \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043e\u043f\u044b\u0442\u0430
|
||||
Commands.xprate.started.0=[[GOLD]]\u0421\u041a\u041e\u0420\u041e\u0421\u0422\u042c \u041f\u041e\u041b\u0423\u0427\u0415\u041d\u0418\u042f \u041e\u041f\u042b\u0422\u0410 \u0423\u0412\u0415\u041b\u0418\u0427\u0415\u041d\u0410!
|
||||
Commands.xprate.started.1=[[GOLD]]\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043e\u043f\u044b\u0442\u0430 \u0441\u0435\u0439\u0447\u0430\u0441 {0}x!
|
||||
XPRate.Event=[[GOLD]]\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043e\u043f\u044b\u0442\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u043e! \u041c\u043d\u043e\u0436\u0438\u0442\u0435\u043b\u044c \u043e\u043f\u044b\u0442\u0430 - {0}x!
|
||||
@ -585,7 +585,7 @@ Guides.Available=[[GRAY]]\u0420\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\
|
||||
Guides.Header=[[GOLD]]-=[[GREEN]]{0} \u0420\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e[[GOLD]]=-
|
||||
Guides.Page.Invalid=\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b!
|
||||
Guides.Page.OutOfRange=\u042d\u0442\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442, \u0432\u0441\u0435\u0433\u043e \u0435\u0441\u0442\u044c {0} \u0441\u0442\u0440\u0430\u043d\u0438\u0446.
|
||||
Guides.Usage=[[RED]] \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 /{0} ? [\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430]
|
||||
Guides.Usage= \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 /{0} ? [\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430]
|
||||
Guides.Acrobatics.Section.0=[[DARK_AQUA]]\u041e \u043d\u0430\u0432\u044b\u043a\u0435 \u0410\u043a\u0440\u043e\u0431\u0430\u0442\u0438\u043a\u0430:\n[[YELLOW]]\u0410\u043a\u0440\u043e\u0431\u0430\u0442\u0438\u043a\u0430 - \u044d\u0442\u043e \u043d\u0430\u0432\u044b\u043a \u0433\u0440\u0430\u0446\u0438\u043e\u0437\u043d\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f \u0432 mcMMO.\n[[YELLOW]]\u041e\u043d \u0434\u0430\u0435\u0442 \u0431\u043e\u043d\u0443\u0441\u044b \u0432 \u0431\u043e\u044e \u0438 \u0437\u0430\u0449\u0438\u0449\u0430\u0435\u0442 \u043e\u0442 \u043f\u0440\u0438\u0440\u043e\u0434\u043d\u044b\u0445 \u043f\u043e\u0432\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0439.\n\n[[DARK_AQUA]]\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043e\u043f\u044b\u0442\u0430:\n[[YELLOW]]\u0427\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u043e\u043f\u044b\u0442 \u0432 \u044d\u0442\u043e\u043c \u043d\u0430\u0432\u044b\u043a\u0435, \u043d\u0443\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c \u0443\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u044f \n[[YELLOW]]\u0432 \u0431\u043e\u044e \u0438\u043b\u0438 \u043f\u0430\u0434\u0430\u0442\u044c \u0441 \u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u0432\u044b\u0441\u043e\u0442\u044b, \u043f\u043e\u043b\u0443\u0447\u0430\u044f \u0443\u0440\u043e\u043d.
|
||||
Guides.Acrobatics.Section.1=[[DARK_AQUA]]\u041a\u0430\u043a \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u0443\u043c\u0435\u043d\u0438\u0435 \u041f\u0440\u044b\u0436\u043e\u043a?\n[[YELLOW]]\u0423 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u0448\u0430\u043d\u0441 \u0441\u0432\u0435\u0441\u0442\u0438 \u043d\u0430 \u043d\u0435\u0442 \u0443\u0440\u043e\u043d \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 \u043f\u0440\u0438 \u043f\u0430\u0434\u0435\u043d\u0438\u0438.\n[[YELLOW]]\u0415\u0441\u043b\u0438 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u044b\u0436\u043a\u0430 \u0434\u0435\u0440\u0436\u0430\u0442\u044c \u043a\u043d\u043e\u043f\u043a\u0443 \u043a\u0440\u0430\u0441\u0442\u044c\u0441\u044f (Left Shift),\n[[YELLOW]]\u0442\u043e \u043c\u043e\u0436\u043d\u043e \u0443\u0434\u0432\u043e\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u0448\u0430\u043d\u0441.\n[[YELLOW]]\u042d\u0442\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0432\u044b\u0437\u043e\u0432\u0435\u0442 \u0418\u0437\u044f\u0449\u043d\u044b\u0439 \u041f\u0440\u044b\u0436\u043e\u043a \u0432\u043c\u0435\u0441\u0442\u043e \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0433\u043e.\n[[YELLOW]]\u0418\u0437\u044f\u0449\u043d\u044b\u0435 \u041f\u0440\u044b\u0436\u043a\u0438 \u043f\u043e\u0445\u043e\u0436\u0438 \u043d\u0430 \u043e\u0431\u044b\u0447\u043d\u044b\u0435, \u043d\u043e \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u044f\u0442 \u0432 \u0434\u0432\u0430\n[[YELLOW]]\u0440\u0430\u0437\u0430 \u0440\u0435\u0436\u0435 \u0438 \u0434\u0430\u044e\u0442 \u0431\u043e\u043b\u044c\u0448\u0443\u044e \u0437\u0430\u0449\u0438\u0442\u0443 \u043f\u0440\u0438 \u043f\u0430\u0434\u0435\u043d\u0438\u0438.\n[[YELLOW]]\u0428\u0430\u043d\u0441 \u043d\u0430 \u0443\u0434\u0430\u0447\u043d\u044b\u0439 \u043f\u0440\u044b\u0436\u043e\u043a \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043e\u0442 \u0432\u0430\u0448\u0435\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u043d\u0430\u0432\u044b\u043a\u0430.
|
||||
Guides.Acrobatics.Section.2=[[DARK_AQUA]]\u041a\u0430\u043a \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u0443\u043c\u0435\u043d\u0438\u0435 \u0423\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u0435?\n[[YELLOW]]\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f \u044d\u0442\u043e\u043c\u0443 \u0443\u043c\u0435\u043d\u0438\u044e \u0443 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u043f\u0430\u0441\u0441\u0438\u0432\u043d\u044b\u0439 \u0448\u0430\u043d\u0441 \u0443\u043a\u043b\u043e\u043d\u0438\u0442\u044c\u0441\u044f\n[[YELLOW]]\u0432\u043e \u0432\u0440\u0435\u043c\u044f \u0431\u044b\u0442\u0432\u044b, \u0447\u0442\u043e \u0432\u0434\u0432\u043e\u0435 \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 \u0443\u0440\u043e\u043d.\n[[YELLOW]]\u0428\u0430\u043d\u0441 \u043d\u0430 \u0443\u0434\u0430\u0447\u043d\u043e\u0435 \u0443\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u0435 \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043e\u0442 \u0432\u0430\u0448\u0435\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u043d\u0430\u0432\u044b\u043a\u0430.
|
||||
@ -656,27 +656,27 @@ Guides.Woodcutting.Section.0=[[DARK_AQUA]]\u041e \u043d\u0430\u0432\u044b\u043a\
|
||||
Guides.Woodcutting.Section.1=[[DARK_AQUA]]\u041a\u0430\u043a \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u0443\u043c\u0435\u043d\u0438\u0435 \u041b\u0435\u0441\u043e\u0440\u0443\u0431?\n[[YELLOW]]\u041b\u0435\u0441\u043e\u0440\u0443\u0431 - \u044d\u0442\u043e \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0435 \u0443\u043c\u0435\u043d\u0438\u0435, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0443\u0435\u0442\u0441\u044f\n[[YELLOW]]\u043d\u0430\u0436\u0430\u0442\u0438\u0435\u043c \u041f\u041a\u041c \u0441 \u0442\u043e\u043f\u043e\u0440\u043e\u043c \u0432 \u0440\u0443\u043a\u0435. \u042d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0435\u0442 \u043a \u0442\u043e\u043c\u0443, \n[[YELLOW]]\u0447\u0442\u043e \u0432\u0441\u0435 \u0434\u0435\u0440\u0435\u0432\u043e \u0432\u043c\u0438\u0433 \u0431\u0443\u0434\u0435\u0442 \u0441\u0440\u0443\u0431\u043b\u0435\u043d\u043e, \u0438 \u0432\u0441\u0435 \u0431\u043b\u043e\u043a\u0438 \u0434\u0440\u0435\u0432\u0435\u0441\u0438\u043d\u044b\n[[YELLOW]]\u0432\u044b\u043f\u0430\u0434\u0443\u0442 \u0437\u0430 \u0440\u0430\u0437.
|
||||
Guides.Woodcutting.Section.2=[[DARK_AQUA]]\u041a\u0430\u043a \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u0443\u043c\u0435\u043d\u0438\u0435 \u0421\u0434\u0443\u0432\u0430\u0442\u0435\u043b\u044c \u041b\u0438\u0441\u0442\u044c\u0435\u0432?\n[[YELLOW]]\u0421\u0434\u0443\u0432\u0430\u0442\u0435\u043b\u044c \u041b\u0438\u0441\u0442\u044c\u0435\u0432 - \u044d\u0442\u043e \u043f\u0430\u0441\u0441\u0438\u0432\u043d\u043e\u0435 \u0443\u043c\u0435\u043d\u0438\u0435, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043f\u0440\u0438\u0432\u043e\u0434\u0438\u0442\n[[YELLOW]]\u043a \u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u0431\u043b\u043e\u043a\u0438 \u043b\u0438\u0441\u0442\u0432\u044b \u0432\u043c\u0438\u0433 \u0440\u0430\u0437\u0440\u0443\u0448\u0430\u044e\u0442\u0441\u044f \u043f\u0440\u0438 \u0443\u0434\u0430\u0440\u0435 \u0442\u043e\u043f\u043e\u0440\u043e\u043c. \n[[YELLOW]]\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e, \u044d\u0442\u043e \u0443\u043c\u0435\u043d\u0438\u0435 \u0440\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u043d\u0430 \u0443\u0440\u043e\u0432\u043d\u0435 100.
|
||||
Guides.Woodcutting.Section.3=[[DARK_AQUA]]\u041a\u0430\u043a \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u0443\u043c\u0435\u043d\u0438\u0435 \u0414\u0432\u043e\u0439\u043d\u043e\u0439 \u0414\u0440\u043e\u043f?\n[[YELLOW]]\u042d\u0442\u043e \u043f\u0430\u0441\u0441\u0438\u0432\u043d\u043e\u0435 \u0443\u043c\u0435\u043d\u0438\u0435 \u0434\u0430\u0435\u0442 \u0448\u0430\u043d\u0441 \u0432\u044b\u043f\u0430\u0434\u0435\u043d\u0438\u044f\n[[YELLOW]]\u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0431\u043b\u043e\u043a\u0430 \u0434\u0440\u0435\u0432\u0435\u0441\u0438\u043d\u044b \u043f\u0440\u0438 \u0440\u0443\u0431\u043a\u0435.
|
||||
Inspect.Offline=[[RED]]\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0432\u0435\u0440\u044f\u0442\u044c \u043e\u0444\u0444\u043b\u0430\u0439\u043d \u0438\u0433\u0440\u043e\u043a\u043e\u0432!
|
||||
Inspect.Offline=\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0432\u0435\u0440\u044f\u0442\u044c \u043e\u0444\u0444\u043b\u0430\u0439\u043d \u0438\u0433\u0440\u043e\u043a\u043e\u0432!
|
||||
Inspect.OfflineStats=mcMMO \u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0434\u043b\u044f \u041e\u0444\u0444\u043b\u0430\u0439\u043d \u0418\u0433\u0440\u043e\u043a\u043e\u0432 [[YELLOW]]{0}
|
||||
Inspect.Stats=[[GREEN]]mcMMO \u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0434\u043b\u044f [[YELLOW]]{0}
|
||||
Inspect.TooFar=[[RED]]\u0412\u044b \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0434\u0430\u043b\u0435\u043a\u043e \u0447\u0442\u043e\u0431\u044b \u0438\u043d\u0441\u043f\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430!
|
||||
Inspect.TooFar=\u0412\u044b \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0434\u0430\u043b\u0435\u043a\u043e \u0447\u0442\u043e\u0431\u044b \u0438\u043d\u0441\u043f\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u0438\u0433\u0440\u043e\u043a\u0430!
|
||||
Item.ChimaeraWing.Fail=**\u041a\u0420\u042b\u041b\u042c\u042f \u0425\u0418\u041c\u0415\u0420\u042b \u041d\u0415 \u0421\u041c\u041e\u0413\u041b\u0418 \u0423\u041d\u0415\u0421\u0422\u0418 \u0412\u0410\u0421!**
|
||||
Item.ChimaeraWing.Pass=**\u041a\u0420\u042b\u041b\u042c\u042f \u0425\u0418\u041c\u0415\u0420\u042b \u0423\u041d\u0415\u0421\u041b\u0418 \u0412\u0410\u0421!**
|
||||
Item.ChimaeraWing.Name=\u041a\u0440\u044b\u043b\u044c\u044f \u0425\u0438\u043c\u0435\u0440\u044b
|
||||
Item.ChimaeraWing.Lore=[[GRAY]]\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u0435\u0442 \u0432\u0430\u0441 \u043a \u0432\u0430\u0448\u0435\u0439 \u043a\u0440\u043e\u0432\u0430\u0442\u0438.
|
||||
Item.Generic.Wait=[[RED]]\u0412\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u043f\u043e\u0434\u043e\u0436\u0434\u0430\u0442\u044c \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u0432\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u043e \u0441\u043d\u043e\u0432\u0430! [[YELLOW]]({0}\u0441)
|
||||
Item.Generic.Wait=\u0412\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u043f\u043e\u0434\u043e\u0436\u0434\u0430\u0442\u044c \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u0432\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u043e \u0441\u043d\u043e\u0432\u0430! [[YELLOW]]({0}\u0441)
|
||||
Item.Injured.Wait=\u0412\u044b \u0431\u044b\u043b\u0438 \u0440\u0430\u043d\u0435\u043d\u044b \u0438 \u0434\u043e\u043b\u0436\u043d\u044b \u043f\u043e\u0434\u043e\u0436\u0434\u0430\u0442\u044c \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u043e. [[YELLOW]]({0}s)
|
||||
Teleport.Commencing=[[GRAY]]\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044f \u0447\u0435\u0440\u0435\u0437 [[GOLD]]({0}) [[GRAY]]\u0441\u0435\u043a\u0443\u043d\u0434, \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430 \u043d\u0435 \u0434\u0432\u0438\u0433\u0430\u0439\u0442\u0435\u0441\u044c...
|
||||
Teleport.Cancelled=[[DARK_RED]]\u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u044f \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430!
|
||||
Skills.Child=[[GOLD]](\u041d\u0410\u0421\u041b\u0415\u0414\u0421\u0422\u0412\u0415\u041d\u041d\u042b\u0419 \u041d\u0410\u0412\u042b\u041a)
|
||||
Skills.Disarmed=[[DARK_RED]]\u0412\u044b \u043e\u0431\u0435\u0437\u043e\u0440\u0443\u0436\u0435\u043d\u044b!
|
||||
Skills.Header=[[RED]]-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.Header=-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.NeedMore=[[DARK_RED]]\u041d\u0443\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u0430
|
||||
Skills.Parents=\u0420\u041e\u0414\u0418\u0422\u0415\u041b\u042c\u0421\u041a\u0418\u0419
|
||||
Skills.Stats=[[YELLOW]]{0}[[GREEN]]{1}[[DARK_AQUA]] \u041e\u041f\u042b\u0422([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats=[[YELLOW]]{0}[[GREEN]]{1}
|
||||
Skills.TooTired=[[RED]]\u0412\u044b \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0443\u0441\u0442\u0430\u043b\u0438, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u0435 \u0435\u0449\u0451 \u0440\u0430\u0437.
|
||||
Skills.Cancelled=[[RED]]{0} \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u043e!
|
||||
Skills.Stats={0}[[GREEN]]{1}[[DARK_AQUA]] \u041e\u041f\u042b\u0422([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats={0}[[GREEN]]{1}
|
||||
Skills.TooTired=\u0412\u044b \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0443\u0441\u0442\u0430\u043b\u0438, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0443\u043c\u0435\u043d\u0438\u0435 \u0435\u0449\u0451 \u0440\u0430\u0437.
|
||||
Skills.Cancelled={0} \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u043e!
|
||||
Skills.ConfirmOrCancel=[[GREEN]]\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u041f\u041a\u041c \u0435\u0449\u0435 \u0440\u0430\u0437 \u0434\u043b\u044f \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f [[GOLD]]{0}[[GREEN]]. \u041b\u041a\u041c \u0434\u043b\u044f \u043e\u0442\u043c\u0435\u043d\u044b.
|
||||
Stats.Header.Combat=[[GOLD]]-=\u0411\u041e\u0415\u0412\u042b\u0415 \u041d\u0410\u0412\u042b\u041a\u0418=-
|
||||
Stats.Header.Gathering=[[GOLD]]-=\u041d\u0410\u0412\u042b\u041a\u0418 \u0421\u0411\u041e\u0420\u0410=-
|
||||
@ -708,15 +708,15 @@ MOTD.Donate=[[DARK_AQUA]]\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\
|
||||
MOTD.Hardcore.Enabled=[[GOLD]][mcMMO] [[DARK_AQUA]]\u0420\u0435\u0436\u0438\u043c \u0425\u0430\u0440\u0434\u043a\u043e\u0440 \u0432\u043a\u043b\u044e\u0447\u0435\u043d: [[DARK_RED]]{0}
|
||||
MOTD.Hardcore.DeathStatLoss.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]\u041d\u0430\u0432\u044b\u043a \u0421\u043c\u0435\u0440\u0442\u043d\u043e\u0439 \u041a\u0430\u0437\u043d\u0438: [[DARK_RED]]{0}%
|
||||
MOTD.Hardcore.Vampirism.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]\u0412\u0430\u043c\u043f\u0438\u0440\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u041f\u043e\u0433\u043b\u043e\u0449\u0435\u043d\u0438\u0435 \u041e\u043f\u044b\u0442\u0430: [[DARK_RED]]{0}%
|
||||
MOTD.PerksPrefix=[[RED]][mcMMO Perks]
|
||||
MOTD.PerksPrefix=[mcMMO Perks]
|
||||
MOTD.Version=[[GOLD]][mcMMO] \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0432\u0435\u0440\u0441\u0438\u044f [[DARK_AQUA]]{0}
|
||||
MOTD.Website=[[GOLD]][mcMMO] [[GREEN]]{0}[[YELLOW]] - \u0421\u0430\u0439\u0442 mcMMO
|
||||
Smelting.Ability.FluxMining=[[RED]]\u0428\u0430\u043d\u0441 \u041f\u043e\u0442\u043e\u043a\u043e\u0432\u043e\u0439 \u0414\u043e\u0431\u044b\u0447\u0438: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=[[RED]]\u041c\u043d\u043e\u0436\u0438\u0442\u0435\u043b\u044c \u042d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0422\u043e\u043f\u043b\u0438\u0432\u0430: [[YELLOW]]{0}x
|
||||
Smelting.Ability.FluxMining=\u0428\u0430\u043d\u0441 \u041f\u043e\u0442\u043e\u043a\u043e\u0432\u043e\u0439 \u0414\u043e\u0431\u044b\u0447\u0438: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=\u041c\u043d\u043e\u0436\u0438\u0442\u0435\u043b\u044c \u042d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0422\u043e\u043f\u043b\u0438\u0432\u0430: [[YELLOW]]{0}x
|
||||
Smelting.Ability.Locked.0=\u0417\u0410\u0411\u041b\u041e\u041a\u0418\u0420\u041e\u0412\u0410\u041d\u041e \u0414\u041e \u0414\u041e\u0421\u0422\u0418\u0416\u0415\u041d\u0418\u042f {0}+ \u0423\u0420\u041e\u0412\u041d\u042f \u041d\u0410\u0412\u042b\u041a\u0410 (\u0423\u0412\u0415\u041b\u0418\u0427\u0415\u041d\u0418\u0415 \u041e\u041f\u042b\u0422\u0410)
|
||||
Smelting.Ability.Locked.1=\u0417\u0410\u0411\u041b\u041e\u041a\u0418\u0420\u041e\u0412\u0410\u041d\u041e \u0414\u041e \u0414\u041e\u0421\u0422\u0418\u0416\u0415\u041d\u0418\u042f {0}+ \u0423\u0420\u041e\u0412\u041d\u042f \u041d\u0410\u0412\u042b\u041a\u0410 (\u041f\u041e\u0422\u041e\u041a\u041e\u0412\u0410\u042f \u0414\u041e\u0411\u042b\u0427\u0410)
|
||||
Smelting.Ability.SecondSmelt=[[RED]]\u0428\u0430\u043d\u0441 \u0412\u0442\u043e\u0440\u043e\u0439 \u0412\u044b\u043f\u043b\u0430\u0432\u043a\u0438: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=[[RED]]\u041c\u043d\u043e\u0436\u0438\u0442\u0435\u043b\u044c \u041e\u043f\u044b\u0442\u0430: [[YELLOW]]{0}x
|
||||
Smelting.Ability.SecondSmelt=\u0428\u0430\u043d\u0441 \u0412\u0442\u043e\u0440\u043e\u0439 \u0412\u044b\u043f\u043b\u0430\u0432\u043a\u0438: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=\u041c\u043d\u043e\u0436\u0438\u0442\u0435\u043b\u044c \u041e\u043f\u044b\u0442\u0430: [[YELLOW]]{0}x
|
||||
Smelting.SubSkill.FuelEfficiency.Name=\u042d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0422\u043e\u043f\u043b\u0438\u0432\u0430
|
||||
Smelting.SubSkill.FuelEfficiency.Description=\u0423\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0433\u043e\u0440\u0435\u043d\u0438\u044f \u0442\u043e\u043f\u043b\u0438\u0432\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u043e\u0433\u043e \u043f\u0440\u0438 \u0432\u044b\u043f\u043b\u0430\u0432\u043a\u0435 \u0432 \u043f\u0435\u0447\u043a\u0435
|
||||
Smelting.SubSkill.SecondSmelt.Name=\u0412\u0442\u043e\u0440\u0430\u044f \u0412\u044b\u043f\u043b\u0430\u0432\u043a\u0430
|
||||
@ -761,7 +761,7 @@ Commands.Description.xprate=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0
|
||||
UpdateChecker.Outdated=\u0412\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0435 \u0443\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e mcMMO!
|
||||
UpdateChecker.NewAvailable=\u0415\u0441\u0442\u044c \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430\u044f \u043d\u0430 BukkitDev.
|
||||
Scoreboard.Header.PlayerStats=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 mcMMO
|
||||
Scoreboard.Header.PlayerCooldowns=[[YELLOW]]\u041a\u0443\u043b\u0434\u0430\u0443\u043d\u044b mcMMO
|
||||
Scoreboard.Header.PlayerCooldowns=\u041a\u0443\u043b\u0434\u0430\u0443\u043d\u044b mcMMO
|
||||
Scoreboard.Header.PlayerRank=\u0420\u0430\u043d\u0436\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 mcMMO
|
||||
Scoreboard.Header.PlayerInspect=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 mcMMO:
|
||||
Scoreboard.Header.PowerLevel=\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u0421\u0438\u043b\u044b
|
||||
@ -771,7 +771,7 @@ Scoreboard.Misc.CurrentXP=\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043e\u043
|
||||
Scoreboard.Misc.RemainingXP=\u041e\u0441\u0442\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u043f\u044b\u0442
|
||||
Scoreboard.Misc.Cooldown=[[LIGHT_PURPLE]]\u041a\u0443\u043b\u0434\u0430\u0443\u043d
|
||||
Scoreboard.Misc.Overall=\u041e\u0431\u0449\u0438\u0439
|
||||
Recovery.Notice=[[RED]]\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435: mcMMO [[DARK_RED]]\u043d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435.[[RED]] \u041f\u043e\u0432\u0442\u043e\u0440 5 \u0440\u0430\u0437...
|
||||
Recovery.Notice=\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435: mcMMO [[DARK_RED]]\u043d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435.[[RED]] \u041f\u043e\u0432\u0442\u043e\u0440 5 \u0440\u0430\u0437...
|
||||
Recovery.Success=[[GREEN]]\u0423\u0441\u043f\u0435\u0445! \u0414\u0430\u043d\u043d\u044b\u0435 mcMMO \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b.
|
||||
Recovery.Failure=[[RED]]mcMMO \u0432\u0441\u0435 \u0435\u0449\u0435 \u043d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435. \u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 [[AQUA]]\u043e\u0431\u0440\u0430\u0442\u0438\u0442\u044c\u0441\u044f \u043a \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0443 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.\n[[YELLOW]]\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430\u043b\u044c\u0448\u0435 \u0438\u0433\u0440\u0430\u0442\u044c \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435, \u043d\u043e \u0432\u044b[[BOLD]]\u043d\u0435 \u0431\u0443\u0434\u0435\u0442\u0435 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0443\u0440\u043e\u0432\u043d\u0438 mcMMO[[YELLOW]] \u0438 \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u043c\u044b\u0439 \u0432\u0430\u043c\u0438 \u043e\u043f\u044b\u0442 [[BOLD]]\u043d\u0435 \u0431\u0443\u0434\u0435\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d[[YELLOW]].
|
||||
Recovery.Failure=mcMMO \u0432\u0441\u0435 \u0435\u0449\u0435 \u043d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435. \u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 [[AQUA]]\u043e\u0431\u0440\u0430\u0442\u0438\u0442\u044c\u0441\u044f \u043a \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0443 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.\n[[YELLOW]]\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430\u043b\u044c\u0448\u0435 \u0438\u0433\u0440\u0430\u0442\u044c \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435, \u043d\u043e \u0432\u044b[[BOLD]]\u043d\u0435 \u0431\u0443\u0434\u0435\u0442\u0435 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0443\u0440\u043e\u0432\u043d\u0438 mcMMO[[YELLOW]] \u0438 \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u043c\u044b\u0439 \u0432\u0430\u043c\u0438 \u043e\u043f\u044b\u0442 [[BOLD]]\u043d\u0435 \u0431\u0443\u0434\u0435\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d[[YELLOW]].
|
||||
Recovery.AdminFailureNotice=[[DARK_RED]][A][[RED]] mcMMO \u043d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u0433\u0440\u043e\u043a\u0430 \u043e [[YELLOW]]{0}[[RED]]. [[LIGHT_PURPLE]]\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0431\u0430\u0437\u044b \u0434\u0430\u043d\u043d\u044b\u0445.
|
||||
|
@ -1,30 +1,30 @@
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**Duckade**
|
||||
Acrobatics.Listener=Akrobatik:
|
||||
Acrobatics.SkillName=AKROBATIK
|
||||
Acrobatics.Skillup=[[YELLOW]]Akrobatikf\u00e4rdigheten \u00f6kade med {0}. Totalt ({1})
|
||||
Acrobatics.Skillup=Akrobatikf\u00e4rdigheten \u00f6kade med {0}. Totalt ({1})
|
||||
Archery.SubSkill.SkillShot.Name=D\u00f6dsskott
|
||||
Archery.SubSkill.SkillShot.Description=\u00d6kad skada med b\u00e5gar
|
||||
Archery.SubSkill.Daze.Name=F\u00f6rvirra (Players)
|
||||
Archery.SubSkill.ArrowRetrieval.Description=Chans f\u00f6r att \u00e5terta pilar fr\u00e5n kroppar
|
||||
Archery.Listener=B\u00e5gskytte:
|
||||
Archery.Skillup=[[YELLOW]]Pilskyttef\u00e4rdigheten \u00f6kade med {0}. Totalt ({1})
|
||||
Archery.Skillup=Pilskyttef\u00e4rdigheten \u00f6kade med {0}. Totalt ({1})
|
||||
Axes.Ability.Bonus.0=Yxm\u00e4stare
|
||||
Axes.Ability.Lower=[[GRAY]]**DU S\u00c4NKER FIN YXA**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]Du var KRITISKT skadad
|
||||
Axes.Combat.GI.Struck=[[RED]]**SLAGEN AV ST\u00d6RRE EFFEKT**
|
||||
Axes.Combat.SS.Length=[[RED]]Skallsplittrare l\u00e4ngd [[YELLOW]]{0}s
|
||||
Axes.Combat.GI.Struck=**SLAGEN AV ST\u00d6RRE EFFEKT**
|
||||
Axes.Combat.SS.Length=Skallsplittrare l\u00e4ngd [[YELLOW]]{0}s
|
||||
Axes.SubSkill.CriticalStrikes.Description=Dubbel Skada
|
||||
Axes.SubSkill.AxeMastery.Description=L\u00e4gger till bonus skada
|
||||
Axes.SkillName=YXOR
|
||||
Axes.Skills.SS.On=[[GREEN]]**Skallsplittrare AKTIVERAD**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]Your [[YELLOW]Skallsplittrar [[GREEN]]f\u00f6rm\u00e5gan \u00e4r vederkvickad!
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] har anv\u00e4nt [[RED]]Skallsplittrare!
|
||||
Axes.Skillup=[[YELLOW]]Yxf\u00e4rdigheten har \u00f6kat med {0}. Totalt ({1})
|
||||
Axes.Skillup=Yxf\u00e4rdigheten har \u00f6kat med {0}. Totalt ({1})
|
||||
Excavation.Ability.Ready=[[GREEN]]**DU H\u00d6JER DIN SPADE**
|
||||
Excavation.Listener=Gr\u00e4vning:
|
||||
Excavation.SkillName=Gr\u00e4vning
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**GIGA BORR KROSSAREN AKTIVERAD**
|
||||
Excavation.Skillup=[[YELLOW]]Gr\u00e4vningsf\u00e4rdigheten har \u00f6kat med {0}. Totalt ({1})
|
||||
Excavation.Skillup=Gr\u00e4vningsf\u00e4rdigheten har \u00f6kat med {0}. Totalt ({1})
|
||||
Fishing.Ability.TH.MagicFound=[[GRAY]] Du f\u00e5r en k\u00e4nsla av magi med denna f\u00e5ngst....
|
||||
Herbalism.Ability.GTh=[[GREEN]]**GR\u00d6NA FINGRAR**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**DU H\u00d6JER DIN SKYFFEL**
|
||||
@ -32,15 +32,15 @@ Herbalism.Listener=V\u00e4xtk\u00e4nnedom:
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]Dina[[YELLOW]]Gr\u00f6na fingrar [[GREEN]]f\u00f6rm\u00e5ga \u00e4r vederkvickad!
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]Gr\u00f6na fingrar[GREEN]] har avklingat f\u00f6r [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]{0}[[DARK_GREEN]] har anv\u00e4nt [[RED]]Gr\u00f6n Jord!
|
||||
Mining.Ability.Length=[[RED]]Superbrytarl\u00e4ngd: [[YELLOW]]{0}s
|
||||
Mining.Ability.Length=Superbrytarl\u00e4ngd: [[YELLOW]]{0}s
|
||||
Mining.Ability.Lower=[[GRAY]]**DU S\u00c4NKER DIN HACKA**
|
||||
Mining.Ability.Ready=[[GREEN]]**DU F\u00d6RBEREDER DIN HACKA**
|
||||
Mining.Listener=Gruvdrift:
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[RED]]Supebrytning[[GREEN]] har avklingat f\u00f6r [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.Off=Supebrytning[[GREEN]] har avklingat f\u00f6r [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]Din [[YELLOW]]Superbrytar [[GREEN]]f\u00f6rm\u00e5ga har uppdaterats!
|
||||
Mining.Skillup=[[YELLOW]]Hackf\u00e4rdigheten \u00f6kade med {0}. Totalt ({1})
|
||||
Mining.Blast.Radius.Increase=[[RED]]\u00d6KNING AV SPR\u00c4NGNINGSRADIEN: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=[[RED]]Explosions Gruvdrift: [[YELLOW]] Grad {0}/8 [[GRAY]]({1})
|
||||
Mining.Skillup=Hackf\u00e4rdigheten \u00f6kade med {0}. Totalt ({1})
|
||||
Mining.Blast.Radius.Increase=\u00d6KNING AV SPR\u00c4NGNINGSRADIEN: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=Explosions Gruvdrift: [[YELLOW]] Grad {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Other.On=[[GREEN]]{0}[[DARK_GREEN]] har anv\u00e4nt [[RED]]Explosions Gruvdrift
|
||||
Mining.Blast.Refresh=[[GREEN]]Din [[YELLOW]]Explosionshacknings [[GREEN]]f\u00f6rm\u00e5ga har vederkvickas!
|
||||
Repair.SubSkill.Repair.Name=Reparera
|
||||
@ -57,11 +57,11 @@ Repair.SkillName=Reparera
|
||||
Repair.Skills.AdeptDiamond=[[DARK_RED]]Du \u00e4r inte skicklig nog f\u00f6r att reparera Diamant.
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]Du \u00e4r inte skicklig nog f\u00f6r att reparera Guld.
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]Du \u00e4r inte skicklig nog f\u00f6r att reparera Sten.
|
||||
Repair.Skillup=[[YELLOW]]Smidesf\u00e4rdigheten \u00f6kade med {0}. Totalt ({1})
|
||||
Repair.Skillup=Smidesf\u00e4rdigheten \u00f6kade med {0}. Totalt ({1})
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]AF Chans f\u00f6r nedgradering: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]AF Framg\u00e5ngsgrad: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Fail=[[RED]]Sv\u00e5rbegriplig kraft har permanent l\u00e4mnat f\u00f6rem\u00e5let.
|
||||
Repair.Arcane.Lost=[[RED]]Du har inte f\u00e4rdigheter nog f\u00f6r att beh\u00e5lla n\u00e5gra f\u00f6rtrollningar
|
||||
Repair.Arcane.Fail=Sv\u00e5rbegriplig kraft har permanent l\u00e4mnat f\u00f6rem\u00e5let.
|
||||
Repair.Arcane.Lost=Du har inte f\u00e4rdigheter nog f\u00f6r att beh\u00e5lla n\u00e5gra f\u00f6rtrollningar
|
||||
Swords.Ability.Lower=[[GRAY]]**DU S\u00c4NKER DITT SV\u00c4RD**
|
||||
Swords.Ability.Ready=[[GREEN]]**DU G\u00d6R DIG REDO MED SV\u00c4RDET**
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]F\u00f6rbl\u00f6dningen har [[GREEN]]stoppats[[GRAY]]!
|
||||
@ -75,7 +75,7 @@ Swords.Listener=Sv\u00e4rd:
|
||||
Swords.SkillName=SV\u00c4RD
|
||||
Swords.Skills.SS.On=[[GREEN]]**S\u00c5GTANDADE SLAG AKTIVERADE**
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]Dina [[YELLOW]]Bl\u00f6dande slag [[GREEN]]har vederkvickas!
|
||||
Swords.Skills.SS.Other.Off=[[RED]]S\u00e5gtandat slag[[GREEN]] hat avklingat h\u00e4r f\u00f6r [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.Off=S\u00e5gtandat slag[[GREEN]] hat avklingat h\u00e4r f\u00f6r [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] har anv\u00e4nt [[RED]]S\u00e5gtandat slag!
|
||||
Taming.Ability.Bonus.2=Tjock P\u00e4ls
|
||||
Taming.SubSkill.ShockProof.Name=Shocks\u00e4ker
|
||||
@ -88,46 +88,46 @@ Taming.SubSkill.FastFoodService.Name=Snabbmattj\u00e4nst.
|
||||
Taming.SubSkill.FastFoodService.Description=Chans f\u00f6r vargar att l\u00e4ka vid attak
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]din varg rusar tillbaka till dig...
|
||||
Taming.Listener=T\u00e4mja:
|
||||
Taming.Skillup=[[YELLOW]]T\u00e4mjningsf\u00e4rdigheten \u00f6kade med {0}. Totalt ({1})
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]Berserk l\u00e4ngd: [[YELLOW]]{0}s
|
||||
Taming.Skillup=T\u00e4mjningsf\u00e4rdigheten \u00f6kade med {0}. Totalt ({1})
|
||||
Unarmed.Ability.Berserk.Length=Berserk l\u00e4ngd: [[YELLOW]]{0}s
|
||||
Unarmed.Listener=Obev\u00e4pnad
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**B\u00e4rs\u00e4rk slut**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]]B\u00e4rs\u00e4rk[[GREEN]] har avklingat f\u00f6r [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Off=**B\u00e4rs\u00e4rk slut**
|
||||
Unarmed.Skills.Berserk.Other.Off=B\u00e4rs\u00e4rk[[GREEN]] har avklingat f\u00f6r [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] har anv\u00e4nt [[RED]]B\u00e4rs\u00e4rk!
|
||||
Woodcutting.Ability.0=L\u00f6vbl\u00e5sare
|
||||
Woodcutting.Ability.1=Bl\u00e5s bort l\u00f6v
|
||||
Woodcutting.SkillName=TR\u00c4DHUGGNING
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]]**Tr\u00e4df\u00e4llning har avklingat**
|
||||
Woodcutting.Skills.TreeFeller.Off=**Tr\u00e4df\u00e4llning har avklingat**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]Din [[YELLOW]]tr\u00e4df\u00e4llarkraft [[GREEN]]har vederkvickats!
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]]tr\u00e5df\u00e4llning[[GREEN]] har avklingat f\u00f6r [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=tr\u00e5df\u00e4llning[[GREEN]] har avklingat f\u00f6r [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]] har anv\u00e4nt [[RED]]Tr\u00e4d f\u00e4llare
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]DIN YXA SPLITTRAS I TUSEN BITAR!
|
||||
Woodcutting.Skillup=[[YELLOW]]Tr\u00e4dhuggningsf\u00e4rdigheten har \u00f6kat med {0}. Totalt ({1})
|
||||
Woodcutting.Skills.TreeFeller.Splinter=DIN YXA SPLITTRAS I TUSEN BITAR!
|
||||
Woodcutting.Skillup=Tr\u00e4dhuggningsf\u00e4rdigheten har \u00f6kat med {0}. Totalt ({1})
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
Combat.BeastLore=[[GREEN]]**MONSTERKUNSKAP**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]H\u00e4lsa ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]R\u00f6rde luddigt. K\u00e4nde suddigt.
|
||||
Commands.AdminChat.Off=Admin chatt endast [[RED]]Av
|
||||
Commands.AdminToggle=[[RED]]- V\u00e4xla admin chat
|
||||
Commands.Disabled=[[RED]]Det h\u00e4r kommandot \u00e4r avst\u00e4ngt.
|
||||
Commands.DoesNotExist=[[RED]]Spelaren finns inte i databasen!
|
||||
Commands.GodMode.Disabled=[[YELLOW]]mcMMO Gudsl\u00e4ge avaktiverat
|
||||
Commands.AdminToggle=- V\u00e4xla admin chat
|
||||
Commands.Disabled=Det h\u00e4r kommandot \u00e4r avst\u00e4ngt.
|
||||
Commands.DoesNotExist=Spelaren finns inte i databasen!
|
||||
Commands.GodMode.Disabled=mcMMO Gudsl\u00e4ge avaktiverat
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]F\u00f6rfr\u00e5gan accepterad. Du har nu g\u00e5tt med i gruppen {0}
|
||||
Commands.mcgod=[[RED]]- V\u00e4xla till gudsl\u00e4ge
|
||||
Commands.mcgod=- V\u00e4xla till gudsl\u00e4ge
|
||||
Commands.mmoedit=[player] <skill> <newvalue> [[RED]] - \u00c4ndra m\u00e5l
|
||||
Commands.ModDescription=[[RED]]- L\u00e4s sammanfattad mod beskrivning.
|
||||
Commands.Party.Accept=[[RED]]- Acceptera gruppinbjudan
|
||||
Commands.ModDescription=- L\u00e4s sammanfattad mod beskrivning.
|
||||
Commands.Party.Accept=- Acceptera gruppinbjudan
|
||||
Commands.Party.Chat.Off=Endast Gruppchat [[RED]]av.
|
||||
Commands.Party.Invite.0=[[RED]]VARNING: [[GREEN]]Du har f\u00e5tt en gruppinbjudan till {0} fr\u00e5n {1}
|
||||
Commands.Party.Kick=[[RED]]Du blev kickad fr\u00e5n gruppen {0}!
|
||||
Commands.Party.Leave=[[RED]]Du har l\u00e4mnat gruppen
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO[[BLUE]] Kraftniv\u00e5[[YELLOW]]Leaderboard--
|
||||
Commands.Party.Invite.0=VARNING: [[GREEN]]Du har f\u00e5tt en gruppinbjudan till {0} fr\u00e5n {1}
|
||||
Commands.Party.Kick=Du blev kickad fr\u00e5n gruppen {0}!
|
||||
Commands.Party.Leave=Du har l\u00e4mnat gruppen
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO[[BLUE]] Kraftniv\u00e5[[YELLOW]]Leaderboard--
|
||||
Commands.PowerLevel=[[DARK_RED]]KRAFTNIV\u00c5: [[GREEN]]{0}
|
||||
Commands.ToggleAbility=[[RED]]- V\u00e4xla aktiv egenskap med h\u00f6gerklick.
|
||||
Commands.ToggleAbility=- V\u00e4xla aktiv egenskap med h\u00f6gerklick.
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]Om du inte har tillg\u00e5ng till en f\u00e4rdighet visas den inte h\u00e4r.
|
||||
Party.Player.Invalid=[[RED]]Det \u00e4r ingen giltlig spelare.
|
||||
Party.Teleport.Dead=[[RED]]Du kan inte teleportera dig till en d\u00f6d spelare.
|
||||
Party.Player.Invalid=Det \u00e4r ingen giltlig spelare.
|
||||
Party.Teleport.Dead=Du kan inte teleportera dig till en d\u00f6d spelare.
|
||||
Party.Teleport.Target=[[GREEN]]{0} har teleporterat till dig.
|
||||
Party.Unlocked=[[GRAY]]Gruppen \u00e4r nu uppl\u00e5st
|
||||
Commands.XPGain.Axes=Anfallande monster
|
||||
@ -138,7 +138,7 @@ Commands.XPGain.Mining=Hugger Sten & Mineraler
|
||||
Commands.XPGain.Swords=Attackerar Monster
|
||||
Commands.XPGain.Taming=Djurt\u00e4mjning, eller sl\u00e5ss m/ dina vargar
|
||||
Commands.XPGain=[[DARK_GRAY]]XP \u00d6KAT: [[WHITE]]{0}
|
||||
Commands.xprate.proper.0=[[RED]]Riktigt anv\u00e4ndande f\u00f6r att \u00e4ndra XP graden \u00e4r /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.0=Riktigt anv\u00e4ndande f\u00f6r att \u00e4ndra XP graden \u00e4r /xprate <integer> <true/false>
|
||||
XPRate.Event=[[GOLD]]mcMMO \u00e4r f\u00f6rnuvarande med i ett XP evenemang! XP f\u00f6rh\u00e5llandet ligger p\u00e5 {0}x!
|
||||
Effects.Effects=EFFEKTER
|
||||
Effects.Template=[[DARK_AQUA]]{0}: [[GREEN]]{1}
|
||||
|
@ -1,6 +1,6 @@
|
||||
Acrobatics.Ability.Proc=[[GREEN]]**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 Graceful Landing**
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**Dodged**
|
||||
Acrobatics.DodgeChance=[[RED]]Dodge \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Acrobatics.DodgeChance=Dodge \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Name=Roll
|
||||
Acrobatics.SubSkill.Roll.Description=\u0e25\u0e14\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e15\u0e01\u0e08\u0e32\u0e01\u0e17\u0e35\u0e48\u0e2a\u0e39\u0e07
|
||||
Acrobatics.SubSkill.GracefulRoll.Name=Graceful Roll
|
||||
@ -8,14 +8,14 @@ Acrobatics.SubSkill.GracefulRoll.Description=\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e1
|
||||
Acrobatics.SubSkill.Dodge.Name=Dodge
|
||||
Acrobatics.SubSkill.Dodge.Description=\u0e25\u0e14\u0e01\u0e32\u0e23\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22\u0e04\u0e23\u0e36\u0e48\u0e07\u0e2b\u0e19\u0e36\u0e48\u0e07
|
||||
Acrobatics.Listener=\u0e17\u0e31\u0e01\u0e29\u0e30 Acrobatics:
|
||||
Acrobatics.SubSkill.Roll.Chance=[[RED]]Roll \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=[[RED]]Graceful Roll \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Chance=Roll \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=Graceful Roll \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Acrobatics.Roll.Text=**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 Rolled**
|
||||
Acrobatics.SkillName=ACROBATICS
|
||||
Acrobatics.Skillup=[[YELLOW]]\u0e17\u0e31\u0e01\u0e29\u0e30 Acrobatics \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Archery.Combat.DazeChance=[[RED]]Daze \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=[[RED]]Retrieve Arrows \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=[[RED]]\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22\u0e14\u0e49\u0e27\u0e22\u0e18\u0e19\u0e39: [[YELLOW]]{0}
|
||||
Acrobatics.Skillup=\u0e17\u0e31\u0e01\u0e29\u0e30 Acrobatics \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Archery.Combat.DazeChance=Daze \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=Retrieve Arrows \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22\u0e14\u0e49\u0e27\u0e22\u0e18\u0e19\u0e39: [[YELLOW]]{0}
|
||||
Archery.SubSkill.SkillShot.Name=Skill Shot
|
||||
Archery.SubSkill.SkillShot.Description=\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22\u0e14\u0e49\u0e27\u0e22\u0e18\u0e19\u0e39\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19
|
||||
Archery.SubSkill.Daze.Name=(Players) \u0e16\u0e39\u0e01\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e21\u0e36\u0e19\u0e07\u0e07
|
||||
@ -24,7 +24,7 @@ Archery.SubSkill.ArrowRetrieval.Name=Arrow Retrieval
|
||||
Archery.SubSkill.ArrowRetrieval.Description=\u0e21\u0e35\u0e42\u0e2d\u0e01\u0e32\u0e2a\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e18\u0e19\u0e39\u0e04\u0e37\u0e19\u0e2b\u0e25\u0e31\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e07\u0e2b\u0e32\u0e23
|
||||
Archery.Listener=\u0e17\u0e31\u0e01\u0e29\u0e30 Archery:
|
||||
Archery.SkillName=ARCHERY
|
||||
Archery.Skillup=[[YELLOW]]\u0e17\u0e31\u0e01\u0e29\u0e30 Archery \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19{0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Archery.Skillup=\u0e17\u0e31\u0e01\u0e29\u0e30 Archery \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19{0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Axes.Ability.Bonus.0=\u0e17\u0e31\u0e01\u0e29\u0e30 Axe Mastery
|
||||
Axes.Ability.Bonus.1=\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22 {0}
|
||||
Axes.Ability.Bonus.2=Armor Impact
|
||||
@ -34,11 +34,11 @@ Axes.Ability.Bonus.5=\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e04\u0e27\u0e32\u0e21\u0e4
|
||||
Axes.Ability.Lower=[[GRAY]]**\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30\u0e02\u0e2d\u0e07 Axe**
|
||||
Axes.Ability.Ready=[[GREEN]]**\u0e04\u0e38\u0e13\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30\u0e02\u0e2d\u0e07 Axe**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e17\u0e33 CRITICALLY HIT \u0e43\u0e2a\u0e48\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19!
|
||||
Axes.Combat.CritChance=[[RED]]Critically Strike \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=[[RED]]\u0e42\u0e08\u0e21\u0e15\u0e35 CRITICAL!
|
||||
Axes.Combat.CritChance=Critically Strike \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Axes.Combat.CriticalHit=\u0e42\u0e08\u0e21\u0e15\u0e35 CRITICAL!
|
||||
Axes.Combat.GI.Proc=[[GREEN]]**\u0e17\u0e33\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22\u0e14\u0e49\u0e27\u0e22 GREAT FORCE**
|
||||
Axes.Combat.GI.Struck=[[RED]]**\u0e42\u0e08\u0e21\u0e15\u0e35\u0e14\u0e49\u0e27\u0e22 GREATER IMPACT**
|
||||
Axes.Combat.SS.Length=[[RED]]Skull Splitter \u0e21\u0e35\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0}\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35
|
||||
Axes.Combat.GI.Struck=**\u0e42\u0e08\u0e21\u0e15\u0e35\u0e14\u0e49\u0e27\u0e22 GREATER IMPACT**
|
||||
Axes.Combat.SS.Length=Skull Splitter \u0e21\u0e35\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0}\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35
|
||||
Axes.SubSkill.SkullSplitter.Name=Skull Splitter
|
||||
Axes.SubSkill.SkullSplitter.Description=\u0e17\u0e33\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22\u0e27\u0e07\u0e01\u0e27\u0e49\u0e32\u0e07
|
||||
Axes.SubSkill.CriticalStrikes.Name=Critical Strikes
|
||||
@ -51,36 +51,36 @@ Axes.SubSkill.GreaterImpact.Name=Greater Impact
|
||||
Axes.SubSkill.GreaterImpact.Description=\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e17\u0e31\u0e01\u0e29\u0e30 Unarmored
|
||||
Axes.Listener=\u0e17\u0e31\u0e01\u0e29\u0e30 Axes:
|
||||
Axes.SkillName=AXES
|
||||
Axes.Skills.SS.Off=[[RED]]**\u0e17\u0e31\u0e01\u0e29\u0e30 Skull Splitter \u0e2b\u0e21\u0e14\u0e2a\u0e20\u0e32\u0e1e**
|
||||
Axes.Skills.SS.Off=**\u0e17\u0e31\u0e01\u0e29\u0e30 Skull Splitter \u0e2b\u0e21\u0e14\u0e2a\u0e20\u0e32\u0e1e**
|
||||
Axes.Skills.SS.On=[[GREEN]]**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 Skull Splitter**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e31\u0e01\u0e29\u0e30 [[YELLOW]]Skull Splitter [[GREEN]]\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27!
|
||||
Axes.Skills.SS.Other.Off=[[RED]]Skull Splitter[[GREEN]] \u0e23\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.Off=Skull Splitter[[GREEN]] \u0e23\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 [[RED]]Skull Splitter!
|
||||
Axes.Skillup=[[YELLOW]]\u0e17\u0e31\u0e01\u0e29\u0e30 Axes \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Axes.Skillup=\u0e17\u0e31\u0e01\u0e29\u0e30 Axes \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Excavation.Ability.Lower=[[GRAY]]**\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30\u0e02\u0e2d\u0e07 Shovel**
|
||||
Excavation.Ability.Ready=[[GREEN]]**\u0e04\u0e38\u0e13\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30\u0e02\u0e2d\u0e07 Shovel**
|
||||
Excavation.SubSkill.GigaDrillBreaker.Name=Giga Drill Breaker
|
||||
Excavation.SubSkill.GigaDrillBreaker.Description=\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e14\u0e23\u0e2d\u0e1b 3x , EXP 3x, +\u0e04\u0e27\u0e32\u0e21\u0e40\u0e23\u0e47\u0e27
|
||||
Excavation.SubSkill.TreasureHunter.Name=Treasure Hunter
|
||||
Excavation.SubSkill.TreasureHunter.Description=\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e43\u0e19\u0e01\u0e32\u0e23\u0e02\u0e38\u0e14\u0e2b\u0e32\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34
|
||||
Excavation.Effect.Length=[[RED]]Giga Drill Breaker \u0e21\u0e35\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0}\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35
|
||||
Excavation.Effect.Length=Giga Drill Breaker \u0e21\u0e35\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0}\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35
|
||||
Excavation.Listener=\u0e17\u0e31\u0e01\u0e29\u0e30 Excavation:
|
||||
Excavation.SkillName=EXCAVATION
|
||||
Excavation.Skills.GigaDrillBreaker.Off=[[RED]]**\u0e17\u0e31\u0e01\u0e29\u0e30 Giga Drill Breaker \u0e2b\u0e21\u0e14\u0e2a\u0e20\u0e32\u0e1e**
|
||||
Excavation.Skills.GigaDrillBreaker.Off=**\u0e17\u0e31\u0e01\u0e29\u0e30 Giga Drill Breaker \u0e2b\u0e21\u0e14\u0e2a\u0e20\u0e32\u0e1e**
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 GIGA DRILL BREAKER**
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e31\u0e01\u0e29\u0e30 [[YELLOW]]Giga Drill Breaker [[GREEN]]\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=[[RED]]Giga Drill Breaker[[GREEN]] \u0e23\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=Giga Drill Breaker[[GREEN]] \u0e23\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 [[RED]]Giga Drill Breaker!
|
||||
Excavation.Skillup=[[YELLOW]]\u0e17\u0e31\u0e01\u0e29\u0e30 Excavation \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Fishing.Ability.Chance=[[RED]]Bite \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=[[RED]]\u0e17\u0e31\u0e01\u0e29\u0e30 Magic Hunter: [[GRAY]] **\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e42\u0e14\u0e22\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e17\u0e31\u0e01\u0e29\u0e30 Treasure Hunter**
|
||||
Excavation.Skillup=\u0e17\u0e31\u0e01\u0e29\u0e30 Excavation \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Fishing.Ability.Chance=Bite \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=\u0e17\u0e31\u0e01\u0e29\u0e30 Magic Hunter: [[GRAY]] **\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e42\u0e14\u0e22\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e17\u0e31\u0e01\u0e29\u0e30 Treasure Hunter**
|
||||
Fishing.Ability.Locked.0=\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e30\u0e14\u0e31\u0e1a {0}+ (SHAKE)
|
||||
Fishing.Ability.Locked.1=\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e30\u0e14\u0e31\u0e1a {0} (ICE FISHING)
|
||||
Fishing.Ability.Rank=[[RED]]Treasure Hunter \u0e23\u0e30\u0e14\u0e31\u0e1a: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.MagicRate=[[RED]]Magic Hunter \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=[[RED]]Shake \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=[[RED]]Ice Fishing: \u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e15\u0e01\u0e1b\u0e25\u0e32\u0e43\u0e19\u0e19\u0e49\u0e33\u0e41\u0e02\u0e47\u0e07\u0e44\u0e14\u0e49
|
||||
Fishing.Ability.FD=[[RED]]Fisherman\'\'s Diet \u0e23\u0e30\u0e14\u0e31\u0e1a: [[YELLOW]]{0}
|
||||
Fishing.Ability.Rank=Treasure Hunter \u0e23\u0e30\u0e14\u0e31\u0e1a: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.MagicRate=Magic Hunter \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=Shake \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=Ice Fishing: \u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e15\u0e01\u0e1b\u0e25\u0e32\u0e43\u0e19\u0e19\u0e49\u0e33\u0e41\u0e02\u0e47\u0e07\u0e44\u0e14\u0e49
|
||||
Fishing.Ability.FD=Fisherman\'\'s Diet \u0e23\u0e30\u0e14\u0e31\u0e1a: [[YELLOW]]{0}
|
||||
Fishing.SubSkill.TreasureHunter.Name=Treasure Hunter (Passive)
|
||||
Fishing.SubSkill.TreasureHunter.Description=\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e27\u0e31\u0e15\u0e16\u0e38\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e15\u0e01\u0e1b\u0e25\u0e32
|
||||
Fishing.SubSkill.MagicHunter.Name=Magic Hunter
|
||||
@ -97,20 +97,20 @@ Fishing.Chance.Raining=[[BLUE]] Rain Bonus
|
||||
Fishing.Listener=\u0e17\u0e31\u0e01\u0e29\u0e30 Fishing:
|
||||
Fishing.Ability.TH.MagicFound=[[GRAY]]\u0e04\u0e38\u0e13\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e44\u0e14\u0e49\u0e16\u0e36\u0e07\u0e2a\u0e31\u0e21\u0e1c\u0e31\u0e2a\u0e02\u0e2d\u0e07\u0e40\u0e27\u0e17\u0e21\u0e19\u0e15\u0e23\u0e4c\u0e14\u0e49\u0e27\u0e22\u0e01\u0e32\u0e23\u0e08\u0e31\u0e1a\u0e2a\u0e34\u0e48\u0e07\u0e19\u0e35\u0e49 ...
|
||||
Fishing.SkillName=FISHING
|
||||
Fishing.Skillup=[[YELLOW]]\u0e17\u0e31\u0e01\u0e29\u0e30 Fishing \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Herbalism.Ability.DoubleDropChance=[[RED]]Double Drop \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=[[RED]]Farmer\'\'s Diet \u0e23\u0e30\u0e14\u0e31\u0e1a: [[YELLOW]] {0}
|
||||
Herbalism.Ability.GTe.Length=[[RED]]Green Terra \u0e21\u0e35\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0}\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35
|
||||
Herbalism.Ability.GTe.NeedMore=[[RED]]\u0e41\u0e15\u0e48\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e40\u0e21\u0e25\u0e47\u0e14\u0e1e\u0e31\u0e19\u0e18\u0e38\u0e4c\u0e21\u0e32\u0e01\u0e02\u0e36\u0e49\u0e19\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e0a\u0e49 Green Terra.
|
||||
Herbalism.Ability.GTh.Chance=[[RED]]Green Thumb \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=[[RED]]**GREEN THUMB \u0e25\u0e49\u0e21\u0e40\u0e2b\u0e25\u0e27**
|
||||
Herbalism.Ability.GTh.Stage=[[RED]]Green Thumb \u0e08\u0e33\u0e19\u0e27\u0e19: [[YELLOW]]{0}
|
||||
Fishing.Skillup=\u0e17\u0e31\u0e01\u0e29\u0e30 Fishing \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Herbalism.Ability.DoubleDropChance=Double Drop \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=Farmer\'\'s Diet \u0e23\u0e30\u0e14\u0e31\u0e1a: [[YELLOW]] {0}
|
||||
Herbalism.Ability.GTe.Length=Green Terra \u0e21\u0e35\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0}\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35
|
||||
Herbalism.Ability.GTe.NeedMore=\u0e41\u0e15\u0e48\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e40\u0e21\u0e25\u0e47\u0e14\u0e1e\u0e31\u0e19\u0e18\u0e38\u0e4c\u0e21\u0e32\u0e01\u0e02\u0e36\u0e49\u0e19\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e0a\u0e49 Green Terra.
|
||||
Herbalism.Ability.GTh.Chance=Green Thumb \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=**GREEN THUMB \u0e25\u0e49\u0e21\u0e40\u0e2b\u0e25\u0e27**
|
||||
Herbalism.Ability.GTh.Stage=Green Thumb \u0e08\u0e33\u0e19\u0e27\u0e19: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh=[[GREEN]]**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 GREEN THUMB**
|
||||
Herbalism.Ability.HylianLuck=[[RED]]Hylian Luck \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Herbalism.Ability.HylianLuck=Hylian Luck \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Herbalism.Ability.Lower=[[GRAY]]**\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30\u0e02\u0e2d\u0e07 Hoe**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**\u0e04\u0e38\u0e13\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30\u0e02\u0e2d\u0e07 Hoe**
|
||||
Herbalism.Ability.ShroomThumb.Chance=[[RED]]Shroom Thumb \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=[[RED]]**SHROOM THUMB \u0e25\u0e49\u0e21\u0e40\u0e2b\u0e25\u0e27**
|
||||
Herbalism.Ability.ShroomThumb.Chance=Shroom Thumb \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=**SHROOM THUMB \u0e25\u0e49\u0e21\u0e40\u0e2b\u0e25\u0e27**
|
||||
Herbalism.SubSkill.GreenTerra.Name=Green Terra
|
||||
Herbalism.SubSkill.GreenTerra.Description=\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e14\u0e23\u0e2d\u0e1b x3
|
||||
Herbalism.SubSkill.GreenThumb.Name=Green Thumb (\u0e02\u0e49\u0e32\u0e27\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19)
|
||||
@ -129,10 +129,10 @@ Herbalism.Listener=\u0e17\u0e31\u0e01\u0e29\u0e30 Herbalism:
|
||||
Herbalism.SkillName=HERBALISM
|
||||
Herbalism.Skills.GTe.On=[[GREEN]]**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 GREEN TERRA**
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]Your [[YELLOW]]Green Terra [[GREEN]]\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27!
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]]Green Terra[[GREEN]] \u0e23\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.Off=Green Terra[[GREEN]] \u0e23\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 [[RED]]Green Terra!
|
||||
Herbalism.Skillup=[[YELLOW]]\u0e17\u0e31\u0e01\u0e29\u0e30 Herbalism \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Mining.Ability.Length=[[RED]]Super Breaker \u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0}s
|
||||
Herbalism.Skillup=\u0e17\u0e31\u0e01\u0e29\u0e30 Herbalism \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Mining.Ability.Length=Super Breaker \u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0}s
|
||||
Mining.Ability.Locked.0=\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e30\u0e14\u0e31\u0e1a {0}+ (BLAST MINING)
|
||||
Mining.Ability.Locked.1=\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e30\u0e14\u0e31\u0e1a {0}+ (BIGGER BOMBS)
|
||||
Mining.Ability.Locked.2=\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e30\u0e14\u0e31\u0e1a {0}+ (DEMOLITIONS EXPERTISE)
|
||||
@ -148,20 +148,20 @@ Mining.SubSkill.BiggerBombs.Name=Bigger Bombs
|
||||
Mining.SubSkill.BiggerBombs.Description=\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e23\u0e31\u0e28\u0e21\u0e35\u0e02\u0e2d\u0e07 TNT
|
||||
Mining.SubSkill.DemolitionsExpertise.Name=Demolitions Expertise
|
||||
Mining.SubSkill.DemolitionsExpertise.Description=\u0e25\u0e14\u0e01\u0e32\u0e23\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22\u0e08\u0e32\u0e01 TNT
|
||||
Mining.Effect.Decrease=[[RED]]Demolitions \u0e25\u0e14\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=[[RED]]Double Drop \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Mining.Effect.Decrease=Demolitions \u0e25\u0e14\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=Double Drop \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Mining.Listener=\u0e17\u0e31\u0e01\u0e29\u0e30 Mining:
|
||||
Mining.SkillName=MINING
|
||||
Mining.Skills.SuperBreaker.Off=[[RED]]**\u0e17\u0e31\u0e01\u0e29\u0e30 Super Breaker \u0e2b\u0e21\u0e14\u0e2a\u0e20\u0e32\u0e1e**
|
||||
Mining.Skills.SuperBreaker.Off=**\u0e17\u0e31\u0e01\u0e29\u0e30 Super Breaker \u0e2b\u0e21\u0e14\u0e2a\u0e20\u0e32\u0e1e**
|
||||
Mining.Skills.SuperBreaker.On=[[GREEN]]**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 SUPER BREAKER**
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[RED]]Super Breaker[[GREEN]] \u0e23\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.Off=Super Breaker[[GREEN]] \u0e23\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 [[RED]]Super Breaker!
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e23\u0e16\u0e17\u0e31\u0e01\u0e29\u0e30 [[YELLOW]]Super Breaker [[GREEN]]\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27!
|
||||
Mining.Skillup=[[YELLOW]]\u0e17\u0e31\u0e01\u0e29\u0e30 Mining \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Mining.Skillup=\u0e17\u0e31\u0e01\u0e29\u0e30 Mining \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Mining.Blast.Boom=[[GRAY]]**BOOM**
|
||||
Mining.Blast.Effect=+{0} \u0e1c\u0e25\u0e1c\u0e25\u0e34\u0e15\u0e41\u0e23\u0e48, -{1} \u0e1c\u0e25\u0e1c\u0e25\u0e34\u0e15\u0e40\u0e28\u0e29, {2}x \u0e14\u0e23\u0e2d\u0e1b
|
||||
Mining.Blast.Radius.Increase=[[RED]]\u0e23\u0e31\u0e28\u0e21\u0e35\u0e02\u0e2d\u0e07\u0e23\u0e30\u0e40\u0e1a\u0e34\u0e14\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=[[RED]]\u0e17\u0e31\u0e01\u0e29\u0e30 Blast Mining: [[YELLOW]] \u0e23\u0e30\u0e14\u0e31\u0e1a {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Radius.Increase=\u0e23\u0e31\u0e28\u0e21\u0e35\u0e02\u0e2d\u0e07\u0e23\u0e30\u0e40\u0e1a\u0e34\u0e14\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=\u0e17\u0e31\u0e01\u0e29\u0e30 Blast Mining: [[YELLOW]] \u0e23\u0e30\u0e14\u0e31\u0e1a {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 [[RED]]Blast Mining!
|
||||
Mining.Blast.Refresh=[[GREEN]]\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e31\u0e01\u0e29\u0e30 [[YELLOW]]Blast Mining [[GREEN]]\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27!
|
||||
Repair.SubSkill.Repair.Name=\u0e0b\u0e48\u0e2d\u0e21\u0e41\u0e0b\u0e21
|
||||
@ -192,33 +192,33 @@ Repair.Skills.AdeptDiamond=[[DARK_RED]]\u0e17\u0e31\u0e01\u0e29\u0e30 Repair \u0
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]\u0e17\u0e31\u0e01\u0e29\u0e30 Repair \u0e44\u0e21\u0e48\u0e1e\u0e2d\u0e17\u0e35\u0e48\u0e08\u0e30\u0e0b\u0e48\u0e2d\u0e21\u0e2d\u0e38\u0e1b\u0e01\u0e23\u0e13\u0e4c\u0e17\u0e2d\u0e07.
|
||||
Repair.Skills.AdeptIron=[[DARK_RED]]\u0e17\u0e31\u0e01\u0e29\u0e30 Repair \u0e44\u0e21\u0e48\u0e1e\u0e2d\u0e17\u0e35\u0e48\u0e08\u0e30\u0e0b\u0e48\u0e2d\u0e21\u0e2d\u0e38\u0e1b\u0e01\u0e23\u0e13\u0e4c\u0e40\u0e2b\u0e25\u0e47\u0e01.
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]\u0e17\u0e31\u0e01\u0e29\u0e30 Repair \u0e44\u0e21\u0e48\u0e1e\u0e2d\u0e17\u0e35\u0e48\u0e08\u0e30\u0e0b\u0e48\u0e2d\u0e21\u0e2d\u0e38\u0e1b\u0e01\u0e23\u0e13\u0e4c\u0e2b\u0e34\u0e19.
|
||||
Repair.Skills.Adept=[[RED]]\u0e04\u0e38\u0e13\u0e21\u0e35\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e0b\u0e48\u0e2d\u0e21\u0e41\u0e0b\u0e21 [[YELLOW]]{0}[[RED]] \u0e40\u0e1e\u0e35\u0e22\u0e07\u0e1e\u0e2d\u0e17\u0e35\u0e48\u0e08\u0e30\u0e0b\u0e48\u0e2d\u0e21\u0e41\u0e0b\u0e21 [[YELLOW]]{1}
|
||||
Repair.Skills.Adept=\u0e04\u0e38\u0e13\u0e21\u0e35\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e0b\u0e48\u0e2d\u0e21\u0e41\u0e0b\u0e21 [[YELLOW]]{0}[[RED]] \u0e40\u0e1e\u0e35\u0e22\u0e07\u0e1e\u0e2d\u0e17\u0e35\u0e48\u0e08\u0e30\u0e0b\u0e48\u0e2d\u0e21\u0e41\u0e0b\u0e21 [[YELLOW]]{1}
|
||||
Repair.Skills.FeltEasy=[[GRAY]]\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e27\u0e48\u0e32\u0e21\u0e31\u0e19\u0e07\u0e48\u0e32\u0e22.
|
||||
Repair.Skills.FullDurability=[[GRAY]]\u0e2a\u0e34\u0e48\u0e07\u0e19\u0e35\u0e49\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e04\u0e07\u0e17\u0e19\u0e40\u0e15\u0e47\u0e21\u0e41\u0e25\u0e49\u0e27.
|
||||
Repair.Skills.SalvageSuccess=[[GRAY]]\u0e2a\u0e34\u0e48\u0e07\u0e02\u0e2d\u0e07\u0e16\u0e39\u0e01\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19!
|
||||
Repair.Skills.NotFullDurability=[[DARK_RED]]\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e01\u0e2d\u0e1a\u0e01\u0e39\u0e49\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22\u0e2a\u0e34\u0e48\u0e07\u0e02\u0e2d\u0e07\u0e19\u0e35\u0e49.
|
||||
Repair.Skills.Mastery=[[RED]]Repair Mastery: [[YELLOW]]\u0e40\u0e1e\u0e34\u0e48\u0e21 {0} \u0e15\u0e48\u0e2d\u0e01\u0e32\u0e23\u0e0b\u0e48\u0e2d\u0e21\u0e41\u0e0b\u0e21
|
||||
Repair.Skills.Mastery=Repair Mastery: [[YELLOW]]\u0e40\u0e1e\u0e34\u0e48\u0e21 {0} \u0e15\u0e48\u0e2d\u0e01\u0e32\u0e23\u0e0b\u0e48\u0e2d\u0e21\u0e41\u0e0b\u0e21
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e0b\u0e48\u0e2d\u0e21\u0e41\u0e0b\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e0b\u0e49\u0e2d\u0e19\u0e01\u0e31\u0e19\u0e44\u0e14\u0e49.
|
||||
Repair.Skills.Super.Chance=[[RED]]Super Repair \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Repair.Skillup=[[YELLOW]]\u0e17\u0e31\u0e01\u0e29\u0e30 Repair \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Repair.Skills.Super.Chance=Super Repair \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Repair.Skillup=\u0e17\u0e31\u0e01\u0e29\u0e30 Repair \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Repair.Pretty.Name=Repair
|
||||
Salvage.Pretty.Name=Salvage
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]AF \u0e21\u0e35\u0e42\u0e2d\u0e01\u0e32\u0e2a\u0e25\u0e14\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]AF \u0e42\u0e2d\u0e01\u0e32\u0e2a\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Downgrade=[[RED]]\u0e2d\u0e33\u0e19\u0e32\u0e08\u0e25\u0e35\u0e49\u0e25\u0e31\u0e1a\u0e44\u0e14\u0e49\u0e25\u0e14\u0e25\u0e07\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u0e49.
|
||||
Repair.Arcane.Fail=[[RED]]\u0e2d\u0e33\u0e19\u0e32\u0e08\u0e25\u0e35\u0e49\u0e25\u0e31\u0e1a\u0e44\u0e14\u0e49\u0e17\u0e34\u0e49\u0e07\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e16\u0e32\u0e27\u0e23.
|
||||
Repair.Arcane.Lost=[[RED]]\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e21\u0e35\u0e17\u0e31\u0e01\u0e29\u0e30\u0e1e\u0e2d\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e1b\u0e23\u0e30\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e20\u0e32\u0e1e
|
||||
Repair.Arcane.Downgrade=\u0e2d\u0e33\u0e19\u0e32\u0e08\u0e25\u0e35\u0e49\u0e25\u0e31\u0e1a\u0e44\u0e14\u0e49\u0e25\u0e14\u0e25\u0e07\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u0e49.
|
||||
Repair.Arcane.Fail=\u0e2d\u0e33\u0e19\u0e32\u0e08\u0e25\u0e35\u0e49\u0e25\u0e31\u0e1a\u0e44\u0e14\u0e49\u0e17\u0e34\u0e49\u0e07\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e16\u0e32\u0e27\u0e23.
|
||||
Repair.Arcane.Lost=\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e21\u0e35\u0e17\u0e31\u0e01\u0e29\u0e30\u0e1e\u0e2d\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e1b\u0e23\u0e30\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e20\u0e32\u0e1e
|
||||
Repair.Arcane.Perfect=[[GREEN]]\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e22\u0e31\u0e48\u0e07\u0e22\u0e37\u0e19\u0e1e\u0e25\u0e31\u0e07\u0e07\u0e32\u0e19\u0e25\u0e35\u0e49\u0e25\u0e31\u0e1a\u0e43\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u0e49.
|
||||
Repair.Arcane.Rank=[[RED]]Arcane Forging \u0e23\u0e30\u0e14\u0e31\u0e1a: [[YELLOW]]{0}/4
|
||||
Repair.Arcane.Rank=Arcane Forging \u0e23\u0e30\u0e14\u0e31\u0e1a: [[YELLOW]]{0}/4
|
||||
Swords.Ability.Lower=[[GRAY]]**\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 Sword**
|
||||
Swords.Ability.Ready=[[GREEN]]**\u0e04\u0e38\u0e13\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30\u0e02\u0e2d\u0e07 Sword**
|
||||
Swords.Combat.Bleed.Chance=[[RED]]Bleed \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=[[RED]]Bleed \u0e21\u0e35\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Chance=Bleed \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=Bleed \u0e21\u0e35\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Note=[[GRAY]]NOTE: [[YELLOW]]1 Tick \u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e17\u0e38\u0e01 2 \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35
|
||||
Swords.Combat.Bleeding.Started=[[DARK_RED]] \u0e04\u0e38\u0e13\u0e01\u0e33\u0e25\u0e31\u0e07\u0e40\u0e25\u0e37\u0e2d\u0e14\u0e44\u0e2b\u0e25!
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]\u0e17\u0e31\u0e01\u0e29\u0e30 Enemy Bleeding \u0e2b\u0e21\u0e14\u0e2a\u0e20\u0e32\u0e1e[[GREEN]]
|
||||
Swords.Combat.Bleeding=[[GREEN]]**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 ENEMY BLEEDING**
|
||||
Swords.Combat.Counter.Chance=[[RED]]Counter Attack \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Chance=Counter Attack \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Hit=[[DARK_RED]]\u0e42\u0e08\u0e21\u0e15\u0e35\u0e14\u0e49\u0e27\u0e22 counter-attack!
|
||||
Swords.Combat.Countered=[[GREEN]]**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 COUNTER-ATTACKED**
|
||||
Swords.Combat.SS.Struck=[[DARK_RED]]\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e21\u0e36\u0e19\u0e07\u0e07 \u0e40\u0e1e\u0e23\u0e32\u0e30 \u0e17\u0e31\u0e01\u0e29\u0e30 SERRATED STRIKES!
|
||||
@ -231,13 +231,13 @@ Swords.SubSkill.Bleed.Name=Bleed
|
||||
Swords.SubSkill.Bleed.Description=\u0e40\u0e25\u0e37\u0e2d\u0e14\u0e44\u0e2b\u0e25\u0e2d\u0e2d\u0e01
|
||||
Swords.Listener=\u0e17\u0e31\u0e01\u0e29\u0e30 Swords:
|
||||
Swords.SkillName=SWORDS
|
||||
Swords.Skills.SS.Off=[[RED]]**\u0e17\u0e31\u0e01\u0e29\u0e30 Serrated Strikes \u0e2b\u0e21\u0e14\u0e2a\u0e20\u0e32\u0e1e**
|
||||
Swords.Skills.SS.Off=**\u0e17\u0e31\u0e01\u0e29\u0e30 Serrated Strikes \u0e2b\u0e21\u0e14\u0e2a\u0e20\u0e32\u0e1e**
|
||||
Swords.Skills.SS.On=[[GREEN]]**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e28\u0e30 SERRATED STRIKES**
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e31\u0e01\u0e29\u0e30 [[YELLOW]]Serrated Strikes [[GREEN]]\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27!
|
||||
Swords.Skills.SS.Other.Off=[[RED]]Serrated Strikes[[GREEN]] \u0e23\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.Off=Serrated Strikes[[GREEN]] \u0e23\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 [[RED]]Serrated Strikes!
|
||||
Swords.Skillup=[[YELLOW]]\u0e17\u0e31\u0e01\u0e29\u0e30 Swords \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Swords.SS.Length=[[RED]]Serrated Strikes \u0e21\u0e35\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0}\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35
|
||||
Swords.Skillup=\u0e17\u0e31\u0e01\u0e29\u0e30 Swords \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Swords.SS.Length=Serrated Strikes \u0e21\u0e35\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0}\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35
|
||||
Taming.Ability.Bonus.0=Environmentally Aware
|
||||
Taming.Ability.Bonus.1=\u0e2b\u0e21\u0e32\u0e1b\u0e48\u0e32\u0e2b\u0e25\u0e35\u0e01\u0e40\u0e25\u0e35\u0e48\u0e22\u0e07\u0e2d\u0e31\u0e19\u0e15\u0e23\u0e32\u0e22
|
||||
Taming.Ability.Bonus.2=Thick Fur
|
||||
@ -256,7 +256,7 @@ Taming.Ability.Locked.2=\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e25\u0e14\u
|
||||
Taming.Ability.Locked.3=\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e30\u0e14\u0e31\u0e1a {0}+ (SHARPENED CLAWS)
|
||||
Taming.Ability.Locked.4=\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e30\u0e14\u0e31\u0e1a {0}+ (FAST FOOD SERVICE)
|
||||
Taming.Ability.Locked.5=\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e30\u0e14\u0e31\u0e1a {0}+ (HOLY HOUND)
|
||||
Taming.Combat.Chance.Gore=[[RED]]Gore \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Taming.Combat.Chance.Gore=Gore \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Taming.SubSkill.BeastLore.Name=Beast Lore
|
||||
Taming.SubSkill.BeastLore.Description=\u0e01\u0e23\u0e30\u0e14\u0e39\u0e01\u0e43\u0e0a\u0e49\u0e15\u0e23\u0e27\u0e08\u0e2b\u0e21\u0e32\u0e1b\u0e48\u0e32\u0e41\u0e25\u0e30 ocelots
|
||||
Taming.SubSkill.ShockProof.Name=Shock Proof
|
||||
@ -280,18 +280,18 @@ Taming.SubSkill.ThickFur.Description=\u0e25\u0e14\u0e04\u0e27\u0e32\u0e21\u0e40\
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]\u0e2b\u0e21\u0e32\u0e1b\u0e48\u0e32\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e01\u0e25\u0e31\u0e1a\u0e21\u0e32\u0e2b\u0e32\u0e04\u0e38\u0e13...
|
||||
Taming.Listener=\u0e17\u0e31\u0e01\u0e29\u0e30 Taming:
|
||||
Taming.SkillName=TAMING
|
||||
Taming.Skillup=[[YELLOW]]\u0e17\u0e31\u0e01\u0e29\u0e30 Taming \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Taming.Skillup=\u0e17\u0e31\u0e01\u0e29\u0e30 Taming \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Taming.Summon.Complete=[[GREEN]]\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2a\u0e31\u0e15\u0e27\u0e4c\u0e2d\u0e2d\u0e01\u0e21\u0e32\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08
|
||||
Taming.Summon.Fail.Ocelot=[[RED]]\u0e04\u0e38\u0e13\u0e21\u0e35 ocelots \u0e21\u0e32\u0e01\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e2d\u0e01\u0e21\u0e32\u0e44\u0e14\u0e49
|
||||
Taming.Summon.Fail.Wolf=[[RED]]\u0e04\u0e38\u0e13\u0e21\u0e35 wolf \u0e21\u0e32\u0e01\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e2d\u0e01\u0e21\u0e32\u0e44\u0e14\u0e49
|
||||
Taming.Summon.Fail.Ocelot=\u0e04\u0e38\u0e13\u0e21\u0e35 ocelots \u0e21\u0e32\u0e01\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e2d\u0e01\u0e21\u0e32\u0e44\u0e14\u0e49
|
||||
Taming.Summon.Fail.Wolf=\u0e04\u0e38\u0e13\u0e21\u0e35 wolf \u0e21\u0e32\u0e01\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e2d\u0e01\u0e21\u0e32\u0e44\u0e14\u0e49
|
||||
Taming.Summon.Name.Format={0}s {1}
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]Berserk \u0e21\u0e35\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0}\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35
|
||||
Unarmed.Ability.Berserk.Length=Berserk \u0e21\u0e35\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0}\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35
|
||||
Unarmed.Ability.Bonus.0=Iron Arm Style
|
||||
Unarmed.Ability.Bonus.1=+{0} \u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19
|
||||
Unarmed.Ability.Chance.ArrowDeflect=[[RED]]Arrow Deflect \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=[[RED]]Disarm \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=[[RED]]Iron Grip \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=[[RED]]\u0e1d\u0e48\u0e32\u0e22\u0e15\u0e23\u0e07\u0e02\u0e49\u0e32\u0e21\u0e21\u0e35 iron grip!
|
||||
Unarmed.Ability.Chance.ArrowDeflect=Arrow Deflect \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=Disarm \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=Iron Grip \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=\u0e1d\u0e48\u0e32\u0e22\u0e15\u0e23\u0e07\u0e02\u0e49\u0e32\u0e21\u0e21\u0e35 iron grip!
|
||||
Unarmed.Ability.IronGrip.Defender=[[GREEN]]Iron grip \u0e17\u0e33\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22!
|
||||
Unarmed.Ability.Lower=[[GRAY]]**\u0e04\u0e38\u0e13\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30\u0e02\u0e2d\u0e07 \u0e21\u0e37\u0e2d**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**\u0e04\u0e38\u0e13\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30\u0e02\u0e2d\u0e07 \u0e21\u0e37\u0e2d**
|
||||
@ -307,16 +307,16 @@ Unarmed.SubSkill.IronGrip.Name=Iron Grip
|
||||
Unarmed.SubSkill.IronGrip.Description=\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19\u0e44\u0e21\u0e48\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e16\u0e39\u0e01\u0e1b\u0e25\u0e14
|
||||
Unarmed.Listener=\u0e17\u0e31\u0e01\u0e29\u0e30 Unarmed:
|
||||
Unarmed.SkillName=UNARMED
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**\u0e17\u0e31\u0e01\u0e29\u0e30 Berserk \u0e2b\u0e21\u0e14\u0e2a\u0e20\u0e32\u0e1e**
|
||||
Unarmed.Skills.Berserk.Off=**\u0e17\u0e31\u0e01\u0e29\u0e30 Berserk \u0e2b\u0e21\u0e14\u0e2a\u0e20\u0e32\u0e1e**
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 BERSERK**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]]Berserk[[GREEN]] \u0e23\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.Off=Berserk[[GREEN]] \u0e23\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 [[RED]]Berserk!
|
||||
Unarmed.Skills.Berserk.Refresh=[[GREEN]]\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e31\u0e01\u0e29\u0e30 [[YELLOW]]Berserk [[GREEN]]\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27!
|
||||
Unarmed.Skillup=[[YELLOW]]\u0e17\u0e31\u0e01\u0e29\u0e30 Unarmed \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Unarmed.Skillup=\u0e17\u0e31\u0e01\u0e29\u0e30 Unarmed \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Woodcutting.Ability.0=\u0e17\u0e31\u0e01\u0e29\u0e30 Leaf Blower
|
||||
Woodcutting.Ability.1=\u0e17\u0e33\u0e25\u0e32\u0e22\u0e43\u0e1a\u0e44\u0e21\u0e49\u0e2d\u0e2d\u0e01
|
||||
Woodcutting.Ability.Chance.DDrop=[[RED]]Double Drop \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=[[RED]]Tree Feller \u0e21\u0e35\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0}\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35
|
||||
Woodcutting.Ability.Chance.DDrop=Double Drop \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=Tree Feller \u0e21\u0e35\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32: [[YELLOW]]{0}\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35
|
||||
Woodcutting.Ability.Locked.0=\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e30\u0e14\u0e31\u0e1a {0}+ (LEAF BLOWER)
|
||||
Woodcutting.SubSkill.TreeFeller.Name=Tree Feller
|
||||
Woodcutting.SubSkill.TreeFeller.Description=\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e15\u0e49\u0e19\u0e44\u0e21\u0e49\u0e23\u0e30\u0e40\u0e1a\u0e34\u0e14
|
||||
@ -326,122 +326,122 @@ Woodcutting.SubSkill.HarvestLumber.Name=\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e2d\u0e
|
||||
Woodcutting.SubSkill.HarvestLumber.Description=\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e2d\u0e31\u0e04\u0e23\u0e32\u0e01\u0e32\u0e23 Drops
|
||||
Woodcutting.Listener=\u0e17\u0e31\u0e01\u0e29\u0e30 Woodcutting:
|
||||
Woodcutting.SkillName=WOODCUTTING
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]]**\u0e17\u0e31\u0e01\u0e29\u0e30 Tree Feller \u0e2b\u0e21\u0e14\u0e2a\u0e20\u0e32\u0e1e**
|
||||
Woodcutting.Skills.TreeFeller.Off=**\u0e17\u0e31\u0e01\u0e29\u0e30 Tree Feller \u0e2b\u0e21\u0e14\u0e2a\u0e20\u0e32\u0e1e**
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 TREE FELLER**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e31\u0e01\u0e29\u0e30 [[YELLOW]]Tree Feller [[GREEN]]\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27!
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]]Tree Feller[[GREEN]] \u0e23\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=Tree Feller[[GREEN]] \u0e23\u0e2d\u0e01\u0e32\u0e23\u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 [[RED]]Tree Feller!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]\u0e02\u0e27\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e1e\u0e31\u0e07\u0e41\u0e25\u0e49\u0e27!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]\u0e15\u0e49\u0e19\u0e44\u0e21\u0e49\u0e15\u0e49\u0e19\u0e19\u0e35\u0e49\u0e43\u0e2b\u0e0d\u0e48\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b!
|
||||
Woodcutting.Skillup=[[YELLOW]]\u0e17\u0e31\u0e01\u0e29\u0e30 Woodcutting \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Woodcutting.Skills.TreeFeller.Splinter=\u0e02\u0e27\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e1e\u0e31\u0e07\u0e41\u0e25\u0e49\u0e27!
|
||||
Woodcutting.Skills.TreeFeller.Threshold=\u0e15\u0e49\u0e19\u0e44\u0e21\u0e49\u0e15\u0e49\u0e19\u0e19\u0e35\u0e49\u0e43\u0e2b\u0e0d\u0e48\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b!
|
||||
Woodcutting.Skillup=\u0e17\u0e31\u0e01\u0e29\u0e30 Woodcutting \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19 {0}. \u0e21\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 ({1})
|
||||
Ability.Generic.Refresh=[[GREEN]]**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 ABILITIES REFRESHED!**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
Combat.ArrowDeflect=[[WHITE]]**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 ARROW DEFLECT**
|
||||
Combat.BeastLore=[[GREEN]]**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 BEAST LORE**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e40\u0e25\u0e37\u0e2d\u0e14 ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]\u0e40\u0e08\u0e49\u0e32\u0e02\u0e2d\u0e07 ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 GORED**
|
||||
Combat.StruckByGore=[[RED]]**\u0e04\u0e38\u0e13\u0e16\u0e39\u0e01\u0e17\u0e31\u0e01\u0e29\u0e30 Gored**
|
||||
Combat.StruckByGore=**\u0e04\u0e38\u0e13\u0e16\u0e39\u0e01\u0e17\u0e31\u0e01\u0e29\u0e30 Gored**
|
||||
Combat.TargetDazed=\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e17\u0e35\u0e48 [[DARK_RED]]\u0e21\u0e36\u0e19\u0e07\u0e07
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]\u0e04\u0e38\u0e13\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e21\u0e36\u0e19 \u0e40\u0e1e\u0e23\u0e32\u0e30 \u0e17\u0e31\u0e01\u0e29\u0e30 Touched Fuzzy.
|
||||
mcMMO.Description=[[DARK_AQUA]]About the [[YELLOW]]mcMMO[[DARK_AQUA]] Project:,[[GOLD]]mcMMO is an [[RED]]open source[[GOLD]] RPG mod created in February 2011,[[GOLD]]by [[BLUE]]nossr50[[GOLD]]. The goal is to provide a quality RPG experience.,[[DARK_AQUA]]Tips:,[[GOLD]] - [[GREEN]]Use [[RED]]/mcmmo help[[GREEN]] to see commands,[[GOLD]] - [[GREEN]]Type [[RED]]/SKILLNAME[[GREEN]] to see detailed skill info,[[DARK_AQUA]]Developers:,[[GOLD]] - [[GREEN]]nossr50 [[BLUE]](Founder & Project Lead),[[GOLD]] - [[GREEN]]GJ [[BLUE]](Former Project Lead),[[GOLD]] - [[GREEN]]NuclearW [[BLUE]](Developer),[[GOLD]] - [[GREEN]]bm01 [[BLUE]](Developer),[[GOLD]] - [[GREEN]]TfT_02 [[BLUE]](Developer),[[GOLD]] - [[GREEN]]Glitchfinder [[BLUE]](Developer),[[GOLD]] - [[GREEN]]t00thpick1 [[BLUE]](Developer),[[DARK_AQUA]]Useful Links:,[[GOLD]] - [[GREEN]]https://github.com/mcMMO-Dev/mcMMO/issues[[GOLD]] Bug Reporting,[[GOLD]] - [[GREEN]]#mcmmo @ irc.esper.net[[GOLD]] IRC Chat,
|
||||
Commands.addlevels.AwardAll.1=[[GREEN]]\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e07\u0e27\u0e31\u0e25 {0} \u0e17\u0e38\u0e01\u0e17\u0e31\u0e01\u0e29\u0e30!
|
||||
Commands.addlevels.AwardAll.2=[[RED]]\u0e17\u0e31\u0e01\u0e29\u0e30\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e37\u0e48\u0e2d {0}.
|
||||
Commands.addlevels.AwardAll.2=\u0e17\u0e31\u0e01\u0e29\u0e30\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e37\u0e48\u0e2d {0}.
|
||||
Commands.addlevels.AwardSkill.1=[[GREEN]]\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e07\u0e27\u0e31\u0e25 {0} \u0e43\u0e19\u0e17\u0e31\u0e01\u0e29\u0e30 {1}!
|
||||
Commands.addlevels.AwardSkill.2=[[RED]]{0} \u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a {1}.
|
||||
Commands.addlevels.AwardSkill.2={0} \u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a {1}.
|
||||
Commands.addxp.AwardAll=[[GREEN]]\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e07\u0e27\u0e31\u0e25 {0} \u0e1b\u0e23\u0e30\u0e2a\u0e1a\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e43\u0e19\u0e17\u0e31\u0e01\u0e29\u0e30\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14!
|
||||
Commands.addxp.AwardSkill=[[GREEN]]\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e07\u0e27\u0e31\u0e25 {0} \u0e1b\u0e23\u0e30\u0e2a\u0e1a\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e17\u0e31\u0e01\u0e29\u0e30 {1}!
|
||||
Commands.Ability.Off=Ability \u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e42\u0e2b\u0e21\u0e14[[GREEN]]\u0e1b\u0e34\u0e14
|
||||
Commands.Ability.On=Ability \u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e42\u0e2b\u0e21\u0e14[[GREEN]]\u0e40\u0e1b\u0e34\u0e14
|
||||
Commands.AdminChat.Off=Admin Chat [[RED]]\u0e16\u0e39\u0e01\u0e1b\u0e34\u0e14
|
||||
Commands.AdminChat.On=Admin Chat [[GREEN]]\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19
|
||||
Commands.AdminToggle=[[RED]]- \u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e42\u0e2b\u0e21\u0e14 admin chat
|
||||
Commands.AdminToggle=- \u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e42\u0e2b\u0e21\u0e14 admin chat
|
||||
Commands.Chat.Console=*Console*
|
||||
Commands.Disabled=[[RED]]\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e19\u0e35\u0e49\u0e16\u0e39\u0e01\u0e1b\u0e34\u0e14\u0e44\u0e27\u0e49.
|
||||
Commands.DoesNotExist=[[RED]]\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19\u0e43\u0e19\u0e10\u0e32\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25!
|
||||
Commands.GodMode.Disabled=[[YELLOW]]mcMMO \u0e42\u0e2b\u0e21\u0e14 God \u0e16\u0e39\u0e01\u0e1b\u0e34\u0e14\u0e2d\u0e22\u0e39\u0e48
|
||||
Commands.GodMode.Enabled=[[YELLOW]]mcMMO \u0e42\u0e2b\u0e21\u0e14 God \u0e16\u0e39\u0e01\u0e40\u0e1b\u0e34\u0e14
|
||||
Commands.Disabled=\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e19\u0e35\u0e49\u0e16\u0e39\u0e01\u0e1b\u0e34\u0e14\u0e44\u0e27\u0e49.
|
||||
Commands.DoesNotExist=\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19\u0e43\u0e19\u0e10\u0e32\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25!
|
||||
Commands.GodMode.Disabled=mcMMO \u0e42\u0e2b\u0e21\u0e14 God \u0e16\u0e39\u0e01\u0e1b\u0e34\u0e14\u0e2d\u0e22\u0e39\u0e48
|
||||
Commands.GodMode.Enabled=mcMMO \u0e42\u0e2b\u0e21\u0e14 God \u0e16\u0e39\u0e01\u0e40\u0e1b\u0e34\u0e14
|
||||
Commands.GodMode.Forbidden=[mcMMO] \u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e1a\u0e19\u0e42\u0e25\u0e01\u0e19\u0e35\u0e49 (\u0e14\u0e39 Permissions)
|
||||
Commands.Inspect=<player> [[RED]]- \u0e14\u0e39\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]\u0e22\u0e34\u0e19\u0e22\u0e2d\u0e21\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e40\u0e0a\u0e34\u0e0d. \u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e40\u0e02\u0e49\u0e32 party {0}
|
||||
Commands.Invite.Success=[[GREEN]]\u0e2a\u0e48\u0e07\u0e04\u0e33\u0e40\u0e0a\u0e34\u0e0d\u0e41\u0e25\u0e49\u0e27\u0e1b\u0e23\u0e30\u0e2a\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08.
|
||||
Commands.Leaderboards=<skill> <page> [[RED]]- Leaderboards
|
||||
Commands.mcc.Header=[[RED]]---[][[YELLOW]]\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07 mcMMO[[RED]][]---
|
||||
Commands.mcgod=[[RED]]- \u0e42\u0e2b\u0e21\u0e14 God
|
||||
Commands.mchud.Invalid=[[RED]]\u0e44\u0e21\u0e48\u0e1e\u0e1a HUD \u0e0a\u0e19\u0e34\u0e14\u0e19\u0e35\u0e49.
|
||||
Commands.mcc.Header=---[][[YELLOW]]\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07 mcMMO[[RED]][]---
|
||||
Commands.mcgod=- \u0e42\u0e2b\u0e21\u0e14 God
|
||||
Commands.mchud.Invalid=\u0e44\u0e21\u0e48\u0e1e\u0e1a HUD \u0e0a\u0e19\u0e34\u0e14\u0e19\u0e35\u0e49.
|
||||
Commands.mcpurge.Success=[[GREEN]]\u0e10\u0e32\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e33\u0e25\u0e31\u0e07\u0e25\u0e49\u0e32\u0e07\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27!
|
||||
Commands.mcrank.Heading=[[GOLD]]-=\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2d\u0e31\u0e19\u0e14\u0e31\u0e1a\u0e02\u0e2d\u0e07\u0e1a\u0e38\u0e04\u0e04\u0e25=-
|
||||
Commands.mcrank.Overall=[[YELLOW]]\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14[[GREEN]] - [[GOLD]]\u0e23\u0e30\u0e14\u0e31\u0e1a [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=[[RED]]\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill=[[YELLOW]]{0}[[GREEN]] - [[GOLD]]\u0e25\u0e33\u0e14\u0e31\u0e1a [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Overall=\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14[[GREEN]] - [[GOLD]]\u0e23\u0e30\u0e14\u0e31\u0e1a [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill={0}[[GREEN]] - [[GOLD]]\u0e25\u0e33\u0e14\u0e31\u0e1a [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Unranked=[[WHITE]]Unranked
|
||||
Commands.mcrefresh.Success=[[RED]]{0}\'\'\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35 \u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08.
|
||||
Commands.mcrefresh.Success={0}\'\'\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35 \u0e04\u0e39\u0e25\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08.
|
||||
Commands.mcremove.Success=[[GREEN]]{0} \u0e08\u0e30\u0e16\u0e39\u0e01\u0e25\u0e1a\u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e10\u0e32\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e17\u0e35\u0e48\u0e1b\u0e23\u0e30\u0e2a\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08!
|
||||
Commands.mctop.Tip=[[GOLD]]Tip: \u0e43\u0e0a\u0e49 [[RED]]/mcrank[[GOLD]] \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e14\u0e39\u0e25\u0e33\u0e14\u0e31\u0e1a\u0e02\u0e2d\u0e07\u0e1a\u0e38\u0e04\u0e04\u0e25!
|
||||
Commands.mmoedit=[player] <skill> <newvalue> [[RED]] - \u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22
|
||||
Commands.mmoedit.AllSkills.1=[[GREEN]]\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e17\u0e31\u0e01\u0e29\u0e30\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e16\u0e39\u0e01\u0e15\u0e31\u0e49\u0e07\u0e40\u0e1b\u0e47\u0e19 {0}!
|
||||
Commands.mmoedit.Modified.1=[[GREEN]]\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e40\u0e14\u0e34\u0e21\u0e04\u0e38\u0e13\u0e04\u0e37\u0e2d {0} \u0e16\u0e39\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e40\u0e1b\u0e47\u0e19 {1}!
|
||||
Commands.mmoedit.Modified.2=[[RED]]{0} \u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a {1}.
|
||||
Commands.ModDescription=[[RED]]- \u0e2d\u0e48\u0e32\u0e19\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22
|
||||
Commands.mmoedit.Modified.2={0} \u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a {1}.
|
||||
Commands.ModDescription=- \u0e2d\u0e48\u0e32\u0e19\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22
|
||||
Commands.NoConsole=\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e19\u0e35\u0e49\u0e08\u0e30\u0e44\u0e21\u0e48\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e04\u0e2d\u0e19\u0e42\u0e0b\u0e25.
|
||||
Commands.Notifications.Off=\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e43\u0e19\u0e01\u0e32\u0e23\u0e2a\u0e25\u0e31\u0e1a [[RED]]\u0e16\u0e39\u0e01\u0e1b\u0e34\u0e14
|
||||
Commands.Notifications.On=\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e43\u0e19\u0e01\u0e32\u0e23\u0e2a\u0e25\u0e31\u0e1a [[RED]]\u0e16\u0e39\u0e01\u0e40\u0e1b\u0e34\u0e14
|
||||
Commands.Offline=[[RED]]\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e19\u0e35\u0e49\u0e08\u0e30\u0e44\u0e21\u0e48\u0e17\u0e33\u0e07\u0e32\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19 Offline.
|
||||
Commands.Offline=\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e19\u0e35\u0e49\u0e08\u0e30\u0e44\u0e21\u0e48\u0e17\u0e33\u0e07\u0e32\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19 Offline.
|
||||
Commands.Other=[[GREEN]]--\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e2d\u0e37\u0e48\u0e19\u0e46--
|
||||
Commands.Party.Header=[[RED]]-----[][[GREEN]]PARTY[[RED]][]-----
|
||||
Commands.Party.Header=-----[][[GREEN]]PARTY[[RED]][]-----
|
||||
Commands.Party.Status=[[DARK_GRAY]]\u0e0a\u0e37\u0e48\u0e2d: [[WHITE]]{0} {1}
|
||||
Commands.Party.ShareMode=[[DARK_GRAY]]\u0e42\u0e2b\u0e21\u0e14\u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19:
|
||||
Commands.Party.ItemShare=[[GRAY]]\u0e2a\u0e34\u0e48\u0e07\u0e02\u0e2d\u0e07 [[DARK_AQUA]]({0})
|
||||
Commands.Party.ExpShare=[[GRAY]]EXP [[DARK_AQUA]]({0})
|
||||
Commands.Party.ItemShareCategories=[[DARK_GRAY]]\u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19\u0e2a\u0e34\u0e48\u0e07\u0e02\u0e2d\u0e07: [[GRAY]][[ITALIC]]{0}
|
||||
Commands.Party.MembersNear=[[DARK_GRAY]]\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e01\u0e25\u0e49\u0e04\u0e38\u0e13 [[DARK_AQUA]]{0}[[DARK_GRAY]]/[[DARK_AQUA]]{1}
|
||||
Commands.Party.Accept=[[RED]]- \u0e22\u0e34\u0e19\u0e22\u0e2d\u0e21\u0e04\u0e33\u0e40\u0e0a\u0e34\u0e0d
|
||||
Commands.Party.Accept=- \u0e22\u0e34\u0e19\u0e22\u0e2d\u0e21\u0e04\u0e33\u0e40\u0e0a\u0e34\u0e0d
|
||||
Commands.Party.Chat.Off=Party Chat [[RED]]\u0e16\u0e39\u0e01\u0e1b\u0e34\u0e14
|
||||
Commands.Party.Chat.On=Party Chat [[GREEN]]\u0e40\u0e1b\u0e34\u0e14
|
||||
Commands.Party.Commands=[[GREEN]]--\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07 PARTY--
|
||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]\u0e04\u0e38\u0e13\u0e16\u0e39\u0e01\u0e40\u0e0a\u0e34\u0e0d\u0e40\u0e02\u0e49\u0e32 party {0} \u0e08\u0e32\u0e01 {1}
|
||||
Commands.Party.Invite.1=[[YELLOW]]\u0e43\u0e0a\u0e49 [[GREEN]]/party accept[[YELLOW]] \u0e40\u0e1e\u0e34\u0e48\u0e2d\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e40\u0e0a\u0e34\u0e0d
|
||||
Commands.Party.Invite=[[RED]]- \u0e2a\u0e48\u0e07\u0e04\u0e33\u0e40\u0e0a\u0e34\u0e0d Party
|
||||
Commands.Party.Invite.0=ALERT: [[GREEN]]\u0e04\u0e38\u0e13\u0e16\u0e39\u0e01\u0e40\u0e0a\u0e34\u0e0d\u0e40\u0e02\u0e49\u0e32 party {0} \u0e08\u0e32\u0e01 {1}
|
||||
Commands.Party.Invite.1=\u0e43\u0e0a\u0e49 [[GREEN]]/party accept[[YELLOW]] \u0e40\u0e1e\u0e34\u0e48\u0e2d\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e40\u0e0a\u0e34\u0e0d
|
||||
Commands.Party.Invite=- \u0e2a\u0e48\u0e07\u0e04\u0e33\u0e40\u0e0a\u0e34\u0e0d Party
|
||||
Commands.Party.Join=[[GRAY]]\u0e44\u0e14\u0e49\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21 Party: {0}
|
||||
Commands.Party.Create=[[GRAY]]\u0e2a\u0e23\u0e49\u0e32\u0e07 Party: {0}
|
||||
Commands.Party.Rename=[[GRAY]]\u0e0a\u0e37\u0e48\u0e2d Party \u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e40\u0e1b\u0e47\u0e19: [[WHITE]]{0}
|
||||
Commands.Party.SetSharing=[[GRAY]]Party {0} \u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19\u0e16\u0e39\u0e01\u0e15\u0e31\u0e49\u0e07\u0e40\u0e1b\u0e47\u0e19: [[DARK_AQUA]]{1}
|
||||
Commands.Party.ToggleShareCategory=[[GRAY]]Party \u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19\u0e2a\u0e34\u0e48\u0e07\u0e02\u0e2d\u0e07\u0e43\u0e2b\u0e49 [[GOLD]]{0} [[GRAY]]\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a [[DARK_AQUA]]{1}
|
||||
Commands.Party.AlreadyExists=[[DARK_RED]]Party {0} \u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e49\u0e27!
|
||||
Commands.Party.Kick=[[RED]]\u0e04\u0e38\u0e13\u0e16\u0e39\u0e01\u0e19\u0e33\u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01 party{0}!
|
||||
Commands.Party.Leave=[[RED]]\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01 party
|
||||
Commands.Party.Members.Header=[[RED]]-----[][[GREEN]]\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01[[RED]][]-----
|
||||
Commands.Party.None=[[RED]]\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19 party.
|
||||
Commands.Party.Quit=[[RED]]- \u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e07\u0e32\u0e19 party \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e43\u0e19\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19
|
||||
Commands.Party.Kick=\u0e04\u0e38\u0e13\u0e16\u0e39\u0e01\u0e19\u0e33\u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01 party{0}!
|
||||
Commands.Party.Leave=\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01 party
|
||||
Commands.Party.Members.Header=-----[][[GREEN]]\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01[[RED]][]-----
|
||||
Commands.Party.None=\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19 party.
|
||||
Commands.Party.Quit=- \u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e07\u0e32\u0e19 party \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e43\u0e19\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19
|
||||
Commands.Party.Teleport=<player> [[RED]]- Teleport to \u0e44\u0e1b\u0e2b\u0e32\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01 party
|
||||
Commands.Party.Toggle=[[RED]]- \u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e42\u0e2b\u0e21\u0e14 Party Chat
|
||||
Commands.Party.1=[[RED]]- \u0e2a\u0e23\u0e49\u0e32\u0e07 Party \u0e43\u0e2b\u0e21\u0e48
|
||||
Commands.Party.2=[[RED]]- \u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21 Party \u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19
|
||||
Commands.Party.Toggle=- \u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e42\u0e2b\u0e21\u0e14 Party Chat
|
||||
Commands.Party.1=- \u0e2a\u0e23\u0e49\u0e32\u0e07 Party \u0e43\u0e2b\u0e21\u0e48
|
||||
Commands.Party.2=- \u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21 Party \u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19
|
||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]\u0e16\u0e39\u0e01\u0e40\u0e1b\u0e34\u0e14
|
||||
Commands.ptp.Disabled=Party teleporting [[RED]]\u0e16\u0e39\u0e01\u0e1b\u0e34\u0e14
|
||||
Commands.ptp.NoRequests=[[RED]]\u0e04\u0e38\u0e13\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d teleport \u0e43\u0e19\u0e40\u0e27\u0e25\u0e32\u0e19\u0e35\u0e49
|
||||
Commands.ptp.NoWorldPermissions=[[RED]][mcMMO] \u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49 teleport \u0e43\u0e19\u0e42\u0e25\u0e01\u0e19\u0e35\u0e49 {0}.
|
||||
Commands.ptp.Request1=[[YELLOW]]{0} [[GREEN]]\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23 teleport \u0e21\u0e32\u0e2b\u0e32\u0e04\u0e38\u0e13.
|
||||
Commands.ptp.NoRequests=\u0e04\u0e38\u0e13\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d teleport \u0e43\u0e19\u0e40\u0e27\u0e25\u0e32\u0e19\u0e35\u0e49
|
||||
Commands.ptp.NoWorldPermissions=[mcMMO] \u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49 teleport \u0e43\u0e19\u0e42\u0e25\u0e01\u0e19\u0e35\u0e49 {0}.
|
||||
Commands.ptp.Request1={0} [[GREEN]]\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23 teleport \u0e21\u0e32\u0e2b\u0e32\u0e04\u0e38\u0e13.
|
||||
Commands.ptp.Request2=[[GREEN]]\u0e40\u0e1e\u0e37\u0e48\u0e2d teleport \u0e43\u0e0a\u0e49 [[YELLOW]]/ptp accept. [[GREEN]]\u0e20\u0e32\u0e22\u0e43\u0e19 [[RED]]{0} [[GREEN]]\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35.
|
||||
Commands.ptp.AcceptAny.Enabled=Party teleport [[GREEN]]\u0e16\u0e39\u0e01\u0e40\u0e1b\u0e34\u0e14
|
||||
Commands.ptp.AcceptAny.Disabled=Party teleport [[RED]]\u0e16\u0e39\u0e01\u0e1b\u0e34\u0e14
|
||||
Commands.ptp.RequestExpired=[[RED]]Party teleport \u0e2b\u0e21\u0e14\u0e40\u0e27\u0e25\u0e32\u0e41\u0e25\u0e49\u0e27!
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO[[BLUE]] \u0e23\u0e30\u0e14\u0e31\u0e1a\u0e1e\u0e25\u0e31\u0e07 [[YELLOW]]Leaderboard--
|
||||
Commands.ptp.RequestExpired=Party teleport \u0e2b\u0e21\u0e14\u0e40\u0e27\u0e25\u0e32\u0e41\u0e25\u0e49\u0e27!
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO[[BLUE]] \u0e23\u0e30\u0e14\u0e31\u0e1a\u0e1e\u0e25\u0e31\u0e07 [[YELLOW]]Leaderboard--
|
||||
Commands.PowerLevel.Capped=[[DARK_RED]]\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e1e\u0e25\u0e31\u0e07: [[GREEN]]{0} [[DARK_RED]]\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e40\u0e15\u0e47\u0e21: [[YELLOW]]{1}
|
||||
Commands.PowerLevel=[[DARK_RED]]\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e1e\u0e25\u0e31\u0e07: [[GREEN]]{0}
|
||||
Commands.Reset.All=[[GREEN]]\u0e17\u0e31\u0e01\u0e29\u0e30\u0e17\u0e38\u0e01\u0e17\u0e31\u0e01\u0e29\u0e30\u0e16\u0e39\u0e01\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e43\u0e2b\u0e21\u0e48.
|
||||
Commands.Reset.Single=[[GREEN]]\u0e17\u0e31\u0e01\u0e29\u0e30 {0} \u0e23\u0e30\u0e14\u0e31\u0e1a\u0e17\u0e31\u0e01\u0e29\u0e30\u0e44\u0e14\u0e49\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e43\u0e2b\u0e21\u0e48\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27.
|
||||
Commands.Reset=[[RED]]\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e17\u0e31\u0e01\u0e29\u0e30\u0e43\u0e2b\u0e21\u0e48\u0e43\u0e2b\u0e49\u0e40\u0e1b\u0e47\u0e19 0
|
||||
Commands.Skill.Invalid=[[RED]]\u0e44\u0e21\u0e48\u0e21\u0e35\u0e0a\u0e37\u0e48\u0e2d\u0e17\u0e31\u0e01\u0e29\u0e30\u0e19\u0e35\u0e49!
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--mcMMO [[BLUE]]{0}[[YELLOW]] Leaderboard--
|
||||
Commands.Reset=\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e17\u0e31\u0e01\u0e29\u0e30\u0e43\u0e2b\u0e21\u0e48\u0e43\u0e2b\u0e49\u0e40\u0e1b\u0e47\u0e19 0
|
||||
Commands.Skill.Invalid=\u0e44\u0e21\u0e48\u0e21\u0e35\u0e0a\u0e37\u0e48\u0e2d\u0e17\u0e31\u0e01\u0e29\u0e30\u0e19\u0e35\u0e49!
|
||||
Commands.Skill.Leaderboard=--mcMMO [[BLUE]]{0}[[YELLOW]] Leaderboard--
|
||||
Commands.Stats.Self=\u0e2a\u0e16\u0e34\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13
|
||||
Commands.Stats=[[RED]]- \u0e14\u0e39\u0e2a\u0e16\u0e34\u0e15\u0e34 mcMMO \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13
|
||||
Commands.ToggleAbility=[[RED]]- \u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e42\u0e14\u0e22\u0e01\u0e32\u0e23\u0e04\u0e25\u0e34\u0e01\u0e02\u0e27\u0e32
|
||||
Commands.Usage.0=[[RED]]\u0e04\u0e27\u0e23\u0e43\u0e0a\u0e49 /{0}
|
||||
Commands.Usage.1=[[RED]]\u0e04\u0e27\u0e23\u0e43\u0e0a\u0e49 /{0} {1}
|
||||
Commands.Usage.2=[[RED]]\u0e04\u0e27\u0e23\u0e43\u0e0a\u0e49 /{0} {1} {2}
|
||||
Commands.Usage.3=[[RED]]\u0e04\u0e27\u0e23\u0e43\u0e0a\u0e49 /{0} {1} {2} {3}
|
||||
Commands.Stats=- \u0e14\u0e39\u0e2a\u0e16\u0e34\u0e15\u0e34 mcMMO \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13
|
||||
Commands.ToggleAbility=- \u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e42\u0e14\u0e22\u0e01\u0e32\u0e23\u0e04\u0e25\u0e34\u0e01\u0e02\u0e27\u0e32
|
||||
Commands.Usage.0=\u0e04\u0e27\u0e23\u0e43\u0e0a\u0e49 /{0}
|
||||
Commands.Usage.1=\u0e04\u0e27\u0e23\u0e43\u0e0a\u0e49 /{0} {1}
|
||||
Commands.Usage.2=\u0e04\u0e27\u0e23\u0e43\u0e0a\u0e49 /{0} {1} {2}
|
||||
Commands.Usage.3=\u0e04\u0e27\u0e23\u0e43\u0e0a\u0e49 /{0} {1} {2} {3}
|
||||
Commands.Usage.Level=\u0e23\u0e30\u0e14\u0e31\u0e1a
|
||||
Commands.Usage.Message=\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21
|
||||
Commands.Usage.Page=\u0e2b\u0e19\u0e49\u0e32
|
||||
@ -451,51 +451,51 @@ Commands.Usage.Player=\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19
|
||||
Commands.Usage.Rate=\u0e2d\u0e31\u0e15\u0e23\u0e32
|
||||
Commands.Usage.Skill=\u0e17\u0e31\u0e01\u0e29\u0e30
|
||||
Commands.Usage.XP=Exp
|
||||
mcMMO.NoInvites=[[RED]]\u0e04\u0e38\u0e13\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e16\u0e39\u0e01\u0e40\u0e0a\u0e34\u0e0d\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49
|
||||
mcMMO.NoInvites=\u0e04\u0e38\u0e13\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e16\u0e39\u0e01\u0e40\u0e0a\u0e34\u0e0d\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49
|
||||
mcMMO.NoPermission=[[DARK_RED]]\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c\u0e44\u0e21\u0e48\u0e40\u0e1e\u0e35\u0e22\u0e07\u0e1e\u0e2d.
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]\u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e21\u0e35\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e16\u0e36\u0e07\u0e17\u0e31\u0e01\u0e29\u0e30\u0e21\u0e31\u0e19\u0e08\u0e30\u0e44\u0e21\u0e48\u0e16\u0e39\u0e01\u0e41\u0e2a\u0e14\u0e07\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48
|
||||
Party.Forbidden=[mcMMO] \u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e1a\u0e19\u0e42\u0e25\u0e01\u0e19\u0e35\u0e49 (\u0e14\u0e39 Permissions)
|
||||
Party.Help.0=[[RED]]\u0e04\u0e27\u0e23\u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=[[RED]]\u0e2a\u0e23\u0e49\u0e32\u0e07 Party \u0e43\u0e2b\u0e21\u0e48\u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.2=[[RED]]\u0e1b\u0e23\u0e36\u0e01\u0e29\u0e32 [[DARK_AQUA]]{0} [[RED]]\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21
|
||||
Party.Help.3=[[RED]]\u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} <player> [password] [[RED]]\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e02\u0e49\u0e32 [[DARK_AQUA]]{1} [[RED]]\u0e2b\u0e23\u0e37\u0e2d\u0e2d\u0e2d\u0e01
|
||||
Party.Help.4=[[RED]]\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e25\u0e47\u0e2d\u0e04\u0e2b\u0e23\u0e37\u0e2d\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e04 Party \u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0}
|
||||
Party.Help.5=[[RED]]\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19 Party \u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=[[RED]]\u0e40\u0e15\u0e30\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19\u0e08\u0e32\u0e01 Party \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.7=[[RED]]\u0e43\u0e19\u0e01\u0e32\u0e23\u0e42\u0e2d\u0e19\u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32\u0e02\u0e2d\u0e07 Party \u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=[[RED]]\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01 Party \u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0}
|
||||
Party.Help.9=[[RED]]\u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} [[RED]]\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19\u0e2a\u0e34\u0e48\u0e07\u0e02\u0e2d\u0e07\u0e43\u0e19 party \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13
|
||||
Party.Help.10=[[RED]]\u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} [[RED]]\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19 EXP \u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a party \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13
|
||||
Party.Help.0=\u0e04\u0e27\u0e23\u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=\u0e2a\u0e23\u0e49\u0e32\u0e07 Party \u0e43\u0e2b\u0e21\u0e48\u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.2=\u0e1b\u0e23\u0e36\u0e01\u0e29\u0e32 [[DARK_AQUA]]{0} [[RED]]\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21
|
||||
Party.Help.3=\u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} <player> [password] [[RED]]\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e02\u0e49\u0e32 [[DARK_AQUA]]{1} [[RED]]\u0e2b\u0e23\u0e37\u0e2d\u0e2d\u0e2d\u0e01
|
||||
Party.Help.4=\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e25\u0e47\u0e2d\u0e04\u0e2b\u0e23\u0e37\u0e2d\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e04 Party \u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0}
|
||||
Party.Help.5=\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19 Party \u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=\u0e40\u0e15\u0e30\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19\u0e08\u0e32\u0e01 Party \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.7=\u0e43\u0e19\u0e01\u0e32\u0e23\u0e42\u0e2d\u0e19\u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32\u0e02\u0e2d\u0e07 Party \u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01 Party \u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0}
|
||||
Party.Help.9=\u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} [[RED]]\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19\u0e2a\u0e34\u0e48\u0e07\u0e02\u0e2d\u0e07\u0e43\u0e19 party \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13
|
||||
Party.Help.10=\u0e43\u0e0a\u0e49 [[DARK_AQUA]]{0} [[RED]]\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19 EXP \u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a party \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13
|
||||
Party.InformedOnJoin={0} [[GREEN]]\u0e44\u0e14\u0e49\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21 Party \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13
|
||||
Party.InformedOnQuit={0} [[GREEN]]\u0e44\u0e14\u0e49\u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01 Party \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13
|
||||
Party.InformedOnNameChange=[[GOLD]]{0} [[GREEN]]\u0e44\u0e14\u0e49\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e0a\u0e37\u0e48\u0e2d Party \u0e40\u0e1b\u0e47\u0e19 [[WHITE]]{1}
|
||||
Party.InvalidName=[[DARK_RED]]\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e0a\u0e37\u0e48\u0e2d party \u0e19\u0e35\u0e49.
|
||||
Party.Invite.Self=[[RED]]\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e0a\u0e34\u0e0d\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07\u0e44\u0e14\u0e49!
|
||||
Party.IsLocked=[[RED]]Party \u0e16\u0e39\u0e01\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e49\u0e27!
|
||||
Party.IsntLocked=[[RED]]party \u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01!
|
||||
Party.Locked=[[RED]]Party \u0e16\u0e39\u0e01\u0e25\u0e47\u0e2d\u0e01\u0e44\u0e27\u0e49 \u0e15\u0e49\u0e2d\u0e07\u0e43\u0e2b\u0e49\u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32 Party \u0e40\u0e0a\u0e34\u0e0d\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19.
|
||||
Party.Invite.Self=\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e0a\u0e34\u0e0d\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07\u0e44\u0e14\u0e49!
|
||||
Party.IsLocked=Party \u0e16\u0e39\u0e01\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e49\u0e27!
|
||||
Party.IsntLocked=party \u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01!
|
||||
Party.Locked=Party \u0e16\u0e39\u0e01\u0e25\u0e47\u0e2d\u0e01\u0e44\u0e27\u0e49 \u0e15\u0e49\u0e2d\u0e07\u0e43\u0e2b\u0e49\u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32 Party \u0e40\u0e0a\u0e34\u0e0d\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19.
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} \u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19 party \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13
|
||||
Party.NotOwner=[[DARK_RED]]\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32 Party.
|
||||
Party.Owner.New=[[GREEN]]{0} \u0e44\u0e14\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32 Party \u0e43\u0e2b\u0e21\u0e48.
|
||||
Party.Owner.NotLeader=[[DARK_RED]]\u0e04\u0e38\u0e13\u0e08\u0e30\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32 Party.
|
||||
Party.Owner.Player=[[DARK_RED]]\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32 Party.
|
||||
Party.Password.None=[[RED]]Party \u0e19\u0e35\u0e49\u0e21\u0e35\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19 \u0e42\u0e1b\u0e23\u0e14\u0e23\u0e30\u0e1a\u0e38\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21.
|
||||
Party.Password.Incorrect=[[RED]]\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19 Party \u0e44\u0e21\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07.
|
||||
Party.Password.None=Party \u0e19\u0e35\u0e49\u0e21\u0e35\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19 \u0e42\u0e1b\u0e23\u0e14\u0e23\u0e30\u0e1a\u0e38\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21.
|
||||
Party.Password.Incorrect=\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19 Party \u0e44\u0e21\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07.
|
||||
Party.Password.Set=[[GREEN]]\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19 Party \u0e16\u0e39\u0e01\u0e15\u0e31\u0e49\u0e07\u0e40\u0e1b\u0e47\u0e19 {0}
|
||||
Party.Password.Removed=[[GREEN]]\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19 Party \u0e16\u0e39\u0e01\u0e25\u0e49\u0e32\u0e07\u0e2d\u0e2d\u0e01.
|
||||
Party.Player.Invalid=[[RED]]\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14.
|
||||
Party.Player.Invalid=\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14.
|
||||
Party.NotOnline=[[DARK_RED]]{0} \u0e44\u0e21\u0e48\u0e44\u0e14\u0e49 Online!
|
||||
Party.Player.InSameParty=[[RED]]{0} \u0e44\u0e14\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19 Party \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e41\u0e25\u0e49\u0e27!
|
||||
Party.Player.InSameParty={0} \u0e44\u0e14\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19 Party \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e41\u0e25\u0e49\u0e27!
|
||||
Party.PlayerNotInParty=[[DARK_RED]]{0} \u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19 Party
|
||||
Party.Specify=[[RED]]\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e23\u0e30\u0e1a\u0e38 Party.
|
||||
Party.Teleport.Dead=[[RED]]\u0e04\u0e39\u0e13\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16 teleport \u0e44\u0e1b\u0e2b\u0e32\u0e1c\u0e39\u0e40\u0e25\u0e48\u0e19\u0e19\u0e35\u0e49\u0e44\u0e14\u0e49.
|
||||
Party.Teleport.Hurt=[[RED]]\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e1a\u0e32\u0e14\u0e40\u0e08\u0e47\u0e1a\u0e43\u0e19\u0e0a\u0e48\u0e27\u0e07 {0} \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35\u0e41\u0e25\u0e30\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16 teleport.
|
||||
Party.Specify=\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e23\u0e30\u0e1a\u0e38 Party.
|
||||
Party.Teleport.Dead=\u0e04\u0e39\u0e13\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16 teleport \u0e44\u0e1b\u0e2b\u0e32\u0e1c\u0e39\u0e40\u0e25\u0e48\u0e19\u0e19\u0e35\u0e49\u0e44\u0e14\u0e49.
|
||||
Party.Teleport.Hurt=\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e1a\u0e32\u0e14\u0e40\u0e08\u0e47\u0e1a\u0e43\u0e19\u0e0a\u0e48\u0e27\u0e07 {0} \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35\u0e41\u0e25\u0e30\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16 teleport.
|
||||
Party.Teleport.Player=[[GREEN]]\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49 teleport \u0e44\u0e1b\u0e2b\u0e32 {0}.
|
||||
Party.Teleport.Self=[[RED]]\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16 teleport \u0e44\u0e1b\u0e2b\u0e32\u0e04\u0e38\u0e13\u0e40\u0e2d\u0e07\u0e44\u0e14\u0e49
|
||||
Party.Teleport.Self=\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16 teleport \u0e44\u0e1b\u0e2b\u0e32\u0e04\u0e38\u0e13\u0e40\u0e2d\u0e07\u0e44\u0e14\u0e49
|
||||
Party.Teleport.Target=[[GREEN]]{0} \u0e44\u0e14\u0e49\u0e17\u0e33\u0e01\u0e32\u0e23 teleport \u0e21\u0e32\u0e2b\u0e32\u0e04\u0e38\u0e13.
|
||||
Party.Teleport.Disabled=[[RED]]{0} \u0e44\u0e21\u0e48\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e1a\u0e38\u0e04\u0e04\u0e25 teleport.
|
||||
Party.Rename.Same=[[RED]]\u0e0a\u0e37\u0e48\u0e2d\u0e19\u0e35\u0e49\u0e21\u0e35\u0e43\u0e19 Party \u0e41\u0e25\u0e49\u0e27!
|
||||
Party.Join.Self=[[RED]]\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e14\u0e49\u0e27\u0e22\u0e15\u0e31\u0e27\u0e04\u0e38\u0e13\u0e40\u0e2d\u0e07!
|
||||
Party.Teleport.Disabled={0} \u0e44\u0e21\u0e48\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e1a\u0e38\u0e04\u0e04\u0e25 teleport.
|
||||
Party.Rename.Same=\u0e0a\u0e37\u0e48\u0e2d\u0e19\u0e35\u0e49\u0e21\u0e35\u0e43\u0e19 Party \u0e41\u0e25\u0e49\u0e27!
|
||||
Party.Join.Self=\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e14\u0e49\u0e27\u0e22\u0e15\u0e31\u0e27\u0e04\u0e38\u0e13\u0e40\u0e2d\u0e07!
|
||||
Party.Unlocked=[[GRAY]]Party \u0e16\u0e39\u0e01\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01
|
||||
Party.Disband=[[GRAY]]Party \u0e16\u0e39\u0e01\u0e1b\u0e34\u0e14\u0e44\u0e27\u0e49
|
||||
Party.Status.Locked=[[DARK_RED]](\u0e40\u0e0a\u0e34\u0e0d\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e40\u0e14\u0e35\u0e22\u0e27)
|
||||
@ -505,8 +505,8 @@ Party.ShareType.Item=\u0e2a\u0e34\u0e48\u0e07\u0e02\u0e2d\u0e07
|
||||
Party.ShareMode.None=NONE
|
||||
Party.ShareMode.Equal=\u0e40\u0e17\u0e48\u0e32\u0e01\u0e31\u0e19
|
||||
Party.ShareMode.Random=\u0e2a\u0e38\u0e48\u0e21
|
||||
Party.XpShare.Disabled=[[RED]]Party \u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19\u0e1b\u0e23\u0e30\u0e2a\u0e1a\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e16\u0e39\u0e01\u0e1b\u0e34\u0e14.
|
||||
Party.ItemShare.Disabled=[[RED]]Party \u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19\u0e2a\u0e34\u0e48\u0e07\u0e02\u0e2d\u0e07\u0e16\u0e39\u0e01\u0e1b\u0e34\u0e14.
|
||||
Party.XpShare.Disabled=Party \u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19\u0e1b\u0e23\u0e30\u0e2a\u0e1a\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e16\u0e39\u0e01\u0e1b\u0e34\u0e14.
|
||||
Party.ItemShare.Disabled=Party \u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19\u0e2a\u0e34\u0e48\u0e07\u0e02\u0e2d\u0e07\u0e16\u0e39\u0e01\u0e1b\u0e34\u0e14.
|
||||
Party.ItemShare.Category.Loot=Loot
|
||||
Party.ItemShare.Category.Mining=Mining
|
||||
Party.ItemShare.Category.Herbalism=Herbalism
|
||||
@ -528,11 +528,11 @@ Commands.XPGain.Woodcutting=\u0e2a\u0e31\u0e1a\u0e15\u0e49\u0e19\u0e44\u0e21\u0e
|
||||
Commands.XPGain=[[DARK_GRAY]]EXP \u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a: [[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]BAR EXP \u0e16\u0e39\u0e01\u0e1b\u0e14\u0e25\u0e47\u0e2d\u0e01 {0}!
|
||||
Commands.xplock.unlocked=[[GOLD]]EXP BAR \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e16\u0e39\u0e01 [[GREEN]]\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01[[GOLD]]!
|
||||
Commands.xprate.modified=[[RED]]\u0e2d\u0e31\u0e04\u0e23\u0e32 EXP \u0e16\u0e39\u0e01\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1b\u0e47\u0e19 {0}
|
||||
Commands.xprate.over=[[RED]]mcMMO \u0e2d\u0e31\u0e15\u0e23\u0e32EXP \u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e21\u0e32\u0e01\u0e02\u0e36\u0e49\u0e19!!
|
||||
Commands.xprate.proper.0=[[RED]]\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e40\u0e2b\u0e21\u0e32\u0e30\u0e2a\u0e21\u0e43\u0e19\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32 EXP \u0e40\u0e1b\u0e47\u0e19 /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=[[RED]]\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e40\u0e2b\u0e21\u0e32\u0e30\u0e2a\u0e21\u0e43\u0e19\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e01\u0e04\u0e37\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32 EXP \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e16\u0e39\u0e01\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e43\u0e2b\u0e21\u0e48 xprate /
|
||||
Commands.xprate.proper.2=[[RED]]\u0e42\u0e1b\u0e23\u0e14\u0e23\u0e30\u0e1a\u0e38\u0e08\u0e23\u0e34\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e40\u0e17\u0e47\u0e08\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e41\u0e2a\u0e14\u0e07\u0e27\u0e48\u0e32\u0e19\u0e35\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e13\u0e4c EXP \u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48
|
||||
Commands.xprate.modified=\u0e2d\u0e31\u0e04\u0e23\u0e32 EXP \u0e16\u0e39\u0e01\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1b\u0e47\u0e19 {0}
|
||||
Commands.xprate.over=mcMMO \u0e2d\u0e31\u0e15\u0e23\u0e32EXP \u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e21\u0e32\u0e01\u0e02\u0e36\u0e49\u0e19!!
|
||||
Commands.xprate.proper.0=\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e40\u0e2b\u0e21\u0e32\u0e30\u0e2a\u0e21\u0e43\u0e19\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32 EXP \u0e40\u0e1b\u0e47\u0e19 /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e40\u0e2b\u0e21\u0e32\u0e30\u0e2a\u0e21\u0e43\u0e19\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e01\u0e04\u0e37\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32 EXP \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e16\u0e39\u0e01\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e43\u0e2b\u0e21\u0e48 xprate /
|
||||
Commands.xprate.proper.2=\u0e42\u0e1b\u0e23\u0e14\u0e23\u0e30\u0e1a\u0e38\u0e08\u0e23\u0e34\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e40\u0e17\u0e47\u0e08\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e41\u0e2a\u0e14\u0e07\u0e27\u0e48\u0e32\u0e19\u0e35\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e13\u0e4c EXP \u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48
|
||||
Commands.xprate.started.0=[[GOLD]]\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e13\u0e4c EXP \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a mcMMO \u0e44\u0e14\u0e49\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19!
|
||||
Commands.xprate.started.1=[[GOLD]]mcMMO \u0e2d\u0e31\u0e15\u0e23\u0e32 EXP \u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49 {0}x!
|
||||
XPRate.Event=[[GOLD]]mcMMO \u0e02\u0e13\u0e30\u0e19\u0e35\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e1b\u0e23\u0e30\u0e2a\u0e1a\u0e01\u0e32\u0e23\u0e13\u0e4c! \u0e2d\u0e31\u0e15\u0e23\u0e32\u0e1b\u0e23\u0e30\u0e2a\u0e1a\u0e01\u0e32\u0e23\u0e13\u0e4c \u0e40\u0e1b\u0e47\u0e19 {0} \u0e40\u0e17\u0e48\u0e32!
|
||||
@ -545,28 +545,28 @@ Guides.Available=[[GRAY]]\u0e41\u0e19\u0e30\u0e19\u0e33 {0} \u0e04\u0e27\u0e23\u
|
||||
Guides.Header=[[GOLD]]-=[[GREEN]]{0} \u0e41\u0e19\u0e30\u0e19\u0e33[[GOLD]]=-
|
||||
Guides.Page.Invalid=\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e15\u0e31\u0e27\u0e40\u0e25\u0e02\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07!
|
||||
Guides.Page.OutOfRange=\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2b\u0e19\u0e49\u0e32\u0e19\u0e35\u0e2d\u0e22\u0e39\u0e48 \u0e21\u0e35\u0e40\u0e1e\u0e35\u0e22\u0e07 {0} \u0e2b\u0e19\u0e49\u0e32.
|
||||
Guides.Usage=[[RED]] \u0e43\u0e0a\u0e49 /{0} ? [\u0e2b\u0e19\u0e49\u0e32]
|
||||
Guides.Usage= \u0e43\u0e0a\u0e49 /{0} ? [\u0e2b\u0e19\u0e49\u0e32]
|
||||
Guides.Smelting.Section.0=\u0e40\u0e23\u0e47\u0e27\u0e46\u0e19\u0e35\u0e49...
|
||||
Inspect.Offline=[[RED]]\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c\u0e43\u0e19\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19 Offline!
|
||||
Inspect.Offline=\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c\u0e43\u0e19\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19 Offline!
|
||||
Inspect.OfflineStats=mcMMO \u0e2a\u0e16\u0e34\u0e15\u0e34\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19 Offline [[YELLOW]]{0}
|
||||
Inspect.Stats=[[GREEN]]mcMMO \u0e2a\u0e16\u0e34\u0e15\u0e34\u0e02\u0e2d\u0e07 [[YELLOW]]{0}
|
||||
Inspect.TooFar=[[RED]]\u0e04\u0e38\u0e13\u0e2d\u0e22\u0e39\u0e48\u0e44\u0e01\u0e25\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e08\u0e30\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19\u0e17\u0e35\u0e48!
|
||||
Inspect.TooFar=\u0e04\u0e38\u0e13\u0e2d\u0e22\u0e39\u0e48\u0e44\u0e01\u0e25\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e08\u0e30\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e19\u0e17\u0e35\u0e48!
|
||||
Item.ChimaeraWing.Fail=**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 CHIMAERA WING \u0e25\u0e49\u0e21\u0e40\u0e2b\u0e25\u0e27!**
|
||||
Item.ChimaeraWing.Pass=**\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e01\u0e29\u0e30 CHIMAERA WING**
|
||||
Item.ChimaeraWing.Name=Chimaera Wing
|
||||
Item.ChimaeraWing.Lore=[[GRAY]]Teleports \u0e44\u0e1b\u0e22\u0e31\u0e07\u0e40\u0e15\u0e35\u0e22\u0e07\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13.
|
||||
Item.Generic.Wait=[[RED]]\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e23\u0e2d\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e0a\u0e49\u0e21\u0e31\u0e19\u0e2d\u0e35\u0e01\u0e04\u0e23\u0e31\u0e49\u0e07\u0e43\u0e19! [[YELLOW]]({0}\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35)
|
||||
Item.Generic.Wait=\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e23\u0e2d\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e0a\u0e49\u0e21\u0e31\u0e19\u0e2d\u0e35\u0e01\u0e04\u0e23\u0e31\u0e49\u0e07\u0e43\u0e19! [[YELLOW]]({0}\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35)
|
||||
Item.Injured.Wait=\u0e04\u0e39\u0e13\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22\u0e15\u0e48\u0e2d\u0e40\u0e19\u0e37\u0e48\u0e2d\u0e07\u0e15\u0e49\u0e2d\u0e07\u0e23\u0e2d. [[YELLOW]]({0} \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35)
|
||||
Teleport.Commencing=[[GRAY]]\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07 teleport \u0e15\u0e49\u0e2d\u0e07\u0e23\u0e2d [[GOLD]]({0}) [[GRAY]]\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35, \u0e01\u0e23\u0e38\u0e13\u0e32\u0e22\u0e37\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a\u0e17\u0e35\u0e48...
|
||||
Teleport.Cancelled=[[DARK_RED]]Teleportation \u0e16\u0e39\u0e01\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01!
|
||||
Skills.Child=[[GOLD]](\u0e17\u0e31\u0e01\u0e29\u0e30 CHILD)
|
||||
Skills.Disarmed=[[DARK_RED]]\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01!
|
||||
Skills.Header=[[RED]]-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.Header=-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.NeedMore=[[DARK_RED]]\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21 [[GRAY]]{0}
|
||||
Skills.Parents=PARENTS
|
||||
Skills.Stats=[[YELLOW]]{0}[[GREEN]]{1}[[DARK_AQUA]] EXP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.TooTired=[[RED]]\u0e04\u0e38\u0e13\u0e40\u0e2b\u0e19\u0e37\u0e48\u0e2d\u0e22\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e08\u0e30\u0e43\u0e0a\u0e49\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e31\u0e49\u0e19\u0e2d\u0e35\u0e01\u0e04\u0e23\u0e31\u0e49\u0e07. [[YELLOW]]({0}s)
|
||||
Skills.Cancelled=[[RED]]{0} \u0e16\u0e39\u0e01\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01!
|
||||
Skills.Stats={0}[[GREEN]]{1}[[DARK_AQUA]] EXP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.TooTired=\u0e04\u0e38\u0e13\u0e40\u0e2b\u0e19\u0e37\u0e48\u0e2d\u0e22\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e08\u0e30\u0e43\u0e0a\u0e49\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e31\u0e49\u0e19\u0e2d\u0e35\u0e01\u0e04\u0e23\u0e31\u0e49\u0e07. [[YELLOW]]({0}s)
|
||||
Skills.Cancelled={0} \u0e16\u0e39\u0e01\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01!
|
||||
Skills.ConfirmOrCancel=[[GOLD]]-=[[GREEN]]{0} \u0e41\u0e19\u0e30\u0e19\u0e33[[GOLD]]=-
|
||||
Stats.Header.Combat=[[GOLD]]-=\u0e17\u0e31\u0e01\u0e29\u0e30\u0e01\u0e32\u0e23\u0e15\u0e48\u0e2d\u0e2a\u0e39\u0e49=-
|
||||
Stats.Header.Gathering=[[GOLD]]-=\u0e17\u0e31\u0e01\u0e29\u0e30 GATHERING=-
|
||||
@ -586,15 +586,15 @@ Perks.ActivationTime.Bonus=[[GOLD]] ({0}\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35 \u0
|
||||
MOTD.Donate=[[DARK_AQUA]]\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25 Donation:
|
||||
MOTD.Hardcore.DeathStatLoss.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]\u0e17\u0e31\u0e01\u0e29\u0e30 Death Penalty: [[DARK_RED]]{0}%
|
||||
MOTD.Hardcore.Vampirism.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]\u0e16\u0e39\u0e01\u0e02\u0e42\u0e21\u0e22\u0e2a\u0e16\u0e34\u0e15\u0e34: [[DARK_RED]]{0}%
|
||||
MOTD.PerksPrefix=[[RED]][mcMMO Perks]
|
||||
MOTD.PerksPrefix=[mcMMO Perks]
|
||||
MOTD.Version=[[GOLD]][mcMMO] \u0e43\u0e0a\u0e49 version [[DARK_AQUA]]{0}
|
||||
MOTD.Website=[[GOLD]][mcMMO] [[GREEN]]{0}[[YELLOW]] - mcMMO Website
|
||||
Smelting.Ability.FluxMining=[[RED]]Flux Mining \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=[[RED]]Fuel Efficiency \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19: [[YELLOW]]{0}x
|
||||
Smelting.Ability.FluxMining=Flux Mining \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=Fuel Efficiency \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19: [[YELLOW]]{0}x
|
||||
Smelting.Ability.Locked.0=\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e30\u0e14\u0e31\u0e1a {0}+ (VANILLA XP BOOST)
|
||||
Smelting.Ability.Locked.1=\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e30\u0e14\u0e31\u0e1a {0}+ (FLUX MINING)
|
||||
Smelting.Ability.SecondSmelt=[[RED]]Second Smelt \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=[[RED]]Vanilla EXP \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19: [[YELLOW]]{0}x
|
||||
Smelting.Ability.SecondSmelt=Second Smelt \u0e42\u0e2d\u0e01\u0e32\u0e2a: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=Vanilla EXP \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e36\u0e49\u0e19: [[YELLOW]]{0}x
|
||||
Smelting.SubSkill.FuelEfficiency.Name=Fuel Efficiency
|
||||
Smelting.SubSkill.FuelEfficiency.Description=\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e27\u0e25\u0e32\u0e01\u0e32\u0e23\u0e40\u0e1c\u0e32\u0e44\u0e2b\u0e21\u0e49\u0e02\u0e2d\u0e07\u0e40\u0e0a\u0e37\u0e49\u0e2d\u0e40\u0e1e\u0e25\u0e34\u0e07\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e43\u0e19\u0e40\u0e15\u0e32\u0e2b\u0e25\u0e2d\u0e21\u0e16\u0e25\u0e38\u0e07
|
||||
Smelting.SubSkill.SecondSmelt.Name=Second Smelt
|
||||
|
@ -1,6 +1,6 @@
|
||||
Acrobatics.Ability.Proc=[[GREEN]]**\u534e\u5c14\u5179\u822c\u7684\u964d\u843d**
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**\u95ea\u907f**
|
||||
Acrobatics.DodgeChance=[[RED]]\u95ea\u907f\u51e0\u7387: [[YELLOW]]{0}
|
||||
Acrobatics.DodgeChance=\u95ea\u907f\u51e0\u7387: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Name=\u7ffb\u6eda
|
||||
Acrobatics.SubSkill.Roll.Description=\u51cf\u5c11\u6216\u8005\u53d6\u6d88\u6389\u843d\u4f24\u5bb3
|
||||
Acrobatics.SubSkill.GracefulRoll.Name=\u4f18\u96c5\u7684\u7ffb\u6eda
|
||||
@ -8,25 +8,25 @@ Acrobatics.SubSkill.GracefulRoll.Description=\u4e24\u500d\u7684\u7ffb\u6eda\u654
|
||||
Acrobatics.SubSkill.Dodge.Name=\u95ea\u907f
|
||||
Acrobatics.SubSkill.Dodge.Description=\u51cf\u5c11\u4e00\u534a\u7684\u4f24\u5bb3
|
||||
Acrobatics.Listener=\u6742\u6280(Acrobatics):
|
||||
Acrobatics.SubSkill.Roll.Chance=[[RED]]\u7ffb\u6eda\u51e0\u7387: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=[[RED]]\u4f18\u96c5\u7684\u7ffb\u6eda\u51e0\u7387: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Chance=\u7ffb\u6eda\u51e0\u7387: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=\u4f18\u96c5\u7684\u7ffb\u6eda\u51e0\u7387: [[YELLOW]]{0}
|
||||
Acrobatics.Roll.Text=**\u7ffb\u6eda**
|
||||
Acrobatics.SkillName=\u6742\u6280
|
||||
Acrobatics.Skillup=[[YELLOW]]\u6742\u6280\u6280\u80fd\u4e0a\u5347\u4e86 {0}. \u603b\u7b49\u7ea7 ({1})
|
||||
Acrobatics.Skillup=\u6742\u6280\u6280\u80fd\u4e0a\u5347\u4e86 {0}. \u603b\u7b49\u7ea7 ({1})
|
||||
Alchemy.SubSkill.Catalysis.Name=\u50ac\u5316
|
||||
Alchemy.SubSkill.Catalysis.Description=\u63d0\u5347\u836f\u6c34\u917f\u9020\u901f\u5ea6
|
||||
Alchemy.SubSkill.Concoctions.Name=\u6df7\u5408
|
||||
Alchemy.SubSkill.Concoctions.Description=\u917f\u9020\u5e26\u6709\u591a\u91cd\u539f\u6599\u7684\u836f\u6c34
|
||||
Alchemy.Listener=\u70bc\u91d1(Alchemy):
|
||||
Alchemy.Ability.Locked.0=\u9501\u5b9a\u72b6\u6001,\u76f4\u5230 {0}+ \u6280\u80fd\uff08\u50ac\u5316\uff09
|
||||
Alchemy.Catalysis.Speed=[[RED]]\u917f\u9020\u901f\u5ea6: [[YELLOW]]{0}
|
||||
Alchemy.Concoctions.Rank=[[RED]]\u6df7\u5408\u7b49\u7ea7: [[YELLOW]]{0}/{1}
|
||||
Alchemy.Concoctions.Ingredients=[[RED]]\u914d\u65b9 [[[YELLOW]]{0}[[RED]]]: [[YELLOW]]{1}
|
||||
Alchemy.Catalysis.Speed=\u917f\u9020\u901f\u5ea6: [[YELLOW]]{0}
|
||||
Alchemy.Concoctions.Rank=\u6df7\u5408\u7b49\u7ea7: [[YELLOW]]{0}/{1}
|
||||
Alchemy.Concoctions.Ingredients=\u914d\u65b9 [[[YELLOW]]{0}[[RED]]]: [[YELLOW]]{1}
|
||||
Alchemy.SkillName=\u70bc\u91d1
|
||||
Alchemy.Skillup=[[YELLOW]]\u70bc\u91d1\u6280\u80fd\u4e0a\u5347\u4e86 {0}. \u603b\u7b49\u7ea7 ({1})
|
||||
Archery.Combat.DazeChance=[[RED]]\u51fb\u6655\u51e0\u7387: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=[[RED]]\u56de\u6536\u7bad\u77e2\u7684\u51e0\u7387: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=[[RED]]\u6280\u5de7\u5c04\u51fb\u5956\u52b1\u4f24\u5bb3: [[YELLOW]]{0}
|
||||
Alchemy.Skillup=\u70bc\u91d1\u6280\u80fd\u4e0a\u5347\u4e86 {0}. \u603b\u7b49\u7ea7 ({1})
|
||||
Archery.Combat.DazeChance=\u51fb\u6655\u51e0\u7387: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=\u56de\u6536\u7bad\u77e2\u7684\u51e0\u7387: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=\u6280\u5de7\u5c04\u51fb\u5956\u52b1\u4f24\u5bb3: [[YELLOW]]{0}
|
||||
Archery.SubSkill.SkillShot.Name=\u6280\u5de7\u5c04\u51fb
|
||||
Archery.SubSkill.SkillShot.Description=\u589e\u52a0\u5f13\u7bad\u4f24\u5bb3
|
||||
Archery.SubSkill.Daze.Name=\u51fb\u6655 (\u9650\u73a9\u5bb6\u4e4b\u95f4)
|
||||
@ -35,7 +35,7 @@ Archery.SubSkill.ArrowRetrieval.Name=\u56de\u6536\u5f13\u7bad
|
||||
Archery.SubSkill.ArrowRetrieval.Description=\u6709\u51e0\u7387\u4ece\u5c38\u4f53\u4e0a\u56de\u6536\u7bad\u77e2
|
||||
Archery.Listener=\u7bad\u672f(Archery):
|
||||
Archery.SkillName=\u7bad\u672f
|
||||
Archery.Skillup=[[YELLOW]]\u7bad\u672f\u6280\u80fd\u4e0a\u5347\u4e86 {0}. \u603b\u7b49\u7ea7 ({1})
|
||||
Archery.Skillup=\u7bad\u672f\u6280\u80fd\u4e0a\u5347\u4e86 {0}. \u603b\u7b49\u7ea7 ({1})
|
||||
Axes.Ability.Bonus.0=\u65a7\u5934\u7cbe\u901a
|
||||
Axes.Ability.Bonus.1=\u5956\u52b1 {0} \u4f24\u5bb3
|
||||
Axes.Ability.Bonus.2=\u51b2\u51fb
|
||||
@ -45,12 +45,12 @@ Axes.Ability.Bonus.5=\u5bf9\u65e0\u62a4\u7532\u654c\u4eba\u9020\u6210 {0} \u70b9
|
||||
Axes.Ability.Lower=[[GRAY]]**\u4f60\u6536\u8d77\u4e86\u4f60\u7684\u65a7\u5934**
|
||||
Axes.Ability.Ready=[[GREEN]]**\u4f60\u63e1\u7d27\u4e86\u4f60\u7684\u65a7\u5934**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]\u4f60\u6253\u51fa\u4e86\u66b4\u51fb!
|
||||
Axes.Combat.CritChance=[[RED]]\u81f4\u547d\u4e00\u51fb: [[YELLOW]]{0}%
|
||||
Axes.Combat.CriticalHit=[[RED]]\u66b4\u51fb!
|
||||
Axes.Combat.CritChance=\u81f4\u547d\u4e00\u51fb: [[YELLOW]]{0}%
|
||||
Axes.Combat.CriticalHit=\u66b4\u51fb!
|
||||
Axes.Combat.GI.Proc=[[GREEN]]**\u5de8\u529b\u6253\u51fb**
|
||||
Axes.Combat.GI.Struck=[[RED]]**\u88ab\u5f3a\u70c8\u51b2\u51fb\u51fb\u4e2d**
|
||||
Axes.Combat.GI.Struck=**\u88ab\u5f3a\u70c8\u51b2\u51fb\u51fb\u4e2d**
|
||||
Axes.Combat.SS.Struck=[[DARK_RED]]\u88ab\u65a9\u9996\u8005\u6280\u80fd\u653b\u51fb!
|
||||
Axes.Combat.SS.Length=[[RED]]\u65a9\u9996\u8005\u6280\u80fd\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0}s
|
||||
Axes.Combat.SS.Length=\u65a9\u9996\u8005\u6280\u80fd\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0}s
|
||||
Axes.SubSkill.SkullSplitter.Name=\u65a9\u9996\u8005 (\u4e3b\u52a8\u6280\u80fd)
|
||||
Axes.SubSkill.SkullSplitter.Description=\u9020\u6210\u8303\u56f4\u4f24\u5bb3
|
||||
Axes.SubSkill.CriticalStrikes.Name=\u81f4\u547d\u4e00\u51fb
|
||||
@ -63,38 +63,38 @@ Axes.SubSkill.GreaterImpact.Name=\u5f3a\u70c8\u51b2\u51fb
|
||||
Axes.SubSkill.GreaterImpact.Description=\u5bf9\u65e0\u62a4\u7532\u654c\u4eba\u9020\u6210\u989d\u5916\u4f24\u5bb3
|
||||
Axes.Listener=\u65a7\u6280(Axes):
|
||||
Axes.SkillName=\u65a7\u6280
|
||||
Axes.Skills.SS.Off=[[RED]]**\u65a9\u9996\u8005\u6280\u80fd\u5df2\u7ed3\u675f**
|
||||
Axes.Skills.SS.Off=**\u65a9\u9996\u8005\u6280\u80fd\u5df2\u7ed3\u675f**
|
||||
Axes.Skills.SS.On=[[GREEN]]**\u65a9\u9996\u8005\u6280\u80fd\u542f\u52a8**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]\u4f60\u7684 [[YELLOW]]\u65a9\u9996\u8005 [[GREEN]]\u6280\u80fd\u5df2\u7ecf\u53ef\u4ee5\u4f7f\u7528\uff01\uff01\uff01
|
||||
Axes.Skills.SS.Other.Off=[[RED]]\u65a9\u9996\u8005[[GREEN]] \u5df2\u7ecf\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.Off=\u65a9\u9996\u8005[[GREEN]] \u5df2\u7ecf\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]]\u4f7f\u7528\u4e86 [[RED]]\u65a9\u9996\u8005!
|
||||
Axes.Skillup=[[YELLOW]]\u65a7\u5934\u6280\u80fd\u589e\u52a0\u4e86 {0}. \u603b\u5171 ({1})
|
||||
Axes.Skillup=\u65a7\u5934\u6280\u80fd\u589e\u52a0\u4e86 {0}. \u603b\u5171 ({1})
|
||||
Excavation.Ability.Lower=[[GRAY]]**\u4f60\u653e\u4e0b\u4e86\u4f60\u7684\u94f2\u5b50**
|
||||
Excavation.Ability.Ready=[[GREEN]]**\u4f60\u63e1\u7d27\u4e86\u4f60\u7684\u94f2\u5b50**
|
||||
Excavation.SubSkill.GigaDrillBreaker.Name=\u66b4\u8d70\u94bb\u5934 (\u4e3b\u52a8\u6280\u80fd)
|
||||
Excavation.SubSkill.GigaDrillBreaker.Description=3x \u6389\u843d\u7387, 3x \u7ecf\u9a8c\u503c, +\u901f\u5ea6
|
||||
Excavation.SubSkill.TreasureHunter.Name=\u5b9d\u7269\u730e\u4eba
|
||||
Excavation.SubSkill.TreasureHunter.Description=\u6316\u51fa\u5b9d\u85cf\u7684\u80fd\u529b
|
||||
Excavation.Effect.Length=[[RED]]\u66b4\u8d70\u94bb\u5934\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0}s
|
||||
Excavation.Effect.Length=\u66b4\u8d70\u94bb\u5934\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0}s
|
||||
Excavation.Listener=\u6316\u6398(Excavation):
|
||||
Excavation.SkillName=\u6316\u6398
|
||||
Excavation.Skills.GigaDrillBreaker.Off=[[RED]]**\u66b4\u8d70\u94bb\u5934\u5df2\u7ecf\u7ed3\u675f\u4e86**
|
||||
Excavation.Skills.GigaDrillBreaker.Off=**\u66b4\u8d70\u94bb\u5934\u5df2\u7ecf\u7ed3\u675f\u4e86**
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**\u66b4\u8d70\u94bb\u5934\u6fc0\u6d3b**
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]\u4f60\u7684 [[YELLOW]]\u66b4\u8d70\u94bb\u5934 [[GREEN]]\u6280\u80fd\u5df2\u7ecf\u53ef\u4ee5\u4f7f\u7528\u4e86!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=[[RED]]\u66b4\u8d70\u94bb\u5934[[GREEN]] \u8fdb\u5165\u51b7\u5374 [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=\u66b4\u8d70\u94bb\u5934[[GREEN]] \u8fdb\u5165\u51b7\u5374 [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u4f7f\u7528\u4e86 [[RED]]\u66b4\u8d70\u94bb\u5934!
|
||||
Excavation.Skillup=[[YELLOW]]\u6316\u6398\u6280\u80fd\u63d0\u5347 {0}. \u603b\u5171 ({1})
|
||||
Fishing.Ability.Chance=[[RED]]\u6495\u54ac\u51e0\u7387: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=[[RED]]\u9b54\u6cd5\u730e\u4eba: [[GRAY]] ** \u968f\u7740\u5b9d\u85cf\u730e\u4eba\u7b49\u7ea7\u63d0\u9ad8 **
|
||||
Excavation.Skillup=\u6316\u6398\u6280\u80fd\u63d0\u5347 {0}. \u603b\u5171 ({1})
|
||||
Fishing.Ability.Chance=\u6495\u54ac\u51e0\u7387: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=\u9b54\u6cd5\u730e\u4eba: [[GRAY]] ** \u968f\u7740\u5b9d\u85cf\u730e\u4eba\u7b49\u7ea7\u63d0\u9ad8 **
|
||||
Fishing.Ability.Locked.0=\u9501\u5b9a\u72b6\u6001,\u76f4\u5230 {0}+ \u6280\u80fd\uff08\u6447\uff09
|
||||
Fishing.Ability.Locked.1={0}+ \u7ea7\u540e\u89e3\u9501 (\u51b0\u9493)
|
||||
Fishing.Ability.Locked.2=\u9501\u5b9a\u72b6\u6001,\u76f4\u5230 {0}+ \u6280\u80fd (\u9493\u9c7c\u5927\u5e08)
|
||||
Fishing.Ability.Rank=[[RED]]\u5b9d\u7269\u730e\u4eba\u7b49\u7ea7: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.DropRate=[[RED]]\u6389\u5b9d\u7387: [[DARK_RED]]\u9677\u9631: [[YELLOW]]{0} [[GRAY]]\u5e38\u89c1: [[YELLOW]]{1} [[GREEN]]\u7f55\u89c1: [[YELLOW]]{2}\n[[BLUE]]\u7a00\u6709: [[YELLOW]]{3} [[LIGHT_PURPLE]]\u53f2\u8bd7: [[YELLOW]]{4} [[GOLD]]\u4f20\u8bf4: [[YELLOW]]{5} [[AQUA]]\u521b\u7eaa\u5f55: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=[[RED]]\u9b54\u6cd5\u730e\u4eba\u51e0\u7387: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=[[RED]]\u9c7c\u94a9\u7a83\u53d6\u51e0\u7387: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=[[RED]]\u51b0\u9493: \u5728\u51b0\u4e0a\u9493\u9c7c
|
||||
Fishing.Ability.FD=[[RED]]\u6e14\u6c11\u7684\u98df\u8c31: [[YELLOW]]\u6392\u540d {0}
|
||||
Fishing.Ability.Rank=\u5b9d\u7269\u730e\u4eba\u7b49\u7ea7: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.DropRate=\u6389\u5b9d\u7387: [[DARK_RED]]\u9677\u9631: [[YELLOW]]{0} [[GRAY]]\u5e38\u89c1: [[YELLOW]]{1} [[GREEN]]\u7f55\u89c1: [[YELLOW]]{2}\n[[BLUE]]\u7a00\u6709: [[YELLOW]]{3} [[LIGHT_PURPLE]]\u53f2\u8bd7: [[YELLOW]]{4} [[GOLD]]\u4f20\u8bf4: [[YELLOW]]{5} [[AQUA]]\u521b\u7eaa\u5f55: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=\u9b54\u6cd5\u730e\u4eba\u51e0\u7387: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=\u9c7c\u94a9\u7a83\u53d6\u51e0\u7387: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=\u51b0\u9493: \u5728\u51b0\u4e0a\u9493\u9c7c
|
||||
Fishing.Ability.FD=\u6e14\u6c11\u7684\u98df\u8c31: [[YELLOW]]\u6392\u540d {0}
|
||||
Fishing.SubSkill.TreasureHunter.Name=\u5b9d\u7269\u730e\u4eba (\u88ab\u52a8\u6280\u80fd)
|
||||
Fishing.SubSkill.TreasureHunter.Description=\u9493\u5230\u6742\u7269
|
||||
Fishing.SubSkill.MagicHunter.Name=\u9b54\u6cd5\u730e\u4eba
|
||||
@ -113,20 +113,20 @@ Fishing.Ability.TH.MagicFound=[[GRAY]]\u4f60\u611f\u5230\u4e00\u80a1\u9b54\u529b
|
||||
Fishing.Ability.TH.Boom=[[GRAY]]\u7e41\u8363\u65f6\u671f!!!
|
||||
Fishing.Ability.TH.Poison=[[GRAY]]\u4ec0\u4e48\u4e1c\u897f,\u95fb\u8d77\u6765\u597d\u81ed\u554a...
|
||||
Fishing.SkillName=\u9493\u9c7c
|
||||
Fishing.Skillup=[[YELLOW]]\u9493\u9c7c\u6280\u80fd\u63d0\u5347\u4e86 {0}. \u603b\u5171 ({1})
|
||||
Herbalism.Ability.DoubleDropChance=[[RED]]\u53cc\u500d\u6389\u843d\u51e0\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=[[RED]]\u519c\u592b\u98df\u8c31: [[YELLOW]]\u6392\u540d {0}
|
||||
Herbalism.Ability.GTe.Length=[[RED]]\u571f\u795e\u5e87\u4f51\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=[[RED]]\u4f60\u9700\u8981\u66f4\u591a\u7684\u79cd\u5b50\u8fdb\u884c\u7eff\u5316
|
||||
Herbalism.Ability.GTh.Chance=[[RED]]\u7eff\u5316\u51e0\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=[[RED]]**\u7eff\u5316\u5931\u8d25**
|
||||
Herbalism.Ability.GTh.Stage=[[RED]]\u7eff\u5316:[[YELLOW]]\u519c\u4f5c\u7269\u751f\u957f\u671f{0}
|
||||
Fishing.Skillup=\u9493\u9c7c\u6280\u80fd\u63d0\u5347\u4e86 {0}. \u603b\u5171 ({1})
|
||||
Herbalism.Ability.DoubleDropChance=\u53cc\u500d\u6389\u843d\u51e0\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=\u519c\u592b\u98df\u8c31: [[YELLOW]]\u6392\u540d {0}
|
||||
Herbalism.Ability.GTe.Length=\u571f\u795e\u5e87\u4f51\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=\u4f60\u9700\u8981\u66f4\u591a\u7684\u79cd\u5b50\u8fdb\u884c\u7eff\u5316
|
||||
Herbalism.Ability.GTh.Chance=\u7eff\u5316\u51e0\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=**\u7eff\u5316\u5931\u8d25**
|
||||
Herbalism.Ability.GTh.Stage=\u7eff\u5316:[[YELLOW]]\u519c\u4f5c\u7269\u751f\u957f\u671f{0}
|
||||
Herbalism.Ability.GTh=[[GREEN]]**\u7eff\u5316**
|
||||
Herbalism.Ability.HylianLuck=[[RED]]\u6d77\u62c9\u5c14\u7684\u795d\u798f\u89e6\u53d1\u51e0\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.HylianLuck=\u6d77\u62c9\u5c14\u7684\u795d\u798f\u89e6\u53d1\u51e0\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.Lower=[[GRAY]]**\u4f60\u653e\u4e0b\u4e86\u4f60\u7684\u9504\u5934**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**\u4f60\u6311\u8d77\u4e86\u4f60\u7684\u9504\u5934**
|
||||
Herbalism.Ability.ShroomThumb.Chance=[[RED]]\u83cc\u4e1d\u5316\u51e0\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=[[RED]]**\u83cc\u4e1d\u5316\u5931\u8d25**
|
||||
Herbalism.Ability.ShroomThumb.Chance=\u83cc\u4e1d\u5316\u51e0\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=**\u83cc\u4e1d\u5316\u5931\u8d25**
|
||||
Herbalism.SubSkill.GreenTerra.Name=\u571f\u795e\u5e87\u4f51 (\u4e3b\u52a8\u6280\u80fd)
|
||||
Herbalism.SubSkill.GreenTerra.Description=\u64ad\u6492\u5973\u795e\u7684\u6069\u60e0, \u83b7\u5f973\u500d\u6389\u7387
|
||||
Herbalism.SubSkill.GreenThumb.Name=\u7eff\u5316 (\u5c0f\u9ea6)
|
||||
@ -144,13 +144,13 @@ Herbalism.SubSkill.ShroomThumb.Description=\u5411\u6ce5\u571f&\u8349\u5730\u6563
|
||||
Herbalism.HylianLuck=[[GREEN]]\u613f\u6d77\u62c9\u5c14\u7684\u795d\u798f\u4e0e\u4f60\u540c\u5728!
|
||||
Herbalism.Listener=\u8349\u836f\u5b66(Herbalism):
|
||||
Herbalism.SkillName=\u8349\u836f\u5b66
|
||||
Herbalism.Skills.GTe.Off=[[RED]]**\u571f\u795e\u5e87\u4f51\u6280\u80fd\u5df2\u7ed3\u675f**
|
||||
Herbalism.Skills.GTe.Off=**\u571f\u795e\u5e87\u4f51\u6280\u80fd\u5df2\u7ed3\u675f**
|
||||
Herbalism.Skills.GTe.On=[[GREEN]]**\u6fc0\u6d3b\u571f\u795e\u5e87\u4f51\u6280\u80fd**
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]\u4f60\u7684 [[YELLOW]]\u571f\u795e\u5e87\u4f51 [[GREEN]]\u6280\u80fd\u5df2\u7ecf\u53ef\u4ee5\u518d\u6b21\u4f7f\u7528\u4e86\uff01
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]]\u571f\u795e\u5e87\u4f51[[GREEN]] \u5df2\u7ecf\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.Off=\u571f\u795e\u5e87\u4f51[[GREEN]] \u5df2\u7ecf\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u4f7f\u7528\u4e86 [[RED]]\u571f\u795e\u5e87\u4f51!
|
||||
Herbalism.Skillup=[[YELLOW]]\u8349\u836f\u5b66\u6280\u80fd\u7b49\u7ea7\u4e0a\u5347 {0}. \u73b0\u5728\u662f ({1})
|
||||
Mining.Ability.Length=[[RED]]\u8d85\u7ea7\u788e\u77f3\u673a\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0}s
|
||||
Herbalism.Skillup=\u8349\u836f\u5b66\u6280\u80fd\u7b49\u7ea7\u4e0a\u5347 {0}. \u73b0\u5728\u662f ({1})
|
||||
Mining.Ability.Length=\u8d85\u7ea7\u788e\u77f3\u673a\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0}s
|
||||
Mining.Ability.Locked.0=\u9501\u5b9a\u76f4\u5230 {0}+ \u6280\u80fd (\u7206\u7834\u5f00\u91c7)
|
||||
Mining.Ability.Locked.1=\u9501\u5b9a\u76f4\u5230 {0}+ \u6280\u80fd (\u5927\u53f7\u70b8\u5f39)
|
||||
Mining.Ability.Locked.2=\u9501\u5b9a\u76f4\u5230 {0}+ \u6280\u80fd (\u7206\u7834\u4e13\u5bb6)
|
||||
@ -166,20 +166,20 @@ Mining.SubSkill.BiggerBombs.Name=\u5927\u53f7\u70b8\u5f39
|
||||
Mining.SubSkill.BiggerBombs.Description=\u589e\u52a0TNT\u7206\u70b8\u8303\u56f4
|
||||
Mining.SubSkill.DemolitionsExpertise.Name=\u7206\u7834\u4e13\u5bb6
|
||||
Mining.SubSkill.DemolitionsExpertise.Description=\u51cf\u5c11\u6765\u81eaTNT\u7684\u4f24\u5bb3
|
||||
Mining.Effect.Decrease=[[RED]]\u7206\u7834\u4e13\u5bb6\u4f24\u5bb3\u51cf\u5c11: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=[[RED]]\u53cc\u500d\u6389\u843d\u51e0\u7387: [[YELLOW]]{0}
|
||||
Mining.Effect.Decrease=\u7206\u7834\u4e13\u5bb6\u4f24\u5bb3\u51cf\u5c11: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=\u53cc\u500d\u6389\u843d\u51e0\u7387: [[YELLOW]]{0}
|
||||
Mining.Listener=\u6316\u77ff(Mining):
|
||||
Mining.SkillName=\u6316\u77ff
|
||||
Mining.Skills.SuperBreaker.Off=[[RED]]**\u8d85\u7ea7\u788e\u77f3\u673a\u5df2\u7ed3\u675f**
|
||||
Mining.Skills.SuperBreaker.Off=**\u8d85\u7ea7\u788e\u77f3\u673a\u5df2\u7ed3\u675f**
|
||||
Mining.Skills.SuperBreaker.On=[[GREEN]]**\u8d85\u7ea7\u788e\u77f3\u673a\u5df2\u6fc0\u6d3b**
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[RED]]\u8d85\u7ea7\u788e\u77f3\u673a[[GREEN]] \u5df2\u7ecf\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.Off=\u8d85\u7ea7\u788e\u77f3\u673a[[GREEN]] \u5df2\u7ecf\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u4f7f\u7528\u4e86 [[RED]]\u8d85\u7ea7\u788e\u77f3\u673a!
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]\u4f60\u7684[[YELLOW]] \u8d85\u7ea7\u788e\u77f3\u673a [[GREEN]]\u6280\u80fd\u5df2\u7ecf\u53ef\u4ee5\u518d\u6b21\u4f7f\u7528\u4e86\uff01
|
||||
Mining.Skillup=[[YELLOW]]\u6316\u77ff\u6280\u80fd\u4e0a\u5347\u4e86 {0}. \u603b\u7b49\u7ea7 ({1})
|
||||
Mining.Skillup=\u6316\u77ff\u6280\u80fd\u4e0a\u5347\u4e86 {0}. \u603b\u7b49\u7ea7 ({1})
|
||||
Mining.Blast.Boom=[[GRAY]]**\u5623**
|
||||
Mining.Blast.Effect=+{0} \u77ff\u7269\u91cf, -{1} \u788e\u7247\u91cf, {2}x \u6389\u843d
|
||||
Mining.Blast.Radius.Increase=[[RED]]\u7206\u70b8\u534a\u5f84\u63d0\u5347: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=[[RED]]\u7206\u7834\u5f00\u91c7: [[YELLOW]] \u6392\u540d {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Radius.Increase=\u7206\u70b8\u534a\u5f84\u63d0\u5347: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=\u7206\u7834\u5f00\u91c7: [[YELLOW]] \u6392\u540d {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Other.On=Mining.Blast.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u4f7f\u7528\u4e86 [[RED]]\u7206\u7834\u5f00\u91c7!
|
||||
Mining.Blast.Refresh=[[GREEN]]\u4f60\u7684 [[YELLOW]]\u7206\u7834\u5f00\u91c7 [[GREEN]]\u6280\u80fd\u51b7\u5374\u5b8c\u6bd5!
|
||||
Repair.SubSkill.Repair.Name=\u4fee\u7406
|
||||
@ -206,21 +206,21 @@ Repair.Skills.AdeptDiamond=[[DARK_RED]]\u4f60\u7684\u6280\u80fd\u7b49\u7ea7\u4e0
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]\u4f60\u7684\u6280\u80fd\u7b49\u7ea7\u4e0d\u8db3\u4ee5\u4fee\u7406\u9ec4\u91d1\u88c5\u5907.
|
||||
Repair.Skills.AdeptIron=[[DARK_RED]]\u4f60\u7684\u6280\u80fd\u4e0d\u8db3\u4ee5\u4fee\u590d\u94c1\u8d28\u88c5\u5907.
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]\u4f60\u7684\u6280\u80fd\u7b49\u7ea7\u4e0d\u8db3\u4ee5\u4fee\u590d\u77f3\u5934\u88c5\u5907
|
||||
Repair.Skills.Adept=[[RED]]\u4f60\u5fc5\u987b\u8fbe\u5230\u7b49\u7ea7 [[YELLOW]]{0}[[RED]] \u624d\u80fd\u4fee\u7406 [[YELLOW]]{1}
|
||||
Repair.Skills.Adept=\u4f60\u5fc5\u987b\u8fbe\u5230\u7b49\u7ea7 [[YELLOW]]{0}[[RED]] \u624d\u80fd\u4fee\u7406 [[YELLOW]]{1}
|
||||
Repair.Skills.FeltEasy=[[GRAY]]\u90a3\u770b\u8d77\u6765\u5f88\u7b80\u5355.
|
||||
Repair.Skills.FullDurability=[[GRAY]]\u4f60\u7684\u88c5\u5907\u5df2\u7ecf\u6ee1\u8010\u4e45\u5ea6\u4e86
|
||||
Repair.Skills.Mastery=[[RED]]\u4fee\u7406\u7cbe\u901a: [[YELLOW]]\u989d\u5916\u56de\u590d {0} \u8010\u4e45\u5ea6
|
||||
Repair.Skills.Mastery=\u4fee\u7406\u7cbe\u901a: [[YELLOW]]\u989d\u5916\u56de\u590d {0} \u8010\u4e45\u5ea6
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]\u4f60\u65e0\u6cd5\u4fee\u7406\u5df2\u53e0\u52a0\u7684\u7269\u54c1.
|
||||
Repair.Skills.Super.Chance=[[RED]]\u8d85\u7ea7\u4fee\u7406\u51e0\u7387: [[YELLOW]]{0}
|
||||
Repair.Skillup=[[YELLOW]]\u4fee\u7406\u6280\u80fd\u4e0a\u5347\u4e86 {0}. \u603b\u5171 ({1})
|
||||
Repair.Skills.Super.Chance=\u8d85\u7ea7\u4fee\u7406\u51e0\u7387: [[YELLOW]]{0}
|
||||
Repair.Skillup=\u4fee\u7406\u6280\u80fd\u4e0a\u5347\u4e86 {0}. \u603b\u5171 ({1})
|
||||
Repair.Pretty.Name=\u4fee\u7406
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]\u9644\u9b54\u964d\u7ea7\u51e0\u7387: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]\u795e\u79d8\u953b\u9020\u6210\u529f\u7387: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Downgrade=[[RED]]\u8fd9\u4ef6\u7269\u54c1\u7684\u9644\u9b54\u7b49\u7ea7\u5df2\u4e0b\u964d.
|
||||
Repair.Arcane.Fail=[[RED]]\u8fd9\u4ef6\u7269\u54c1\u7684\u9644\u9b54\u5df2\u6d88\u5931.
|
||||
Repair.Arcane.Lost=[[RED]]\u4f60\u7684\u6280\u80fd\u7b49\u7ea7\u4e0d\u8db3\u4ee5\u4fdd\u7559\u9644\u9b54\u5c5e\u6027.
|
||||
Repair.Arcane.Downgrade=\u8fd9\u4ef6\u7269\u54c1\u7684\u9644\u9b54\u7b49\u7ea7\u5df2\u4e0b\u964d.
|
||||
Repair.Arcane.Fail=\u8fd9\u4ef6\u7269\u54c1\u7684\u9644\u9b54\u5df2\u6d88\u5931.
|
||||
Repair.Arcane.Lost=\u4f60\u7684\u6280\u80fd\u7b49\u7ea7\u4e0d\u8db3\u4ee5\u4fdd\u7559\u9644\u9b54\u5c5e\u6027.
|
||||
Repair.Arcane.Perfect=[[GREEN]]\u4f60\u6210\u529f\u5730\u4fdd\u7559\u4e86\u8fd9\u4ef6\u7269\u54c1\u7684\u9644\u9b54.
|
||||
Repair.Arcane.Rank=[[RED]]\u79d8\u6cd5\u953b\u9020: [[YELLOW]]\u7b49\u7ea7 {0}/4
|
||||
Repair.Arcane.Rank=\u79d8\u6cd5\u953b\u9020: [[YELLOW]]\u7b49\u7ea7 {0}/4
|
||||
Salvage.Pretty.Name=\u5206\u89e3
|
||||
Salvage.SubSkill.AdvancedSalvage.Name=\u8fdb\u9636\u5206\u89e3
|
||||
Salvage.SubSkill.AdvancedSalvage.Description=\u5206\u89e3\u635f\u574f\u7684\u7269\u54c1
|
||||
@ -229,15 +229,15 @@ Salvage.SubSkill.ArcaneSalvaging.Description=\u4ece\u7269\u54c1\u4e2d\u62c6\u89e
|
||||
Salvage.Ability.Locked.0=\u80fd\u529b\u9501\u5b9a\u76f4\u81f3 {0}+ \u6280\u80fd\u7b49\u7ea7 (\u8fdb\u9636\u5206\u89e3)
|
||||
Salvage.Ability.Bonus.0=\u8fdb\u9636\u5206\u89e3
|
||||
Salvage.Ability.Bonus.1=\u6700\u5927\u9650\u5ea6\u56de\u6536 {0} \u635f\u574f\u7684\u7269\u54c1
|
||||
Salvage.Arcane.Rank=[[RED]]\u795e\u79d8\u5206\u89e3: [[YELLOW]]\u7b49\u7ea7 {0}/{1}
|
||||
Salvage.Arcane.Rank=\u795e\u79d8\u5206\u89e3: [[YELLOW]]\u7b49\u7ea7 {0}/{1}
|
||||
Salvage.Arcane.ExtractFull=[[GRAY]]\u5b8c\u5168\u62c6\u89e3\u51fa\u9644\u9b54\u51e0\u7387
|
||||
Salvage.Arcane.ExtractPartial=[[GRAY]]\u90e8\u5206\u62c6\u89e3\u51fa\u9644\u9b54\u51e0\u7387
|
||||
Salvage.Skills.Success=[[GREEN]]\u7269\u54c1\u5df2\u5206\u89e3\uff01
|
||||
Salvage.Skills.Adept.Damaged=[[DARK_RED]]\u60a8\u7684\u6280\u80fd\u7b49\u7ea7\u4e0d\u8db3\u4ee5\u5206\u89e3\u635f\u574f\u7684\u7269\u54c1\u3002
|
||||
Salvage.Skills.Adept.Level=[[RED]]\u60a8\u5fc5\u987b\u8fbe\u5230 [[YELLOW]]{0}[[RED]] \u7ea7\u624d\u80fd\u5206\u89e3 [[YELLOW]]{1}
|
||||
Salvage.Skills.Adept.Level=\u60a8\u5fc5\u987b\u8fbe\u5230 [[YELLOW]]{0}[[RED]] \u7ea7\u624d\u80fd\u5206\u89e3 [[YELLOW]]{1}
|
||||
Salvage.Skills.TooDamaged=[[DARK_RED]]\u8be5\u7269\u54c1\u635f\u574f\u8fc7\u4e8e\u4e25\u91cd\uff0c\u65e0\u6cd5\u5206\u89e3\u3002
|
||||
Salvage.Skills.ArcaneFailed=[[RED]]\u60a8\u65e0\u6cd5\u62c6\u89e3\u51fa\u672c\u7269\u54c1\u6240\u8574\u542b\u7684\u77e5\u8bc6\u3002
|
||||
Salvage.Skills.ArcanePartial=[[YELLOW]]\u60a8\u53ea\u80fd\u62c6\u89e3\u51fa\u672c\u7269\u54c1\u6240\u8574\u542b\u7684\u90e8\u5206\u77e5\u8bc6\u3002
|
||||
Salvage.Skills.ArcaneFailed=\u60a8\u65e0\u6cd5\u62c6\u89e3\u51fa\u672c\u7269\u54c1\u6240\u8574\u542b\u7684\u77e5\u8bc6\u3002
|
||||
Salvage.Skills.ArcanePartial=\u60a8\u53ea\u80fd\u62c6\u89e3\u51fa\u672c\u7269\u54c1\u6240\u8574\u542b\u7684\u90e8\u5206\u77e5\u8bc6\u3002
|
||||
Salvage.Skills.ArcaneSuccess=[[GREEN]]\u60a8\u80fd\u591f\u5b8c\u5168\u62c6\u89e3\u51fa\u672c\u7269\u54c1\u6240\u542b\u7684\u77e5\u8bc6\uff01
|
||||
Salvage.Listener.Anvil=[[DARK_RED]]\u60a8\u5df2\u7ecf\u653e\u7f6e\u4e86\u4e00\u4e2a\u5206\u89e3\u7827\uff0c\u4f7f\u7528\u5b83\u6765\u5206\u89e3\u5de5\u5177\u548c\u62a4\u7532\u3002
|
||||
Salvage.Listener=\u5206\u89e3:
|
||||
@ -245,13 +245,13 @@ Salvage.SkillName=\u5206\u89e3
|
||||
Anvil.Unbreakable=\u8be5\u7269\u54c1\u662f\u65e0\u6cd5\u7834\u574f\u7684\uff01
|
||||
Swords.Ability.Lower=[[GRAY]]**\u4f60\u6536\u597d\u4e86\u4f60\u7684\u5251**
|
||||
Swords.Ability.Ready=[[GREEN]]**\u4f60\u628a\u5251\u7d27\u63e1\u5728\u4e86\u624b\u4e2d**
|
||||
Swords.Combat.Bleed.Chance=[[RED]]\u653e\u8840\u51e0\u7387: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=[[RED]]\u6d41\u8840\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Chance=\u653e\u8840\u51e0\u7387: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=\u6d41\u8840\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0} ticks
|
||||
Swords.Combat.Bleed.Note=[[GRAY]]\u6ce8\u610f: [[YELLOW]]\u6bcf\u4e24\u79d2\u51cf\u4e00\u6ef4\u8840
|
||||
Swords.Combat.Bleeding.Started=[[DARK_RED]] \u4f60\u6b63\u5728\u6d41\u8840!
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]\u653e\u8840 [[GREEN]]\u5df2\u505c\u6b62[[GRAY]]!
|
||||
Swords.Combat.Bleeding=[[GREEN]]**\u654c\u4eba\u6b63\u5728\u4e0d\u65ad\u6d41\u8840**
|
||||
Swords.Combat.Counter.Chance=[[RED]]\u53cd\u51fb\u51e0\u7387: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Chance=\u53cd\u51fb\u51e0\u7387: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Hit=[[DARK_RED]]\u4f60\u53cd\u51fb\u4e86\u5bf9\u624b!
|
||||
Swords.Combat.Countered=[[GREEN]]**\u53cd\u51fb\u4e86\u654c\u4eba**
|
||||
Swords.Combat.SS.Struck=[[DARK_RED]]\u53d1\u52a8\u5229\u5203\u7a81\u523a!
|
||||
@ -265,13 +265,13 @@ Swords.SubSkill.Bleed.Name=\u653e\u8840
|
||||
Swords.SubSkill.Bleed.Description=\u4ea7\u751f\u653e\u8840\u4f24\u5bb3
|
||||
Swords.Listener=\u5251\u672f(Swords):
|
||||
Swords.SkillName=\u5251\u672f
|
||||
Swords.Skills.SS.Off=[[RED]]**\u5229\u5203\u7a81\u523a\u5df2\u7ecf\u7ed3\u675f\u4e86**
|
||||
Swords.Skills.SS.Off=**\u5229\u5203\u7a81\u523a\u5df2\u7ecf\u7ed3\u675f\u4e86**
|
||||
Swords.Skills.SS.On=[[GREEN]]**\u5229\u5203\u7a81\u523a\u542f\u52a8**
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]\u4f60\u7684 [[YELLOW]]\u5229\u5203\u7a81\u523a [[GREEN]]\u6280\u80fd\u5df2\u7ecf\u53ef\u4ee5\u4f7f\u7528\u4e86!
|
||||
Swords.Skills.SS.Other.Off=[[RED]]\u5229\u5203\u7a81\u523a[[GREEN]] \u5df2\u7ecf\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.Off=\u5229\u5203\u7a81\u523a[[GREEN]] \u5df2\u7ecf\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u4f7f\u7528\u4e86 [[RED]]\u5229\u5203\u7a81\u523a!
|
||||
Swords.Skillup=[[YELLOW]]\u5251\u672f\u6280\u80fd\u7b49\u7ea7\u4e0a\u5347 {0}. \u73b0\u5728\u662f ({1})
|
||||
Swords.SS.Length=[[RED]]\u952f\u9f7f\u5229\u5203\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0}s
|
||||
Swords.Skillup=\u5251\u672f\u6280\u80fd\u7b49\u7ea7\u4e0a\u5347 {0}. \u73b0\u5728\u662f ({1})
|
||||
Swords.SS.Length=\u952f\u9f7f\u5229\u5203\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0}s
|
||||
Taming.Ability.Bonus.0=\u73af\u5883\u611f\u77e5
|
||||
Taming.Ability.Bonus.1=\u72fc\u4f1a\u907f\u514d\u5371\u9669
|
||||
Taming.Ability.Bonus.2=\u539a\u5b9e\u7684\u76ae\u6bdb
|
||||
@ -290,7 +290,7 @@ Taming.Ability.Locked.2=\u9501\u5b9a\u76f4\u5230 {0}+ \u6280\u80fd (\u51b2\u51fb
|
||||
Taming.Ability.Locked.3=\u9501\u5b9a\u76f4\u5230 {0}+ \u6280\u80fd (\u5229\u722a)
|
||||
Taming.Ability.Locked.4={0}+ \u7ea7\u540e\u89e3\u9501 (FAST FOOD SERVICE)
|
||||
Taming.Ability.Locked.5={0}+ \u7ea7\u540e\u89e3\u9501 (\u72ac\u795e\u7684\u5e87\u62a4)
|
||||
Taming.Combat.Chance.Gore=[[RED]]\u55dc\u8840\u51e0\u7387: [[YELLOW]]{0}
|
||||
Taming.Combat.Chance.Gore=\u55dc\u8840\u51e0\u7387: [[YELLOW]]{0}
|
||||
Taming.SubSkill.BeastLore.Name=\u9a6f\u517d\u77e5\u8bc6
|
||||
Taming.SubSkill.BeastLore.Description=\u7528\u9aa8\u5934\u53f3\u952e\u5355\u51fb\u72fc\u6216\u8005\u8c79\u732b\u4ee5\u68c0\u67e5\u5b83\u4eec\u7684\u72b6\u51b5
|
||||
Taming.SubSkill.ShockProof.Name=\u51b2\u51fb\u62b5\u6297
|
||||
@ -315,19 +315,19 @@ Taming.SubSkill.ThickFur.Description=\u524a\u51cf\u53d7\u5230\u7684\u4f24\u5bb3,
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]\u4f60\u7684\u72fc\u98de\u901f\u5730\u8dd1\u56de\u4e86\u4f60\u8eab\u8fb9...
|
||||
Taming.Listener=\u9a6f\u517d(Taming):
|
||||
Taming.SkillName=\u9a6f\u517d
|
||||
Taming.Skillup=[[YELLOW]]\u9a6f\u517d\u6280\u80fd\u4e0a\u5347\u4e86 {0}. \u603b\u5171 ({1})
|
||||
Taming.Skillup=\u9a6f\u517d\u6280\u80fd\u4e0a\u5347\u4e86 {0}. \u603b\u5171 ({1})
|
||||
Taming.Summon.Complete=[[GREEN]]\u53ec\u5524\u5b8c\u6bd5
|
||||
Taming.Summon.Fail.Ocelot=[[RED]]\u4f60\u4e0d\u80fd\u53ec\u5524\u8c79\u732b\u56e0\u4e3a\u4f60\u53ec\u5524\u4e86\u592a\u591a\u4e86.
|
||||
Taming.Summon.Fail.Wolf=[[RED]]\u4f60\u8eab\u8fb9\u5df2\u7ecf\u62e5\u6709\u8db3\u591f\u591a\u7684\u72fc,\u65e0\u6cd5\u53ec\u5524\u66f4\u591a.
|
||||
Taming.Summon.Fail.Horse=[[RED]]\u4f60\u8eab\u8fb9\u5df2\u7ecf\u62e5\u6709\u8db3\u591f\u591a\u7684\u9a6c\u4e86,\u65e0\u6cd5\u53ec\u5524.
|
||||
Taming.Summon.Fail.Ocelot=\u4f60\u4e0d\u80fd\u53ec\u5524\u8c79\u732b\u56e0\u4e3a\u4f60\u53ec\u5524\u4e86\u592a\u591a\u4e86.
|
||||
Taming.Summon.Fail.Wolf=\u4f60\u8eab\u8fb9\u5df2\u7ecf\u62e5\u6709\u8db3\u591f\u591a\u7684\u72fc,\u65e0\u6cd5\u53ec\u5524\u66f4\u591a.
|
||||
Taming.Summon.Fail.Horse=\u4f60\u8eab\u8fb9\u5df2\u7ecf\u62e5\u6709\u8db3\u591f\u591a\u7684\u9a6c\u4e86,\u65e0\u6cd5\u53ec\u5524.
|
||||
Taming.Summon.Name.Format={0}\u7684 {1}
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]\u72c2\u66b4\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Berserk.Length=\u72c2\u66b4\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Bonus.0=\u94c1\u8155\u6a21\u5f0f
|
||||
Unarmed.Ability.Bonus.1=\u589e\u52a0{0}\u70b9\u4f24\u5bb3
|
||||
Unarmed.Ability.Chance.ArrowDeflect=[[RED]]\u7bad\u77e2\u504f\u5411\u51e0\u7387: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=[[RED]]\u7f34\u68b0\u51e0\u7387: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=[[RED]]\u8d85\u5f3a\u63e1\u529b\u89e6\u53d1\u51e0\u7387: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=[[RED]]\u4f60\u7684\u5bf9\u624b\u6709\u8d85\u5f3a\u63e1\u529b!
|
||||
Unarmed.Ability.Chance.ArrowDeflect=\u7bad\u77e2\u504f\u5411\u51e0\u7387: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=\u7f34\u68b0\u51e0\u7387: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=\u8d85\u5f3a\u63e1\u529b\u89e6\u53d1\u51e0\u7387: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=\u4f60\u7684\u5bf9\u624b\u6709\u8d85\u5f3a\u63e1\u529b!
|
||||
Unarmed.Ability.IronGrip.Defender=[[GREEN]]\u4f60\u7684\u8d85\u5f3a\u63e1\u529b\u62b5\u6321\u4f4f\u4e86\u5bf9\u65b9\u7684\u7f34\u68b0\u653b\u51fb!
|
||||
Unarmed.Ability.Lower=[[GRAY]]**\u4f60\u653e\u4e0b\u4e86\u4f60\u7684\u62f3\u5934**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**\u4f60\u63e1\u7d27\u4e86\u4f60\u7684\u62f3\u5934**
|
||||
@ -343,16 +343,16 @@ Unarmed.SubSkill.IronGrip.Name=\u8d85\u5f3a\u63e1\u529b
|
||||
Unarmed.SubSkill.IronGrip.Description=\u9632\u6b62\u4f60\u88ab\u7f34\u68b0
|
||||
Unarmed.Listener=\u683c\u6597(Unarmed):
|
||||
Unarmed.SkillName=\u683c\u6597
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**\u72c2\u66b4\u6280\u80fd\u5df2\u7ed3\u675f**
|
||||
Unarmed.Skills.Berserk.Off=**\u72c2\u66b4\u6280\u80fd\u5df2\u7ed3\u675f**
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**\u72c2\u66b4\u6fc0\u6d3b**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]]\u72c2\u66b4[[GREEN]] \u5df2\u7ecf\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.Off=\u72c2\u66b4[[GREEN]] \u5df2\u7ecf\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u4f7f\u7528\u4e86 [[RED]]\u72c2\u66b4!
|
||||
Unarmed.Skills.Berserk.Refresh=[[GREEN]]\u4f60\u7684 [[YELLOW]]\u72c2\u66b4 [[GREEN]]\u6280\u80fd\u5df2\u7ecf\u53ef\u4ee5\u4f7f\u7528\u4e86!
|
||||
Unarmed.Skillup=[[YELLOW]]\u683c\u6597\u6280\u80fd\u4e0a\u5347\u4e86 {0}. \u603b\u7b49\u7ea7 ({1})
|
||||
Unarmed.Skillup=\u683c\u6597\u6280\u80fd\u4e0a\u5347\u4e86 {0}. \u603b\u7b49\u7ea7 ({1})
|
||||
Woodcutting.Ability.0=\u79cb\u98ce\u626b\u843d\u53f6
|
||||
Woodcutting.Ability.1=\u626b\u9664\u6811\u53f6
|
||||
Woodcutting.Ability.Chance.DDrop=[[RED]]\u53cc\u500d\u6389\u843d\u51e0\u7387: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=[[RED]]\u6811\u6728\u780d\u4f10\u8005\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0}\u79d2
|
||||
Woodcutting.Ability.Chance.DDrop=\u53cc\u500d\u6389\u843d\u51e0\u7387: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=\u6811\u6728\u780d\u4f10\u8005\u6301\u7eed\u65f6\u95f4: [[YELLOW]]{0}\u79d2
|
||||
Woodcutting.Ability.Locked.0=\u9501\u5b9a\u72b6\u6001,\u76f4\u5230 {0}+ \u6280\u80fd (\u5439\u53f6\u673a)
|
||||
Woodcutting.SubSkill.TreeFeller.Name=\u7cbe\u9510\u4f10\u6728\u5de5(\u6280\u80fd)
|
||||
Woodcutting.SubSkill.TreeFeller.Description=\u7206\u53d1\u5f0f\u7684\u780d\u6811
|
||||
@ -362,30 +362,30 @@ Woodcutting.SubSkill.HarvestLumber.Name=\u53cc\u500d\u6389\u843d
|
||||
Woodcutting.SubSkill.HarvestLumber.Description=\u53cc\u500d\u6389\u843d\u7269\u54c1
|
||||
Woodcutting.Listener=\u4f10\u6728(Woodcutting):
|
||||
Woodcutting.SkillName=\u4f10\u6728
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]]**\u4f10\u6728\u6280\u80fd\u5df2\u7ed3\u675f**
|
||||
Woodcutting.Skills.TreeFeller.Off=**\u4f10\u6728\u6280\u80fd\u5df2\u7ed3\u675f**
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**\u4f10\u6728\u6280\u80fd\u6fc0\u6d3b**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]\u4f60\u7684 [[YELLOW]]\u4f10\u6728 [[GREEN]]\u6280\u80fd\u5df2\u7ecf\u53ef\u4ee5\u4f7f\u7528\u4e86\uff01
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]]\u4f10\u6728\u6280\u80fd[[GREEN]] \u5df2\u7ecf\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=\u4f10\u6728\u6280\u80fd[[GREEN]] \u5df2\u7ecf\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u4f7f\u7528\u4e86 [[RED]]\u4f10\u6728\u6280\u80fd!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]\u4f60\u7684\u65a7\u5934\u53d8\u6210\u4e86\u4e00\u5806\u788e\u7247\uff01
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]\u90a3\u68f5\u6811\u592a\u5927\u4e86!
|
||||
Woodcutting.Skillup=[[YELLOW]]\u4f10\u6728\u6280\u80fd\u63d0\u5347 {0}. \u603b\u5171 ({1})
|
||||
Woodcutting.Skills.TreeFeller.Splinter=\u4f60\u7684\u65a7\u5934\u53d8\u6210\u4e86\u4e00\u5806\u788e\u7247\uff01
|
||||
Woodcutting.Skills.TreeFeller.Threshold=\u90a3\u68f5\u6811\u592a\u5927\u4e86!
|
||||
Woodcutting.Skillup=\u4f10\u6728\u6280\u80fd\u63d0\u5347 {0}. \u603b\u5171 ({1})
|
||||
Ability.Generic.Refresh=[[GREEN]]**\u6280\u80fd\u51b7\u5374\u5b8c\u6bd5!**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
Combat.ArrowDeflect=[[WHITE]]**\u7bad\u77e2\u504f\u5411**
|
||||
Combat.BeastLore=[[GREEN]]**\u9a6f\u517d\u77e5\u8bc6**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]\u751f\u547d\u503c ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]\u62e5\u6709\u8005 ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**\u76ee\u6807\u88ab\u653e\u8840**
|
||||
Combat.StruckByGore=[[RED]]**\u4f60\u88ab\u653e\u8840\u4e86**
|
||||
Combat.StruckByGore=**\u4f60\u88ab\u653e\u8840\u4e86**
|
||||
Combat.TargetDazed=\u76ee\u6807\u88ab [[DARK_RED]]\u88ab\u51fb\u6655
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]\u5934\u6655\u76ee\u7729
|
||||
mcMMO.Description=[[DARK_AQUA]]\u5173\u4e8e [[YELLOW]]mcMMO[[DARK_AQUA]]:,[[GOLD]]mcMMO \u662f\u4e00\u4e2a [[RED]]\u5f00\u6e90[[GOLD]] RPG mod \u521b\u5efa\u4e8e2011\u5e742\u6708,[[GOLD]]by [[BLUE]]nossr50[[GOLD]]. \u76ee\u6807\u4e3a\u73a9\u5bb6\u63d0\u4f9b\u4e00\u4e2a\u9ad8\u8d28\u91cf\u7684RPG\u4f53\u9a8c.,[[DARK_AQUA]]\u63d0\u793a:,[[GOLD]] - [[GREEN]]\u4f7f\u7528 [[RED]]/mcmmo help[[GREEN]] \u67e5\u770b\u6307\u4ee4,[[GOLD]] - [[GREEN]]\u8f93\u5165 [[RED]]/\u6280\u80fd\u540d[[GREEN]] \u67e5\u770b\u8be6\u7ec6\u7684\u6280\u80fd\u4fe1\u606f,[[DARK_AQUA]]\u5f00\u53d1\u8005:,[[GOLD]] - [[GREEN]]nossr50 [[BLUE]](\u521b\u59cb\u4eba),[[GOLD]] - [[GREEN]]GJ [[BLUE]](\u9879\u76ee\u7ec4\u957f),[[GOLD]] - [[GREEN]]NuclearW [[BLUE]](\u5f00\u53d1\u8005),[[GOLD]] - [[GREEN]]bm01 [[BLUE]](\u5f00\u53d1\u8005),[[GOLD]] - [[GREEN]]TfT_02 [[BLUE]](\u5f00\u53d1\u8005),[[GOLD]] - [[GREEN]]Glitchfinder [[BLUE]](\u5f00\u53d1\u8005),[[GOLD]] - [[GREEN]]t00thpick1 [[BLUE]](\u5f00\u53d1\u8005),[[DARK_AQUA]]\u6709\u7528\u7684\u94fe\u63a5:,[[GOLD]] - [[GREEN]]https://github.com/mcMMO-Dev/mcMMO/issues[[GOLD]] \u62a5\u544aBUG,[[GOLD]] - [[GREEN]]#mcmmo @ irc.esper.net[[GOLD]] IRC Chat,[[YELLOW]]\u53c2\u4e0e\u8fc7\u7ffb\u8bd1\u4e0e\u6da6\u8272\u7684\u4eba[[DARK_AQUA]]:,[[GREEN]]hzk11o11k11o wolski Chikaze(Cirno) 664365842 zesty HDfunctions CNAmira,[[DARK_AQUA]]\u4fee\u6b63\u8865\u6f0f\u5de5\u4f5c\u8fd8\u5728\u7ee7\u7eed...
|
||||
Commands.addlevels.AwardAll.1=[[GREEN]]\u4f60\u7684\u6240\u6709\u7b49\u7ea7\u88ab\u5956\u52b1\u4e0a\u5347\u4e86 {0} \u7ea7!
|
||||
Commands.addlevels.AwardAll.2=[[RED]]\u6240\u6709\u6280\u80fd\u7b49\u7ea7\u5df2\u88ab\u8bbe\u7f6e\u4e3a {0}.
|
||||
Commands.addlevels.AwardAll.2=\u6240\u6709\u6280\u80fd\u7b49\u7ea7\u5df2\u88ab\u8bbe\u7f6e\u4e3a {0}.
|
||||
Commands.addlevels.AwardSkill.1=[[GREEN]]\u4f60\u5728 {1} \u91cc\u5347\u4e86 {0} \u7ea7!
|
||||
Commands.addlevels.AwardSkill.2=[[RED]]{0} \u56e0\u4e3a {1} \u800c\u88ab\u4fee\u6539.
|
||||
Commands.addlevels.AwardSkill.2={0} \u56e0\u4e3a {1} \u800c\u88ab\u4fee\u6539.
|
||||
Commands.addxp.AwardAll=[[GREEN]]\u4f60\u7684\u6240\u6709\u6280\u80fd\u83b7\u5f97 {0} \u70b9\u7ecf\u9a8c!
|
||||
Commands.addxp.AwardSkill=[[GREEN]]\u4f60\u5728 {1} \u88ab\u5956\u52b1\u4e86 {0} \u70b9\u7ecf\u9a8c!
|
||||
Commands.Ability.Off=\u6280\u80fd\u4f7f\u7528 [[GREEN]]\u5173\u95ed
|
||||
@ -393,16 +393,16 @@ Commands.Ability.On=\u6280\u80fd\u4f7f\u7528 [[GREEN]]\u5f00\u542f
|
||||
Commands.Ability.Toggle=\u6280\u80fd\u4f7f\u7528\u5df2\u5207\u6362\u4e3a [[YELLOW]]{0}
|
||||
Commands.AdminChat.Off=\u4ec5\u7ba1\u7406\u804a\u5929\u6a21\u5f0f [[RED]]\u5173\u95ed
|
||||
Commands.AdminChat.On=\u4ec5\u7ba1\u7406\u804a\u5929\u6a21\u5f0f [[GREEN]]\u5f00\u542f
|
||||
Commands.AdminToggle=[[RED]]- \u5207\u6362\u7ba1\u7406\u5458\u804a\u5929
|
||||
Commands.AdminToggle=- \u5207\u6362\u7ba1\u7406\u5458\u804a\u5929
|
||||
Commands.Chat.Console=*\u63a7\u5236\u53f0*
|
||||
Commands.Cooldowns.Header=[[GOLD]]--= [[GREEN]]mcMMO \u80fd\u529b\u51b7\u5374[[GOLD]] =--
|
||||
Commands.Cooldowns.Row.N=\ [[RED]]{0}[[WHITE]] - \u5269\u4f59 [[GOLD]]{1} \u79d2
|
||||
Commands.Cooldowns.Row.Y=\ [[AQUA]]{0}[[WHITE]] - [[DARK_GREEN]]\u5df2\u5c31\u7eea\uff01
|
||||
Commands.Database.Cooldown=[[RED]]\u518d\u6b21\u4f7f\u7528\u8fd9\u4e2a\u547d\u4ee4\u8fd8\u9700\u8981\u7b49\u5f851\u79d2.
|
||||
Commands.Disabled=[[RED]]\u8fd9\u4e2a\u6307\u4ee4\u88ab\u7981\u7528\u4e86.
|
||||
Commands.DoesNotExist=[[RED]]\u8be5\u540d\u73a9\u5bb6\u4e0d\u5b58\u5728\u4e8e\u6570\u636e\u5e93\u4e2d\uff01
|
||||
Commands.GodMode.Disabled=[[YELLOW]]mcMMO \u4e0a\u5e1d\u6a21\u5f0f\u5173\u95ed
|
||||
Commands.GodMode.Enabled=[[YELLOW]]mcMMO \u4e0a\u5e1d\u6a21\u5f0f\u5f00\u542f
|
||||
Commands.Database.Cooldown=\u518d\u6b21\u4f7f\u7528\u8fd9\u4e2a\u547d\u4ee4\u8fd8\u9700\u8981\u7b49\u5f851\u79d2.
|
||||
Commands.Disabled=\u8fd9\u4e2a\u6307\u4ee4\u88ab\u7981\u7528\u4e86.
|
||||
Commands.DoesNotExist=\u8be5\u540d\u73a9\u5bb6\u4e0d\u5b58\u5728\u4e8e\u6570\u636e\u5e93\u4e2d\uff01
|
||||
Commands.GodMode.Disabled=mcMMO \u4e0a\u5e1d\u6a21\u5f0f\u5173\u95ed
|
||||
Commands.GodMode.Enabled=mcMMO \u4e0a\u5e1d\u6a21\u5f0f\u5f00\u542f
|
||||
Commands.GodMode.Forbidden=[mcMMO] \u4e0a\u5e1d\u6a21\u5f0f\u4e0d\u5141\u8bb8\u5728\u8fd9\u4e2a\u4e16\u754c\u5f00\u542f (\u8be6\u60c5\u8bf7\u770b\u6743\u9650\u914d\u7f6e)
|
||||
Commands.GodMode.Toggle=\u4e0a\u5e1d\u6a21\u5f0f\u5df2\u5207\u6362\u4e3a [[YELLOW]]{0}
|
||||
Commands.Healthbars.Changed.HEARTS=[mcMMO] \u4f60\u7684\u8840\u6761\u663e\u793a\u7c7b\u578b\u5df2\u66f4\u6539\u4e3a [[RED]]\u5fc3\u5f62[[WHITE]].
|
||||
@ -413,40 +413,40 @@ Commands.Inspect=<player> [[RED]]-\u67e5\u770b\u73a9\u5bb6\u8be6\u7ec6\u4fe1\u60
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]\u63a5\u53d7\u9080\u8bf7,\u4f60\u6210\u4e3a\u4e86\u961f\u4f0d {0} \u4e2d\u7684\u4e00\u5458.
|
||||
Commands.Invite.Success=[[GREEN]]\u9080\u8bf7\u53d1\u9001\u6210\u529f.
|
||||
Commands.Leaderboards=<skill> <page> [[RED]]- \u6392\u884c\u699c
|
||||
Commands.mcc.Header=[[RED]]---[][[YELLOW]]mcMMO \u6307\u4ee4[[RED]][]---
|
||||
Commands.mcgod=[[RED]]- \u5207\u6362\u4e0a\u5e1d\u6a21\u5f0f
|
||||
Commands.mchud.Invalid=[[RED]]\u90a3\u5e76\u4e0d\u662f\u53ef\u7528\u7684HUD\u7c7b\u578b.
|
||||
Commands.mcc.Header=---[][[YELLOW]]mcMMO \u6307\u4ee4[[RED]][]---
|
||||
Commands.mcgod=- \u5207\u6362\u4e0a\u5e1d\u6a21\u5f0f
|
||||
Commands.mchud.Invalid=\u90a3\u5e76\u4e0d\u662f\u53ef\u7528\u7684HUD\u7c7b\u578b.
|
||||
Commands.mcpurge.Success=[[GREEN]]\u6570\u636e\u5df2\u91cd\u7f6e!
|
||||
Commands.mcrank.Heading=[[GOLD]]-=\u4e2a\u4eba\u6392\u540d=-
|
||||
Commands.mcrank.Overall=[[YELLOW]]\u7efc\u5408[[GREEN]] - [[GOLD]]\u6392\u540d [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=[[RED]]\u76ee\u6807: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill=[[YELLOW]]{0}[[GREEN]] - [[GOLD]]\u6392\u540d [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Overall=\u7efc\u5408[[GREEN]] - [[GOLD]]\u6392\u540d [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=\u76ee\u6807: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill={0}[[GREEN]] - [[GOLD]]\u6392\u540d [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Unranked=[[WHITE]]\u65e0\u6392\u540d
|
||||
Commands.mcrefresh.Success=[[RED]]{0} \u7684\u51b7\u5374\u65f6\u95f4\u5df2\u5237\u65b0
|
||||
Commands.mcrefresh.Success={0} \u7684\u51b7\u5374\u65f6\u95f4\u5df2\u5237\u65b0
|
||||
Commands.mcremove.Success=[[GREEN]]{0} \u5df2\u4ece\u6570\u636e\u5e93\u4e2d\u6210\u529f\u79fb\u9664!
|
||||
Commands.mctop.Tip=[[GOLD]]\u63d0\u793a: \u4f7f\u7528 [[RED]]/mcrank[[GOLD]] \u6765\u67e5\u770b\u4f60\u6240\u6709\u7684\u4e2a\u4eba\u6392\u540d!
|
||||
Commands.mmoedit=[player] <skill> <newvalue> [[RED]] - \u7f16\u8f91\u76ee\u6807
|
||||
Commands.mmoedit.AllSkills.1=[[GREEN]]\u4f60\u7684\u6240\u6709\u6280\u80fd\u7b49\u7ea7\u8bbe\u7f6e\u4e3a {0}!
|
||||
Commands.mmoedit.Modified.1=[[GREEN]]\u4f60\u7684\u7b49\u7ea7 {0} \u88ab\u8bbe\u7f6e\u4e3a {1}!
|
||||
Commands.mmoedit.Modified.2=[[RED]]{0} \u5df2\u66f4\u6539\u4e3a {1}.
|
||||
Commands.mcconvert.Database.Same=[[RED]]\u4f60\u5df2\u7ecf\u5728\u4f7f\u7528 {0} \u6570\u636e\u5e93!
|
||||
Commands.mcconvert.Database.InvalidType=[[RED]]{0} \u4e0d\u662f\u4e00\u4e2a\u6709\u6548\u7684\u6570\u636e\u5e93\u7c7b\u578b.
|
||||
Commands.mmoedit.Modified.2={0} \u5df2\u66f4\u6539\u4e3a {1}.
|
||||
Commands.mcconvert.Database.Same=\u4f60\u5df2\u7ecf\u5728\u4f7f\u7528 {0} \u6570\u636e\u5e93!
|
||||
Commands.mcconvert.Database.InvalidType={0} \u4e0d\u662f\u4e00\u4e2a\u6709\u6548\u7684\u6570\u636e\u5e93\u7c7b\u578b.
|
||||
Commands.mcconvert.Database.Start=[[GRAY]]\u5f00\u59cb\u4ece{0}\u8f6c\u6362\u81f3{1}...
|
||||
Commands.mcconvert.Database.Finish=[[GRAY]]\u6570\u636e\u5e93\u8fc1\u79fb\u5b8c\u6210; {1}\u6570\u636e\u5e93\u73b0\u5728\u62e5\u6709{0}\u6570\u636e\u5e93\u7684\u6240\u6709\u6570\u636e.
|
||||
Commands.mmoshowdb=[[YELLOW]]\u5f53\u524d\u4f7f\u7528\u7684\u6570\u636e\u5e93\u4e3a [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=[[RED]]\u9519\u8bef\u7684\u516c\u5f0f\u7c7b\u578b! \u6709\u6548\u7c7b\u578b\u4e3a: [[GREEN]]\u7ebf\u6027 [[RED]]\u548c [[GREEN]]\u6307\u6570.
|
||||
Commands.mcconvert.Experience.Same=[[RED]]\u6b63\u5728\u4f7f\u7528\u516c\u5f0f{0}
|
||||
Commands.mmoshowdb=\u5f53\u524d\u4f7f\u7528\u7684\u6570\u636e\u5e93\u4e3a [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=\u9519\u8bef\u7684\u516c\u5f0f\u7c7b\u578b! \u6709\u6548\u7c7b\u578b\u4e3a: [[GREEN]]\u7ebf\u6027 [[RED]]\u548c [[GREEN]]\u6307\u6570.
|
||||
Commands.mcconvert.Experience.Same=\u6b63\u5728\u4f7f\u7528\u516c\u5f0f{0}
|
||||
Commands.mcconvert.Experience.Start=[[GRAY]]\u5f00\u59cb\u4ece{0}\u8f6c\u6362\u5230{1}\u66f2\u7ebf
|
||||
Commands.mcconvert.Experience.Finish=[[GRAY]]\u516c\u5f0f\u8f6c\u6362\u5b8c\u6210; \u73b0\u5728\u4f7f\u7528 {0} \u7ecf\u9a8c\u66f2\u7ebf.
|
||||
Commands.ModDescription=[[RED]]- \u8bf7\u9605\u8bfb\u7b80\u8981\u63d2\u4ef6\u63cf\u8ff0
|
||||
Commands.ModDescription=- \u8bf7\u9605\u8bfb\u7b80\u8981\u63d2\u4ef6\u63cf\u8ff0
|
||||
Commands.NoConsole=\u8fd9\u4e2a\u6307\u4ee4\u4e0d\u652f\u6301\u5728\u63a7\u5236\u53f0\u4f7f\u7528.
|
||||
Commands.Notifications.Off=\u6280\u80fd\u63d0\u793a [[RED]]\u5173\u95ed
|
||||
Commands.Notifications.On=\u6280\u80fd\u63d0\u793a [[GREEN]]\u5f00\u542f
|
||||
Commands.Offline=[[RED]]\u8fd9\u4e2a\u6307\u4ee4\u5bf9\u79bb\u7ebf\u73a9\u5bb6\u65e0\u6548
|
||||
Commands.NotLoaded=[[RED]]\u73a9\u5bb6\u8d44\u6599\u5c1a\u672a\u52a0\u8f7d\u3002
|
||||
Commands.Offline=\u8fd9\u4e2a\u6307\u4ee4\u5bf9\u79bb\u7ebf\u73a9\u5bb6\u65e0\u6548
|
||||
Commands.NotLoaded=\u73a9\u5bb6\u8d44\u6599\u5c1a\u672a\u52a0\u8f7d\u3002
|
||||
Commands.Other=[[GREEN]]--\u5176\u4ed6\u547d\u4ee4--
|
||||
Commands.Party.Header=[[RED]]-----[][[GREEN]]\u961f\u4f0d[[RED]][]-----
|
||||
Commands.Party.Features.Header=[[RED]]-----[][[GREEN]]\u529f\u80fd[[RED]][]-----
|
||||
Commands.Party.Header=-----[][[GREEN]]\u961f\u4f0d[[RED]][]-----
|
||||
Commands.Party.Features.Header=-----[][[GREEN]]\u529f\u80fd[[RED]][]-----
|
||||
Commands.Party.Status=[[DARK_GRAY]]\u540d\u5b57: [[WHITE]]{0} {1} [[DARK_GRAY]]\u7b49\u7ea7: [[DARK_AQUA]]{2}
|
||||
Commands.Party.Status.Alliance=[[DARK_GRAY]]\u540c\u76df: [[WHITE]]{0}
|
||||
Commands.Party.UnlockedFeatures=[[DARK_GRAY]]\u5df2\u89e3\u9501\u529f\u80fd: [[GRAY]][[ITALIC]]{0}
|
||||
@ -455,13 +455,13 @@ Commands.Party.ItemShare=[[GRAY]]\u7269\u54c1 [[DARK_AQUA]]({0})
|
||||
Commands.Party.ExpShare=[[GRAY]]\u7ecf\u9a8c [[DARK_AQUA]]({0})
|
||||
Commands.Party.ItemShareCategories=[[DARK_GRAY]]\u7269\u54c1\u5206\u914d: [[GRAY]][[ITALIC]]{0}
|
||||
Commands.Party.MembersNear=[[DARK_GRAY]]\u4f60\u9644\u8fd1 [[DARK_AQUA]]{0}[[DARK_GRAY]]/[[DARK_AQUA]]{1}
|
||||
Commands.Party.Accept=[[RED]]- \u63a5\u53d7\u961f\u4f0d\u9080\u8bf7
|
||||
Commands.Party.Accept=- \u63a5\u53d7\u961f\u4f0d\u9080\u8bf7
|
||||
Commands.Party.Chat.Off=\u53ea\u5141\u8bb8\u961f\u4f0d\u804a\u5929 [[RED]]\u5173\u95ed
|
||||
Commands.Party.Chat.On=\u56e2\u961f\u804a\u5929 [[GREEN]]\u5f00\u542f
|
||||
Commands.Party.Commands=[[GREEN]]--\u7ec4\u961f\u547d\u4ee4--
|
||||
Commands.Party.Invite.0=[[RED]]\u6ce8\u610f: [[GREEN]]\u4f60\u6536\u5230\u4e86\u4e00\u4e2a\u7ec4\u961f\u9080\u8bf7 {0} \u6765\u81ea {1}
|
||||
Commands.Party.Invite.1=[[YELLOW]]\u8f93\u5165 [[GREEN]]/party accept[[YELLOW]] \u6765\u63a5\u53d7\u9080\u8bf7
|
||||
Commands.Party.Invite=[[RED]]- \u53d1\u9001\u7ec4\u961f\u9080\u8bf7
|
||||
Commands.Party.Invite.0=\u6ce8\u610f: [[GREEN]]\u4f60\u6536\u5230\u4e86\u4e00\u4e2a\u7ec4\u961f\u9080\u8bf7 {0} \u6765\u81ea {1}
|
||||
Commands.Party.Invite.1=\u8f93\u5165 [[GREEN]]/party accept[[YELLOW]] \u6765\u63a5\u53d7\u9080\u8bf7
|
||||
Commands.Party.Invite=- \u53d1\u9001\u7ec4\u961f\u9080\u8bf7
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]\u5df2\u63a5\u53d7\u7ec4\u961f\u9080\u8bf7\u3002\u60a8\u5df2\u7ecf\u52a0\u5165\u961f\u4f0d {0}
|
||||
Commands.Party.Join=[[GRAY]]\u52a0\u5165\u7684\u961f\u4f0d: {0}
|
||||
Commands.Party.Create=[[GRAY]]\u5df2\u521b\u5efa\u961f\u4f0d: {0}
|
||||
@ -469,42 +469,42 @@ Commands.Party.Rename=[[GRAY]]\u961f\u4f0d\u540d\u53d8\u66f4\u4e3a: [[WHITE]]{0}
|
||||
Commands.Party.SetSharing=[[GRAY]]\u961f\u4f0d {0} \u5171\u4eab\u8bbe\u7f6e\u4e3a: [[DARK_AQUA]]{1}
|
||||
Commands.Party.ToggleShareCategory=[[GRAY]]\u961f\u4f0d\u7269\u54c1\u5206\u914d\u7531 [[GOLD]]{0} [[GRAY]] \u53d8\u4e3a [[DARK_AQUA]]{1}
|
||||
Commands.Party.AlreadyExists=[[DARK_RED]]\u961f\u4f0d {0} \u5df2\u5b58\u5728!
|
||||
Commands.Party.Kick=[[RED]]\u4f60\u5df2\u88ab {0} \u8e22\u51fa!
|
||||
Commands.Party.Leave=[[RED]]\u4f60\u79bb\u5f00\u4e86\u8fd9\u652f\u961f\u4f0d
|
||||
Commands.Party.Members.Header=[[RED]]-----[][[GREEN]]\u6210\u5458[[RED]][]-----
|
||||
Commands.Party.None=[[RED]]\u4f60\u4e0d\u5728\u961f\u4f0d\u4e2d.
|
||||
Commands.Party.Quit=[[RED]]- \u79bb\u5f00\u4f60\u73b0\u6709\u7684\u961f\u4f0d
|
||||
Commands.Party.Kick=\u4f60\u5df2\u88ab {0} \u8e22\u51fa!
|
||||
Commands.Party.Leave=\u4f60\u79bb\u5f00\u4e86\u8fd9\u652f\u961f\u4f0d
|
||||
Commands.Party.Members.Header=-----[][[GREEN]]\u6210\u5458[[RED]][]-----
|
||||
Commands.Party.None=\u4f60\u4e0d\u5728\u961f\u4f0d\u4e2d.
|
||||
Commands.Party.Quit=- \u79bb\u5f00\u4f60\u73b0\u6709\u7684\u961f\u4f0d
|
||||
Commands.Party.Teleport=<player> [[RED]]- \u4f20\u9001\u5230\u961f\u4f0d\u6210\u5458
|
||||
Commands.Party.Toggle=[[RED]]- \u5207\u6362\u961f\u4f0d\u804a\u5929
|
||||
Commands.Party1=[[RED]]- \u521b\u5efa\u4e00\u4e2a\u65b0\u961f\u4f0d
|
||||
Commands.Party2=[[RED]]- \u52a0\u5165\u4e00\u4e2a\u73a9\u5bb6\u7684\u961f\u4f0d
|
||||
Commands.Party.Alliance.Header=[[RED]]-----[][[GREEN]]\u961f\u4f0d\u540c\u76df[[RED]][]-----
|
||||
Commands.Party.Toggle=- \u5207\u6362\u961f\u4f0d\u804a\u5929
|
||||
Commands.Party1=- \u521b\u5efa\u4e00\u4e2a\u65b0\u961f\u4f0d
|
||||
Commands.Party2=- \u52a0\u5165\u4e00\u4e2a\u73a9\u5bb6\u7684\u961f\u4f0d
|
||||
Commands.Party.Alliance.Header=-----[][[GREEN]]\u961f\u4f0d\u540c\u76df[[RED]][]-----
|
||||
Commands.Party.Alliance.Ally=[[WHITE]]{0} [[DARK_GRAY]]\u540c\u76df\u6709: [[WHITE]]{1}
|
||||
Commands.Party.Alliance.Members.Header=[[RED]]-----[][[GREEN]]\u540c\u76df\u6210\u5458[[RED]][]-----
|
||||
Commands.Party.Alliance.Invite.0=[[RED]]\u8b66\u544a: [[GREEN]]\u60a8\u4ece {1} \u6536\u5230\u961f\u4f0d\u540c\u76df\u9080\u8bf7\u6765 {0}
|
||||
Commands.Party.Alliance.Invite.1=[[YELLOW]]\u8f93\u5165 [[GREEN]]/party alliance accept[[YELLOW]] \u6765\u63a5\u53d7\u9080\u8bf7
|
||||
Commands.Party.Alliance.Members.Header=-----[][[GREEN]]\u540c\u76df\u6210\u5458[[RED]][]-----
|
||||
Commands.Party.Alliance.Invite.0=\u8b66\u544a: [[GREEN]]\u60a8\u4ece {1} \u6536\u5230\u961f\u4f0d\u540c\u76df\u9080\u8bf7\u6765 {0}
|
||||
Commands.Party.Alliance.Invite.1=\u8f93\u5165 [[GREEN]]/party alliance accept[[YELLOW]] \u6765\u63a5\u53d7\u9080\u8bf7
|
||||
Commands.Party.Alliance.Invite.Accepted=[[GREEN]]\u5df2\u63a5\u53d7\u540c\u76df\u9080\u8bf7\u3002
|
||||
Commands.Party.Alliance.None=[[RED]]\u60a8\u6ca1\u6709\u540c\u76df\u3002
|
||||
Commands.Party.Alliance.AlreadyAllies=[[RED]]\u60a8\u7684\u961f\u4f0d\u5df2\u7ecf\u6709\u4e00\u4e2a\u540c\u76df\u3002\u4f7f\u7528 [[DARK_AQUA]]/party alliance disband [[RED]]\u6765\u89e3\u6563
|
||||
Commands.Party.Alliance.Help.0=[[RED]]\u8fd9\u4e2a\u961f\u4f0d\u6ca1\u6709\u7ec4\u6210\u540c\u76df\uff0c\u4f7f\u7528 [[DARK_AQUA]]/party alliance invite <player>[[RED]] \u9080\u8bf7
|
||||
Commands.Party.Alliance.Help.1=[[RED]]\u5b83\u7684\u961f\u957f\u6765\u7ed3\u76df\u3002
|
||||
Commands.Party.Alliance.None=\u60a8\u6ca1\u6709\u540c\u76df\u3002
|
||||
Commands.Party.Alliance.AlreadyAllies=\u60a8\u7684\u961f\u4f0d\u5df2\u7ecf\u6709\u4e00\u4e2a\u540c\u76df\u3002\u4f7f\u7528 [[DARK_AQUA]]/party alliance disband [[RED]]\u6765\u89e3\u6563
|
||||
Commands.Party.Alliance.Help.0=\u8fd9\u4e2a\u961f\u4f0d\u6ca1\u6709\u7ec4\u6210\u540c\u76df\uff0c\u4f7f\u7528 [[DARK_AQUA]]/party alliance invite <player>[[RED]] \u9080\u8bf7
|
||||
Commands.Party.Alliance.Help.1=\u5b83\u7684\u961f\u957f\u6765\u7ed3\u76df\u3002
|
||||
Commands.ptp.Enabled=\u961f\u4f0d\u4f20\u9001 [[GREEN]]\u542f\u7528
|
||||
Commands.ptp.Disabled=\u961f\u4f0d\u4f20\u9001 [[RED]]\u7981\u7528
|
||||
Commands.ptp.NoRequests=[[RED]]\u5f53\u524d\u6ca1\u6709\u4f20\u9001\u8bf7\u6c42
|
||||
Commands.ptp.NoWorldPermissions=[[RED]][mcMMO] \u4f60\u6ca1\u6709\u6743\u9650\u4f20\u9001\u5230\u4e16\u754c {0}.
|
||||
Commands.ptp.Request1=[[YELLOW]]{0} [[GREEN]]\u5df2\u7ecf\u5411\u4f60\u53d1\u51fa\u8bf7\u6c42\u4f20\u9001
|
||||
Commands.ptp.NoRequests=\u5f53\u524d\u6ca1\u6709\u4f20\u9001\u8bf7\u6c42
|
||||
Commands.ptp.NoWorldPermissions=[mcMMO] \u4f60\u6ca1\u6709\u6743\u9650\u4f20\u9001\u5230\u4e16\u754c {0}.
|
||||
Commands.ptp.Request1={0} [[GREEN]]\u5df2\u7ecf\u5411\u4f60\u53d1\u51fa\u8bf7\u6c42\u4f20\u9001
|
||||
Commands.ptp.Request2=[[GREEN]]\u540c\u610f\u4f20\u9001\u8f93\u5165 [[YELLOW]]/ptp accept. [[GREEN]]\u8bf7\u6c42\u5c06\u5728 [[RED]]{0} [[GREEN]] \u79d2\u540e\u5931\u6548
|
||||
Commands.ptp.AcceptAny.Enabled=\u961f\u4f0d\u4f20\u9001\u8bf7\u6c42\u786e\u8ba4 [[GREEN]]\u542f\u7528
|
||||
Commands.ptp.AcceptAny.Disabled=\u961f\u4f0d\u4f20\u9001\u8bf7\u6c42\u786e\u8ba4 [[RED]]\u7981\u7528
|
||||
Commands.ptp.RequestExpired=[[RED]]\u961f\u4f0d\u4f20\u9001\u8bf7\u6c42\u5df2\u5931\u6548!
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO[[BLUE]] \u6218\u6597\u529b [[YELLOW]]\u6392\u884c\u699c--
|
||||
Commands.ptp.RequestExpired=\u961f\u4f0d\u4f20\u9001\u8bf7\u6c42\u5df2\u5931\u6548!
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO[[BLUE]] \u6218\u6597\u529b [[YELLOW]]\u6392\u884c\u699c--
|
||||
Commands.PowerLevel.Capped=[[DARK_RED]]\u6218\u6597\u529b: [[GREEN]]{0} [[DARK_RED]]\u6700\u9ad8\u7b49\u7ea7: [[YELLOW]]{1}
|
||||
Commands.PowerLevel=[[DARK_RED]]\u6218\u6597\u529b: [[GREEN]]{0}
|
||||
Commands.Reset.All=[[GREEN]]\u4f60\u7684\u6280\u672f\u6c34\u5e73\u5df2\u590d\u4f4d\u6210\u529f.
|
||||
Commands.Reset.Single=[[GREEN]]\u4f60\u7684 {0} \u6280\u80fd\u7b49\u7ea7\u5df2\u6210\u529f\u91cd\u7f6e.
|
||||
Commands.Reset=[[RED]]\u91cd\u7f6e\u6280\u80fd\u7b49\u7ea7\u4e3a0
|
||||
Commands.Reset=\u91cd\u7f6e\u6280\u80fd\u7b49\u7ea7\u4e3a0
|
||||
Commands.Scoreboard.Clear=[[DARK_AQUA]]mcMMO \u8bb0\u5206\u677f\u5df2\u6e05\u7a7a\u3002
|
||||
Commands.Scoreboard.NoBoard=[[RED]]mcMMO \u8bb0\u5206\u677f\u5f53\u524d\u672a\u6fc0\u6d3b\u3002
|
||||
Commands.Scoreboard.NoBoard=mcMMO \u8bb0\u5206\u677f\u5f53\u524d\u672a\u6fc0\u6d3b\u3002
|
||||
Commands.Scoreboard.Keep=[[DARK_AQUA]]mcMMO \u8bb0\u5206\u677f\u5c06\u60ac\u505c\u76f4\u5230\u60a8\u4f7f\u7528 [[GREEN]]/mcscoreboard clear[[DARK_AQUA]]\u3002
|
||||
Commands.Scoreboard.Timer=[[DARK_AQUA]]mcMMO \u8bb0\u5206\u677f\u5c06\u5728 [[GOLD]]{0}[[DARK_AQUA]] \u79d2\u540e\u6e05\u7a7a\u3002
|
||||
Commands.Scoreboard.Help.0=[[GOLD]] == [[RED]]/mcscoreboard [[GREEN]]\u5e2e\u52a9[[GOLD]] ==
|
||||
@ -513,17 +513,17 @@ Commands.Scoreboard.Help.2=[[DARK_AQUA]]/mcscoreboard[[AQUA]] keep [[WHITE]] - \
|
||||
Commands.Scoreboard.Help.3=[[DARK_AQUA]]/mcscoreboard[[AQUA]] time [n] [[WHITE]] - [[LIGHT_PURPLE]]n[[WHITE]] \u79d2\u540e\u6e05\u7a7a mcMMO \u8bb0\u5206\u677f
|
||||
Commands.Scoreboard.Tip.Keep=[[GOLD]]\u63d0\u793a: \u5f53\u8bb0\u5206\u677f\u663e\u793a\u65f6\u4f7f\u7528 [[RED]]/mcscoreboard keep[[GOLD]] \u6765\u4fdd\u6301\u5b83\u4e0d\u6d88\u5931\u3002
|
||||
Commands.Scoreboard.Tip.Clear=[[GOLD]]\u63d0\u793a: \u4f7f\u7528 [[RED]]/mcscoreboard clear[[GOLD]] \u6765\u5173\u95ed\u8ba1\u5206\u677f\u3002
|
||||
Commands.Skill.Invalid=[[RED]]\u8fd9\u4e0d\u662f\u4e00\u4e2a\u6709\u6548\u7684\u6280\u80fd\u540d\u5b57!
|
||||
Commands.Skill.ChildSkill=[[RED]]\u5b50\u6280\u80fd\u5bf9\u8be5\u547d\u4ee4\u65e0\u6548\uff01
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--mcMMO [[BLUE]]{0}[[YELLOW]] \u6392\u884c\u699c--
|
||||
Commands.SkillInfo=[[RED]]- \u67e5\u770b\u6280\u80fd\u7684\u8be6\u7ec6\u4fe1\u606f
|
||||
Commands.Skill.Invalid=\u8fd9\u4e0d\u662f\u4e00\u4e2a\u6709\u6548\u7684\u6280\u80fd\u540d\u5b57!
|
||||
Commands.Skill.ChildSkill=\u5b50\u6280\u80fd\u5bf9\u8be5\u547d\u4ee4\u65e0\u6548\uff01
|
||||
Commands.Skill.Leaderboard=--mcMMO [[BLUE]]{0}[[YELLOW]] \u6392\u884c\u699c--
|
||||
Commands.SkillInfo=- \u67e5\u770b\u6280\u80fd\u7684\u8be6\u7ec6\u4fe1\u606f
|
||||
Commands.Stats.Self=\u4f60\u7684\u4fe1\u606f
|
||||
Commands.Stats=[[RED]]- \u67e5\u770b\u4f60\u7684mcMMO\u7edf\u8ba1\u4fe1\u606f
|
||||
Commands.ToggleAbility=[[RED]]- \u7528\u9f20\u6807\u53f3\u952e\u5207\u6362\u6280\u80fd\u6fc0\u6d3b\u6a21\u5f0f
|
||||
Commands.Usage.0=[[RED]]\u6b63\u786e\u7684\u7528\u6cd5 /{0}
|
||||
Commands.Usage.1=[[RED]]\u6b63\u786e\u7684\u7528\u6cd5\u5e94\u4e3a /{0} {1}
|
||||
Commands.Usage.2=[[RED]]\u6b63\u786e\u7684\u7528\u6cd5 /{0} {1} {2}
|
||||
Commands.Usage.3=[[RED]]\u6b63\u786e\u7684\u7528\u6cd5 /{0} {1} {2} {3}
|
||||
Commands.Stats=- \u67e5\u770b\u4f60\u7684mcMMO\u7edf\u8ba1\u4fe1\u606f
|
||||
Commands.ToggleAbility=- \u7528\u9f20\u6807\u53f3\u952e\u5207\u6362\u6280\u80fd\u6fc0\u6d3b\u6a21\u5f0f
|
||||
Commands.Usage.0=\u6b63\u786e\u7684\u7528\u6cd5 /{0}
|
||||
Commands.Usage.1=\u6b63\u786e\u7684\u7528\u6cd5\u5e94\u4e3a /{0} {1}
|
||||
Commands.Usage.2=\u6b63\u786e\u7684\u7528\u6cd5 /{0} {1} {2}
|
||||
Commands.Usage.3=\u6b63\u786e\u7684\u7528\u6cd5 /{0} {1} {2} {3}
|
||||
Commands.Usage.FullClassName=\u6570\u636e\u7c7b\u578b
|
||||
Commands.Usage.Level=\u7b49\u7ea7
|
||||
Commands.Usage.Message=\u6d88\u606f
|
||||
@ -534,59 +534,59 @@ Commands.Usage.Player=\u73a9\u5bb6
|
||||
Commands.Usage.Rate=\u6bd4\u7387
|
||||
Commands.Usage.Skill=\u6280\u80fd
|
||||
Commands.Usage.XP=\u7ecf\u9a8c\u503c
|
||||
mcMMO.NoInvites=[[RED]]\u4f60\u73b0\u5728\u6ca1\u6709\u6536\u5230\u4efb\u4f55\u9080\u8bf7
|
||||
mcMMO.NoInvites=\u4f60\u73b0\u5728\u6ca1\u6709\u6536\u5230\u4efb\u4f55\u9080\u8bf7
|
||||
mcMMO.NoPermission=[[DARK_RED]]\u6743\u9650\u4e0d\u8db3.
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]\u5982\u679c\u4f60\u6ca1\u6709\u67d0\u4e2a\u6280\u80fd\u7684\u4f7f\u7528\u6743\u9650\u90a3\u4e48\u4ed6\u5c06\u4e0d\u4f1a\u5728\u8fd9\u91cc\u663e\u793a.
|
||||
Party.Forbidden=[mcMMO] \u961f\u4f0d\u529f\u80fd\u4e0d\u5141\u8bb8\u5728\u8fd9\u4e2a\u4e16\u754c\u5f00\u542f (\u8be6\u60c5\u8bf7\u770b\u6743\u9650\u914d\u7f6e)
|
||||
Party.Help.0=[[RED]]\u6b63\u786e\u7684\u7528\u6cd5 [[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=[[RED]]\u521b\u5efa\u4e00\u4e2a\u961f\u4f0d, \u4f7f\u7528 [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.2=[[RED]]\u67e5\u9605 [[DARK_AQUA]]{0} [[RED]]\u83b7\u53d6\u66f4\u591a\u4fe1\u606f
|
||||
Party.Help.3=[[RED]]\u4f7f\u7528 [[DARK_AQUA]]{0} <player> [password] [[RED]]\u52a0\u5165\u6216 [[DARK_AQUA]]{1} [[RED]]\u9000\u51fa
|
||||
Party.Help.4=[[RED]]\u9501\u5b9a\u6216\u89e3\u9501\u4f60\u7684\u961f\u4f0d, \u4f7f\u7528 [[DARK_AQUA]]{0}
|
||||
Party.Help.5=[[RED]]\u8bbe\u7f6e\u961f\u4f0d\u5bc6\u7801, \u4f7f\u7528 [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=[[RED]]\u4ece\u4f60\u7684\u961f\u4f0d\u4e2d\u8e22\u51fa\u73a9\u5bb6, \u4f7f\u7528 [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.7=[[RED]]\u79fb\u4ea4\u961f\u957f, \u4f7f\u7528 [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=[[RED]]\u89e3\u6563\u961f\u4f0d, \u4f7f\u7528 [[DARK_AQUA]]{0}
|
||||
Party.Help.9=[[RED]]\u4f7f\u7528 [[DARK_AQUA]]{0} [[RED]]\u6765\u4e0e\u4f60\u7684\u961f\u4f0d\u6210\u5458\u5206\u4eab\u7269\u54c1
|
||||
Party.Help.10=[[RED]]\u4f7f\u7528 [[DARK_AQUA]]{0} [[RED]]\u5f00\u542f\u4e0e\u4f60\u7684\u961f\u4f0d\u6210\u5458\u5206\u4eab\u7ecf\u9a8c
|
||||
Party.Help.0=\u6b63\u786e\u7684\u7528\u6cd5 [[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=\u521b\u5efa\u4e00\u4e2a\u961f\u4f0d, \u4f7f\u7528 [[DARK_AQUA]]{0} <name> [password].
|
||||
Party.Help.2=\u67e5\u9605 [[DARK_AQUA]]{0} [[RED]]\u83b7\u53d6\u66f4\u591a\u4fe1\u606f
|
||||
Party.Help.3=\u4f7f\u7528 [[DARK_AQUA]]{0} <player> [password] [[RED]]\u52a0\u5165\u6216 [[DARK_AQUA]]{1} [[RED]]\u9000\u51fa
|
||||
Party.Help.4=\u9501\u5b9a\u6216\u89e3\u9501\u4f60\u7684\u961f\u4f0d, \u4f7f\u7528 [[DARK_AQUA]]{0}
|
||||
Party.Help.5=\u8bbe\u7f6e\u961f\u4f0d\u5bc6\u7801, \u4f7f\u7528 [[DARK_AQUA]]{0} <password>
|
||||
Party.Help.6=\u4ece\u4f60\u7684\u961f\u4f0d\u4e2d\u8e22\u51fa\u73a9\u5bb6, \u4f7f\u7528 [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.7=\u79fb\u4ea4\u961f\u957f, \u4f7f\u7528 [[DARK_AQUA]]{0} <player>
|
||||
Party.Help.8=\u89e3\u6563\u961f\u4f0d, \u4f7f\u7528 [[DARK_AQUA]]{0}
|
||||
Party.Help.9=\u4f7f\u7528 [[DARK_AQUA]]{0} [[RED]]\u6765\u4e0e\u4f60\u7684\u961f\u4f0d\u6210\u5458\u5206\u4eab\u7269\u54c1
|
||||
Party.Help.10=\u4f7f\u7528 [[DARK_AQUA]]{0} [[RED]]\u5f00\u542f\u4e0e\u4f60\u7684\u961f\u4f0d\u6210\u5458\u5206\u4eab\u7ecf\u9a8c
|
||||
Party.InformedOnJoin={0} [[GREEN]]\u5df2\u7ecf\u52a0\u5165\u4f60\u7684\u961f\u4f0d
|
||||
Party.InformedOnQuit={0} [[GREEN]]\u79bb\u5f00\u4e86\u961f\u4f0d
|
||||
Party.InformedOnNameChange=[[GOLD]]{0} [[GREEN]]\u5df2\u8bbe\u7f6e\u961f\u4f0d\u540d\u4e3a [[WHITE]]{1}
|
||||
Party.InvalidName=[[DARK_RED]]\u90a3\u4e0d\u662f\u4e00\u4e2a\u6709\u6548\u7684\u961f\u4f0d\u540d\u5b57.
|
||||
Party.Invite.Self=[[RED]]\u4f60\u4e0d\u80fd\u9080\u8bf7\u81ea\u5df1!
|
||||
Party.IsLocked=[[RED]]\u8fd9\u4e2a\u961f\u4f0d\u5df2\u7ecf\u9501\u5b9a!
|
||||
Party.IsntLocked=[[RED]]\u8fd9\u4e2a\u961f\u4f0d\u5e76\u6ca1\u6709\u9501\u5b9a!
|
||||
Party.Locked=[[RED]]\u961f\u4f0d\u88ab\u9501\u5b9a, \u53ea\u6709\u961f\u957f\u53ef\u4ee5\u9080\u8bf7.
|
||||
Party.Invite.Self=\u4f60\u4e0d\u80fd\u9080\u8bf7\u81ea\u5df1!
|
||||
Party.IsLocked=\u8fd9\u4e2a\u961f\u4f0d\u5df2\u7ecf\u9501\u5b9a!
|
||||
Party.IsntLocked=\u8fd9\u4e2a\u961f\u4f0d\u5e76\u6ca1\u6709\u9501\u5b9a!
|
||||
Party.Locked=\u961f\u4f0d\u88ab\u9501\u5b9a, \u53ea\u6709\u961f\u957f\u53ef\u4ee5\u9080\u8bf7.
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} \u4f60\u4e0d\u5728\u4f60\u7684\u56e2\u961f
|
||||
Party.NotOwner=[[DARK_RED]]\u4f60\u4e0d\u662f\u961f\u957f
|
||||
Party.Target.NotOwner=[[DARK_RED]]{0} \u4e0d\u662f\u961f\u957f\u3002
|
||||
Party.Owner.New=[[GREEN]]{0} \u73b0\u5728\u662f\u65b0\u7684\u6d3e\u7cfb\u9886\u961f.
|
||||
Party.Owner.NotLeader=[[DARK_RED]]\u4f60\u5df2\u7ecf\u4e0d\u518d\u662f\u6d3e\u7cfb\u5185\u7684\u9886\u961f.
|
||||
Party.Owner.Player=[[GREEN]]\u4f60\u73b0\u5728\u4e0d\u662f\u961f\u957f\u4e86
|
||||
Party.Password.None=[[RED]]\u52a0\u5165\u8fd9\u4e2a\u961f\u4f0d\u9700\u8981\u5bc6\u7801. \u8bf7\u63d0\u4f9b\u5bc6\u7801\u518d\u52a0\u5165
|
||||
Party.Password.Incorrect=[[RED]]\u961f\u4f0d\u5bc6\u7801\u9519\u8bef
|
||||
Party.Password.None=\u52a0\u5165\u8fd9\u4e2a\u961f\u4f0d\u9700\u8981\u5bc6\u7801. \u8bf7\u63d0\u4f9b\u5bc6\u7801\u518d\u52a0\u5165
|
||||
Party.Password.Incorrect=\u961f\u4f0d\u5bc6\u7801\u9519\u8bef
|
||||
Party.Password.Set=[[GREEN]]\u961f\u4f0d\u5bc6\u7801\u8bbe\u7f6e\u4e3a {0}
|
||||
Party.Password.Removed=[[GREEN]]\u961f\u4f0d\u5bc6\u7801\u5df2\u88ab\u6e05\u9664
|
||||
Party.Player.Invalid=[[RED]]\u8fd9\u4e0d\u662f\u4e00\u540d\u6709\u6548\u7684\u73a9\u5bb6
|
||||
Party.Player.Invalid=\u8fd9\u4e0d\u662f\u4e00\u540d\u6709\u6548\u7684\u73a9\u5bb6
|
||||
Party.NotOnline=[[DARK_RED]]{0} \u4e0d\u5728\u7ebf!
|
||||
Party.Player.InSameParty=[[RED]]{0} \u5df2\u7ecf\u5728\u961f\u4f0d\u4e2d!
|
||||
Party.Player.InSameParty={0} \u5df2\u7ecf\u5728\u961f\u4f0d\u4e2d!
|
||||
Party.PlayerNotInParty=[[DARK_RED]]{0} \u4e0d\u5728\u961f\u4f0d\u91cc
|
||||
Party.Specify=[[RED]]\u4f60\u5fc5\u987b\u6307\u5b9a\u4e00\u4e2a\u961f\u4f0d
|
||||
Party.Teleport.Dead=[[RED]]\u4f60\u4e0d\u80fd\u4f20\u9001\u5230\u6b7b\u4ea1\u7684\u73a9\u5bb6\u8eab\u8fb9
|
||||
Party.Teleport.Hurt=[[RED]]\u4f60\u53d7\u5230\u4f24\u5bb3, \u81f3\u5c11 {0} \u79d2\u5185\u4e0d\u80fd\u4f20\u9001
|
||||
Party.Specify=\u4f60\u5fc5\u987b\u6307\u5b9a\u4e00\u4e2a\u961f\u4f0d
|
||||
Party.Teleport.Dead=\u4f60\u4e0d\u80fd\u4f20\u9001\u5230\u6b7b\u4ea1\u7684\u73a9\u5bb6\u8eab\u8fb9
|
||||
Party.Teleport.Hurt=\u4f60\u53d7\u5230\u4f24\u5bb3, \u81f3\u5c11 {0} \u79d2\u5185\u4e0d\u80fd\u4f20\u9001
|
||||
Party.Teleport.Player=[[GREEN]]\u4f60\u5df2\u7ecf\u4f20\u9001\u5230 {0}.
|
||||
Party.Teleport.Self=[[RED]]\u4f60\u4e0d\u80fd\u4f20\u9001\u5230\u4f60\u81ea\u5df1\u90a3\u91cc!
|
||||
Party.Teleport.Self=\u4f60\u4e0d\u80fd\u4f20\u9001\u5230\u4f60\u81ea\u5df1\u90a3\u91cc!
|
||||
Party.Teleport.Target=[[GREEN]]{0} \u5df2\u7ecf\u4f20\u9001\u5230\u4f60\u8eab\u8fb9.
|
||||
Party.Teleport.Disabled=[[RED]]{0} \u4e0d\u5141\u8bb8\u961f\u4f0d\u4f20\u9001
|
||||
Party.Rename.Same=[[RED]]\u8fd9\u5df2\u7ecf\u662f\u4f60\u7684\u961f\u4f0d\u540d\u5b57\u4e86!
|
||||
Party.Join.Self=[[RED]]\u4f60\u4e0d\u80fd\u52a0\u5165\u4f60\u81ea\u5df1!
|
||||
Party.Teleport.Disabled={0} \u4e0d\u5141\u8bb8\u961f\u4f0d\u4f20\u9001
|
||||
Party.Rename.Same=\u8fd9\u5df2\u7ecf\u662f\u4f60\u7684\u961f\u4f0d\u540d\u5b57\u4e86!
|
||||
Party.Join.Self=\u4f60\u4e0d\u80fd\u52a0\u5165\u4f60\u81ea\u5df1!
|
||||
Party.Unlocked=[[GRAY]]\u961f\u4f0d\u5df2\u89e3\u9501
|
||||
Party.Disband=[[GRAY]]\u961f\u4f0d\u5df2\u89e3\u6563
|
||||
Party.Alliance.Formed=[[GRAY]]\u60a8\u7684\u961f\u4f0d\u5f53\u524d\u4e0e [[GREEN]]{0} [[GRAY]]\u7ed3\u76df
|
||||
Party.Alliance.Disband=[[GRAY]]\u60a8\u7684\u961f\u4f0d\u4e0d\u518d\u4e0e [[RED]]{0} [[GRAY]]\u7ed3\u76df
|
||||
Party.Status.Locked=[[DARK_RED]](\u4ec5\u9080\u8bf7)
|
||||
Party.Status.Unlocked=[[DARK_GREEN]](\u5f00\u542f)
|
||||
Party.LevelUp=[[YELLOW]]\u961f\u4f0d\u7b49\u7ea7\u63d0\u5347 {0} \u7ea7. \u603b\u8ba1 ({1})
|
||||
Party.LevelUp=\u961f\u4f0d\u7b49\u7ea7\u63d0\u5347 {0} \u7ea7. \u603b\u8ba1 ({1})
|
||||
Party.Feature.Chat=\u961f\u4f0d\u804a\u5929
|
||||
Party.Feature.Teleport=\u961f\u4f0d\u4f20\u9001
|
||||
Party.Feature.Alliance=\u540c\u76df
|
||||
@ -597,11 +597,11 @@ Party.Feature.Locked.Teleport=\u529f\u80fd\u9501\u5b9a\u76f4\u81f3 {0}+ (\u961f\
|
||||
Party.Feature.Locked.Alliance=\u529f\u80fd\u9501\u5b9a\u76f4\u81f3 {0}+ (\u540c\u76df)
|
||||
Party.Feature.Locked.ItemShare=\u529f\u80fd\u9501\u5b9a\u76f4\u81f3 {0}+ (\u7269\u54c1\u5171\u4eab)
|
||||
Party.Feature.Locked.XpShare=\u529f\u80fd\u9501\u5b9a\u76f4\u81f3 {0}+ (\u7ecf\u9a8c\u5171\u4eab)
|
||||
Party.Feature.Disabled.1=[[RED]]\u961f\u4f0d\u804a\u5929\u5c1a\u672a\u89e3\u9501\u3002
|
||||
Party.Feature.Disabled.2=[[RED]]\u961f\u4f0d\u4f20\u9001\u5c1a\u672a\u89e3\u9501\u3002
|
||||
Party.Feature.Disabled.3=[[RED]]\u961f\u4f0d\u540c\u76df\u5c1a\u672a\u89e3\u9501\u3002
|
||||
Party.Feature.Disabled.4=[[RED]]\u961f\u4f0d\u7269\u54c1\u5171\u4eab\u5c1a\u672a\u89e3\u9501\u3002
|
||||
Party.Feature.Disabled.5=[[RED]]\u961f\u4f0d\u7ecf\u9a8c\u5171\u4eab\u5c1a\u672a\u89e3\u9501\u3002
|
||||
Party.Feature.Disabled.1=\u961f\u4f0d\u804a\u5929\u5c1a\u672a\u89e3\u9501\u3002
|
||||
Party.Feature.Disabled.2=\u961f\u4f0d\u4f20\u9001\u5c1a\u672a\u89e3\u9501\u3002
|
||||
Party.Feature.Disabled.3=\u961f\u4f0d\u540c\u76df\u5c1a\u672a\u89e3\u9501\u3002
|
||||
Party.Feature.Disabled.4=\u961f\u4f0d\u7269\u54c1\u5171\u4eab\u5c1a\u672a\u89e3\u9501\u3002
|
||||
Party.Feature.Disabled.5=\u961f\u4f0d\u7ecf\u9a8c\u5171\u4eab\u5c1a\u672a\u89e3\u9501\u3002
|
||||
Party.ShareType.Xp=\u7ecf\u9a8c
|
||||
Party.ShareType.Item=\u7269\u54c1
|
||||
Party.ShareMode.None=\u65e0
|
||||
@ -629,11 +629,11 @@ Commands.XPGain.Woodcutting=\u6b63\u5728\u780d\u5012\u6811\u6728
|
||||
Commands.XPGain=[[DARK_GRAY]]\u83b7\u5f97\u7ecf\u9a8c: [[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]\u4f60\u7684\u7ecf\u9a8c\u6761\u9501\u5b9a\u5728 {0}!
|
||||
Commands.xplock.unlocked=[[GOLD]]\u4f60\u7684\u7ecf\u9a8c\u6761\u73b0\u5728 [[GREEN]]\u89e3\u9664\u9501\u5b9a\u4e86[[GOLD]]!
|
||||
Commands.xprate.modified=[[RED]]\u7ecf\u9a8c\u500d\u7387\u5df2\u8bbe\u7f6e\u4e3a {0}
|
||||
Commands.xprate.over=[[RED]]mcMMO \u9ad8\u7ecf\u9a8c\u4e8b\u4ef6\u7ed3\u675f!!
|
||||
Commands.xprate.proper.0=[[RED]]\u60f3\u4fee\u6539\u7ecf\u9a8c\u83b7\u53d6\u7387\u8bf7\u8f93\u5165 /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=[[RED]]\u60f3\u628a\u7ecf\u9a8c\u83b7\u53d6\u7387\u8c03\u6574\u4e3a\u9ed8\u8ba4\u8bf7\u8f93\u5165 /xprate reset
|
||||
Commands.xprate.proper.2=[[RED]]\u8bf7\u6307\u5b9a true \u6216 false \u6765\u8868\u660e\u8fd9\u662f\u5426\u662f\u4e00\u4e2a\u7ecf\u9a8c\u4e8b\u4ef6
|
||||
Commands.xprate.modified=\u7ecf\u9a8c\u500d\u7387\u5df2\u8bbe\u7f6e\u4e3a {0}
|
||||
Commands.xprate.over=mcMMO \u9ad8\u7ecf\u9a8c\u4e8b\u4ef6\u7ed3\u675f!!
|
||||
Commands.xprate.proper.0=\u60f3\u4fee\u6539\u7ecf\u9a8c\u83b7\u53d6\u7387\u8bf7\u8f93\u5165 /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=\u60f3\u628a\u7ecf\u9a8c\u83b7\u53d6\u7387\u8c03\u6574\u4e3a\u9ed8\u8ba4\u8bf7\u8f93\u5165 /xprate reset
|
||||
Commands.xprate.proper.2=\u8bf7\u6307\u5b9a true \u6216 false \u6765\u8868\u660e\u8fd9\u662f\u5426\u662f\u4e00\u4e2a\u7ecf\u9a8c\u4e8b\u4ef6
|
||||
Commands.xprate.started.0=[[GOLD]] mcMMO \u9ad8\u7ecf\u9a8c\u4e8b\u4ef6\u5df2\u5f00\u59cb!
|
||||
Commands.xprate.started.1=[[GOLD]]mcMMO \u7ecf\u9a8c\u83b7\u53d6\u7387\u73b0\u5728\u4e3a {0}x!
|
||||
XPRate.Event=[[GOLD]]mcMMO \u73b0\u5728\u6b63\u5904\u4e8e\u9ad8\u7ecf\u9a8c\u4e8b\u4ef6\u9636\u6bb5! \u7ecf\u9a8c\u83b7\u53d6\u7387\u4e3a {0}\u500d
|
||||
@ -646,7 +646,7 @@ Guides.Available=[[GRAY]]{0} \u7684\u5411\u5bfc - \u8f93\u5165/{1} ? [\u9875\u65
|
||||
Guides.Header=[[GOLD]]-=[[GREEN]]{0} \u5411\u5bfc[[GOLD]]=-
|
||||
Guides.Page.Invalid=\u4e0d\u662f\u4e00\u4e2a\u6709\u6548\u7684\u9875\u6570!
|
||||
Guides.Page.OutOfRange=\u90a3\u9875\u4e0d\u5b58\u5728, \u603b\u5171\u53ea\u6709 {0} \u9875
|
||||
Guides.Usage=[[RED]] \u7528\u6cd5 /{0} ? [\u9875\u6570]
|
||||
Guides.Usage= \u7528\u6cd5 /{0} ? [\u9875\u6570]
|
||||
Guides.Acrobatics.Section.0=[[DARK_AQUA]]\u5173\u4e8e\u6742\u6280:\n[[YELLOW]]\u6742\u6280\u662f mcMMO \u4e2d\u4f18\u96c5\u79fb\u52a8\u7684\u827a\u672f\u3002\n[[YELLOW]]\u5b83\u63d0\u4f9b\u4e86\u6218\u6597\u52a0\u6210\u548c\u73af\u5883\u4f24\u5bb3\u52a0\u6210\u3002\n\n[[DARK_AQUA]]\u7ecf\u9a8c\u83b7\u53d6:\n[[YELLOW]]\u901a\u8fc7\u5728\u6218\u6597\u4e2d\u95ea\u907f\u6216\u8005\u4ece\u9ad8\u5904\n[[YELLOW]]\u8dcc\u843d\u65f6\u53d7\u4f24\u5e76\u5e78\u5b58\u6765\u83b7\u5f97\u7ecf\u9a8c\u3002
|
||||
Guides.Acrobatics.Section.1=[[DARK_AQUA]]\u7ffb\u6eda\u662f\u5982\u4f55\u5de5\u4f5c\u7684\uff1f\n[[YELLOW]]\u5f53\u60a8\u53d7\u5230\u8dcc\u843d\u4f24\u5bb3\u65f6\u60a8\u6709\u88ab\u52a8\u673a\u4f1a\u6765\u514d\u53d7\u4f24\u5bb3\u3002\n[[YELLOW]]\u60a8\u53ef\u4ee5\u5728\u8dcc\u843d\u4e2d\u6309\u4f4f\u6f5c\u884c\u952e\u6765\u63d0\u5347\u89e6\u53d1\u51e0\u7387\u3002\n[[YELLOW]]\u8fd9\u5c06\u89e6\u53d1\u4e00\u4e2a\u4f18\u96c5\u5730\u7ffb\u6eda\u800c\u4e0d\u662f\u666e\u901a\u7684\u7ffb\u6eda\u3002\n[[YELLOW]]\u4f18\u96c5\u5730\u7ffb\u6eda\u7c7b\u4f3c\u666e\u901a\u7684\u7ffb\u6eda\u4f46\u662f\u5b83\u6709\u53cc\u500d\u51e0\u7387\n[[YELLOW]]\u53d1\u751f\uff0c\u5e76\u4e14\u80fd\u591f\u63d0\u4f9b\u6bd4\u666e\u901a\u5730\u7ffb\u6eda\u66f4\u9ad8\u7684\u4f24\u5bb3\u51cf\u514d\u3002\n[[YELLOW]]\u7ffb\u6eda\u51e0\u7387\u53d6\u51b3\u4e8e\u60a8\u7684\u6280\u80fd\u7b49\u7ea7
|
||||
Guides.Acrobatics.Section.2=[[DARK_AQUA]]\u95ea\u907f\u662f\u5982\u4f55\u5de5\u4f5c\u7684?\n[[YELLOW]]\u95ea\u907f\u662f\u4e00\u4e2a\u88ab\u52a8\u6280\u80fd\n[[YELLOW]]\u4ed6\u5728\u4f60\u88ab\u653b\u51fb\u65f6\u6709\u4e00\u5b9a\u51e0\u7387\u88ab\u6fc0\u53d1\n[[YELLOW]]\u8fd9\u4e2a\u51e0\u7387\u548c\u4f60\u7684\u6280\u80fd\u7b49\u7ea7\u6709\u5173
|
||||
@ -677,15 +677,15 @@ Guides.Swords.Section.3=[[DARK_AQUA]]\u4ec0\u4e48\u662f\u653e\u8840?\n[[YELLOW]]
|
||||
Guides.Smelting.Section.0=\u5373\u5c06\u5230\u6765...
|
||||
Guides.Taming.Section.1=[[DARK_AQUA]]\u4ec0\u4e48\u662f\u91ce\u6027\u547c\u5524?\n[[YELLOW]]\u8fd9\u662f\u4e00\u4e2a\u4e3b\u52a8\u6280\u80fd\n[[YELLOW]]\u5b83\u53ef\u4ee5\u53ec\u5524\u4e00\u53ea\u72fc,\u8c79\u732b\u6216\u8005\u9a6c\u5230\u4f60\u8eab\u8fb9\n[[YELLOW]]\u624b\u6301\u9aa8\u5934,\u751f\u9c7c\u6216\u82f9\u679c\u6765\u8fdb\u884c\u53ec\u5524
|
||||
Guides.Taming.Section.8=[[DARK_AQUA]]\u4ec0\u4e48\u662f\u5feb\u9910\u670d\u52a1?\n[[YELLOW]]\u8fd9\u662f\u4e00\u4e2a\u88ab\u52a8\u6280\u80fd\n[[YELLOW]]\u653b\u51fb\u65f6\u6062\u590d\u72fc\u7684\u751f\u547d\u503c
|
||||
Inspect.Offline=[[RED]]\u4f60\u6ca1\u6709\u67e5\u8be2\u4e0d\u5728\u7ebf\u73a9\u5bb6\u4fe1\u606f\u7684\u6743\u9650!
|
||||
Inspect.Offline=\u4f60\u6ca1\u6709\u67e5\u8be2\u4e0d\u5728\u7ebf\u73a9\u5bb6\u4fe1\u606f\u7684\u6743\u9650!
|
||||
Inspect.OfflineStats=\u4e0d\u5728\u7ebf\u73a9\u5bb6\u7684mcmmo\u7edf\u8ba1\u4fe1\u606f [[YELLOW]]{0}
|
||||
Inspect.Stats=[[YELLOW]]{0} [[GREEN]]\u7684 mcMMO \u7edf\u8ba1\u4fe1\u606f
|
||||
Inspect.TooFar=[[RED]]\u4f60\u65e0\u6cd5\u68c0\u67e5\u90a3\u4e2a\u73a9\u5bb6\u56e0\u4e3a\u4f60\u4eec\u8ddd\u79bb\u592a\u8fdc\u4e86!
|
||||
Inspect.Stats={0} [[GREEN]]\u7684 mcMMO \u7edf\u8ba1\u4fe1\u606f
|
||||
Inspect.TooFar=\u4f60\u65e0\u6cd5\u68c0\u67e5\u90a3\u4e2a\u73a9\u5bb6\u56e0\u4e3a\u4f60\u4eec\u8ddd\u79bb\u592a\u8fdc\u4e86!
|
||||
Item.ChimaeraWing.Fail=**\u5947\u7f8e\u62c9\u4e4b\u7ffc\u5931\u8d25\u4e86!**
|
||||
Item.ChimaeraWing.Pass=**\u5947\u7f8e\u62c9\u4e4b\u7ffc**
|
||||
Item.ChimaeraWing.Name=\u5947\u7f8e\u62c9\u4e4b\u7ffc
|
||||
Item.ChimaeraWing.Lore=[[GRAY]]\u4f20\u9001\u81f3\u4f60\u7684\u5e8a.
|
||||
Item.Generic.Wait=[[RED]]\u4f60\u9700\u8981\u7b49\u5f85\u4e00\u6bb5\u65f6\u95f4\u624d\u80fd\u518d\u6b21\u4f7f\u7528! [[YELLOW]]({0}s)
|
||||
Item.Generic.Wait=\u4f60\u9700\u8981\u7b49\u5f85\u4e00\u6bb5\u65f6\u95f4\u624d\u80fd\u518d\u6b21\u4f7f\u7528! [[YELLOW]]({0}s)
|
||||
Item.Injured.Wait=\u4f60\u6700\u8fd1\u53d7\u4f24\u4e86\u6240\u4ee5\u4f60\u5fc5\u987b\u7b49\u4e00\u6bb5\u65f6\u95f4\u624d\u80fd\u4f7f\u7528\u8fd9\u4e2a. [[YELLOW]]({0}s)
|
||||
Item.FluxPickaxe.Name=\u707c\u70ed\u4e4b\u9550
|
||||
Item.FluxPickaxe.Lore.1=[[GRAY]]\u6709\u51e0\u7387\u77ac\u95f4\u7194\u70bc\u77ff\u7269\u3002
|
||||
@ -694,13 +694,13 @@ Teleport.Commencing=[[GRAY]]\u4f20\u9001\u5c06\u5728 [[GOLD]]({0}) [[GRAY]] \u79
|
||||
Teleport.Cancelled=[[DARK_RED]]\u4f20\u9001\u5df2\u53d6\u6d88!
|
||||
Skills.Child=[[GOLD]](\u5206\u652f\u6280\u80fd)
|
||||
Skills.Disarmed=[[DARK_RED]]\u4f60\u88ab\u7f34\u68b0\u4e86!
|
||||
Skills.Header=[[RED]]-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.Header=-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.NeedMore=[[DARK_RED]]\u4f60\u9700\u8981\u66f4\u591a\u7684 [[GRAY]]{0}
|
||||
Skills.Parents=\u4e3b\u6280\u80fd
|
||||
Skills.Stats=[[YELLOW]]{0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats=[[YELLOW]]{0}[[GREEN]]{1}
|
||||
Skills.TooTired=[[RED]]\u4f60\u592a\u7d2f\u4e86\u6682\u65f6\u65e0\u6cd5\u4f7f\u7528\u8be5\u6280\u80fd.[[YELLOW]]({0}s)
|
||||
Skills.Cancelled=[[RED]]{0} \u5df2\u53d6\u6d88!
|
||||
Skills.Stats={0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats={0}[[GREEN]]{1}
|
||||
Skills.TooTired=\u4f60\u592a\u7d2f\u4e86\u6682\u65f6\u65e0\u6cd5\u4f7f\u7528\u8be5\u6280\u80fd.[[YELLOW]]({0}s)
|
||||
Skills.Cancelled={0} \u5df2\u53d6\u6d88!
|
||||
Skills.ConfirmOrCancel=[[GREEN]]\u518d\u6b21\u53f3\u952e\u4ee5\u786e\u5b9a [[GOLD]]{0}[[GREEN]]. \u5de6\u952e\u53d6\u6d88.
|
||||
Stats.Header.Combat=[[GOLD]]-=\u683c\u6597\u6280\u80fd=-
|
||||
Stats.Header.Gathering=[[GOLD]]-=\u91c7\u96c6\u6280\u80fd=-
|
||||
@ -732,15 +732,15 @@ MOTD.Donate=[[DARK_AQUA]]\u6350\u8d60\u4fe1\u606f:
|
||||
MOTD.Hardcore.Enabled=[[GOLD]][mcMMO] [[DARK_AQUA]]\u786c\u6838\u6a21\u5f0f\u5df2\u542f\u7528: [[DARK_RED]]{0}
|
||||
MOTD.Hardcore.DeathStatLoss.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]\u6280\u80fd\u6b7b\u4ea1\u60e9\u7f5a: [[DARK_RED]]{0}%
|
||||
MOTD.Hardcore.Vampirism.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]Vampirism\u7edf\u8ba1: [[DARK_RED]]{0}%
|
||||
MOTD.PerksPrefix=[[RED]][mcMMO \u80fd\u529b]
|
||||
MOTD.PerksPrefix=[mcMMO \u80fd\u529b]
|
||||
MOTD.Version=[[GOLD]][mcMMO] \u6b63\u5728\u8fd0\u884c\u7248\u672c [[DARK_AQUA]]{0}
|
||||
MOTD.Website=[[GOLD]][mcMMO] [[GREEN]]{0}[[YELLOW]] - mcMMO \u7f51\u5740
|
||||
Smelting.Ability.FluxMining=[[RED]]\u70bd\u70ed\u7684\u9550\u5b50\u89e6\u53d1\u51e0\u7387: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=[[RED]]\u71c3\u6599\u6548\u7387\u52a0\u500d: [[YELLOW]]{0}x
|
||||
Smelting.Ability.FluxMining=\u70bd\u70ed\u7684\u9550\u5b50\u89e6\u53d1\u51e0\u7387: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=\u71c3\u6599\u6548\u7387\u52a0\u500d: [[YELLOW]]{0}x
|
||||
Smelting.Ability.Locked.0={0}+ \u7ea7\u540e\u89e3\u9501 (\u66f4\u591a\u51b6\u70bc\u7ecf\u9a8c\u7403)
|
||||
Smelting.Ability.Locked.1={0}+ \u7ea7\u540e\u89e3\u9501 (FLUX MINING)
|
||||
Smelting.Ability.SecondSmelt=[[RED]]\u4e8c\u6b21\u7194\u70bc\u51e0\u7387: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=[[RED]]\u7ecf\u9a8c\u52a0\u500d: [[YELLOW]]{0}x
|
||||
Smelting.Ability.SecondSmelt=\u4e8c\u6b21\u7194\u70bc\u51e0\u7387: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=\u7ecf\u9a8c\u52a0\u500d: [[YELLOW]]{0}x
|
||||
Smelting.SubSkill.FuelEfficiency.Name=\u71c3\u6599\u6548\u7387
|
||||
Smelting.SubSkill.FuelEfficiency.Description=\u7194\u70bc\u65f6\u63d0\u9ad8\u7194\u7089\u5185\u71c3\u6599\u7684\u71c3\u70e7\u65f6\u95f4
|
||||
Smelting.SubSkill.SecondSmelt.Name=\u4e8c\u6b21\u7194\u70bc
|
||||
@ -781,19 +781,19 @@ Commands.Description.xplock=\u9501\u5b9a\u6307\u5b9a mcMMO \u6280\u80fd\u7684\u7
|
||||
Commands.Description.xprate=\u66f4\u6539 mcMMO \u7ecf\u9a8c\u500d\u7387\u6216\u5f00\u542f\u4e00\u4e2a mcMMO \u7ecf\u9a8c\u7ffb\u500d\u4e8b\u4ef6
|
||||
UpdateChecker.Outdated=\u4f60\u6b63\u4f7f\u7528\u7740\u4e00\u4e2a\u8fc7\u65f6\u7248\u672c\u7684 mcMMO !
|
||||
UpdateChecker.NewAvailable=\u53d1\u73b0 BukkitDev \u4e0a\u6709\u53ef\u7528\u65b0\u7248\u672c.
|
||||
Scoreboard.Header.PlayerStats=[[YELLOW]]mcMMO \u7edf\u8ba1
|
||||
Scoreboard.Header.PlayerCooldowns=[[YELLOW]]mcMMO \u51b7\u5374
|
||||
Scoreboard.Header.PlayerRank=[[YELLOW]]mcMMO \u6392\u540d
|
||||
Scoreboard.Header.PlayerInspect=[[YELLOW]]mcMMO \u7edf\u8ba1: {0}
|
||||
Scoreboard.Header.PowerLevel=[[RED]]\u6218\u6597\u529b
|
||||
Scoreboard.Header.PlayerStats=mcMMO \u7edf\u8ba1
|
||||
Scoreboard.Header.PlayerCooldowns=mcMMO \u51b7\u5374
|
||||
Scoreboard.Header.PlayerRank=mcMMO \u6392\u540d
|
||||
Scoreboard.Header.PlayerInspect=mcMMO \u7edf\u8ba1: {0}
|
||||
Scoreboard.Header.PowerLevel=\u6218\u6597\u529b
|
||||
Scoreboard.Misc.PowerLevel=[[GOLD]]\u6218\u6597\u529b
|
||||
Scoreboard.Misc.Level=[[DARK_AQUA]]\u7b49\u7ea7
|
||||
Scoreboard.Misc.CurrentXP=[[GREEN]]\u5f53\u524d\u7ecf\u9a8c
|
||||
Scoreboard.Misc.RemainingXP=[[YELLOW]]\u5347\u7ea7\u6240\u9700\u7ecf\u9a8c
|
||||
Scoreboard.Misc.RemainingXP=\u5347\u7ea7\u6240\u9700\u7ecf\u9a8c
|
||||
Scoreboard.Misc.Cooldown=[[LIGHT_PURPLE]]\u51b7\u5374
|
||||
Scoreboard.Misc.Overall=[[GOLD]]\u603b\u4f53
|
||||
Scoreboard.Misc.Ability=\u80fd\u529b
|
||||
Recovery.Notice=[[RED]]\u6ce8\u610f: mcMMO[[DARK_RED]]\u65e0\u6cd5\u8f7d\u5165\u4f60\u7684\u6570\u636e.[[RED]] \u91cd\u8bd55\u6b21...
|
||||
Recovery.Notice=\u6ce8\u610f: mcMMO[[DARK_RED]]\u65e0\u6cd5\u8f7d\u5165\u4f60\u7684\u6570\u636e.[[RED]] \u91cd\u8bd55\u6b21...
|
||||
Recovery.Success=[[GREEN]]\u6210\u529f!\u4f60\u7684mcMMO\u6570\u636e\u5df2\u8f7d\u5165.
|
||||
Recovery.Failure=[[RED]]mcMMO\u65e0\u6cd5\u8f7d\u5165\u4f60\u7684\u6570\u636e,\u4f60\u53ef\u80fd\u9700\u8981\u8054\u7cfb[[AQUA]]\u6e38\u620f\u7ba1\u7406\u5458\n[[YELLOW]]\u4f60\u53ef\u4ee5\u7ee7\u7eed\u6e38\u620f,\u4f46\u4f60[[BOLD]]\u65e0\u6cd5\u5f97\u5230mcMMO\u7b49\u7ea7[[YELLOW]]\u548c\u4efb\u4f55\u7ecf\u9a8c[[BOLD]]\u6240\u6709\u6570\u636e\u4e0d\u4f1a\u88ab\u4fdd\u5b58[[YELLOW]].
|
||||
Recovery.Failure=mcMMO\u65e0\u6cd5\u8f7d\u5165\u4f60\u7684\u6570\u636e,\u4f60\u53ef\u80fd\u9700\u8981\u8054\u7cfb[[AQUA]]\u6e38\u620f\u7ba1\u7406\u5458\n[[YELLOW]]\u4f60\u53ef\u4ee5\u7ee7\u7eed\u6e38\u620f,\u4f46\u4f60[[BOLD]]\u65e0\u6cd5\u5f97\u5230mcMMO\u7b49\u7ea7[[YELLOW]]\u548c\u4efb\u4f55\u7ecf\u9a8c[[BOLD]]\u6240\u6709\u6570\u636e\u4e0d\u4f1a\u88ab\u4fdd\u5b58[[YELLOW]].
|
||||
Recovery.AdminFailureNotice=[[DARK_RED]][A][[RED]]mcMMO\u65e0\u6cd5\u8f7d\u5165\u73a9\u5bb6[[YELLOW]]{0}[[RED]]\u7684\u6570\u636e. [[LIGHT_PURPLE]]\u8bf7\u68c0\u67e5\u4f60\u7684\u6570\u636e\u5e93\u6216\u8bbe\u7f6e.
|
||||
|
@ -1,6 +1,6 @@
|
||||
Acrobatics.Ability.Proc=[[GREEN]]**\u5b8c\u7f8e\u8457\u9678**
|
||||
Acrobatics.Combat.Proc=[[GREEN]]**\u8ff4\u907f**
|
||||
Acrobatics.DodgeChance=[[RED]]\u8ff4\u907f\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Acrobatics.DodgeChance=\u8ff4\u907f\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Name=\u7ffb\u6efe
|
||||
Acrobatics.SubSkill.Roll.Description=\u6e1b\u5c11\u6216\u53d6\u6d88\u6389\u843d\u50b7\u5bb3
|
||||
Acrobatics.SubSkill.GracefulRoll.Name=\u6f02\u4eae\u7ffb\u6efe
|
||||
@ -8,14 +8,14 @@ Acrobatics.SubSkill.GracefulRoll.Description=\u5169\u500d\u7684\u7ffb\u6efe\u654
|
||||
Acrobatics.SubSkill.Dodge.Name=\u8ff4\u907f
|
||||
Acrobatics.SubSkill.Dodge.Description=\u6e1b\u5c11\u4e00\u534a\u7684\u50b7\u5bb3
|
||||
Acrobatics.Listener=\u96dc\u6280:
|
||||
Acrobatics.SubSkill.Roll.Chance=[[RED]]\u7ffb\u6efe\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=[[RED]]\u6f02\u4eae\u7ffb\u6efe\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.Chance=\u7ffb\u6efe\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Acrobatics.SubSkill.Roll.GraceChance=\u6f02\u4eae\u7ffb\u6efe\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Acrobatics.Roll.Text=**\u7ffb\u6efe**
|
||||
Acrobatics.SkillName=\u96dc\u6280
|
||||
Acrobatics.Skillup=[[YELLOW]]\u96dc\u6280\u7b49\u7d1a\u4e0a\u5347\u4e86{0}\u7b49. \u5171({1})\u7b49
|
||||
Archery.Combat.DazeChance=[[RED]]\u6688\u7729\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=[[RED]]\u56de\u6536\u7bad\u77e2\u7684\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=[[RED]]\u6280\u8853\u5c04\u64ca\u734e\u52f5\u50b7\u5bb3: [[YELLOW]]{0}
|
||||
Acrobatics.Skillup=\u96dc\u6280\u7b49\u7d1a\u4e0a\u5347\u4e86{0}\u7b49. \u5171({1})\u7b49
|
||||
Archery.Combat.DazeChance=\u6688\u7729\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Archery.Combat.RetrieveChance=\u56de\u6536\u7bad\u77e2\u7684\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Archery.Combat.SkillshotBonus=\u6280\u8853\u5c04\u64ca\u734e\u52f5\u50b7\u5bb3: [[YELLOW]]{0}
|
||||
Archery.SubSkill.SkillShot.Name=\u6280\u8853\u5c04\u64ca
|
||||
Archery.SubSkill.SkillShot.Description=\u589e\u52a0\u5f13\u7bad\u50b7\u5bb3
|
||||
Archery.SubSkill.Daze.Name=\u6688\u7729(\u9650\u5b9a\u73a9\u5bb6)
|
||||
@ -24,7 +24,7 @@ Archery.SubSkill.ArrowRetrieval.Name=\u56de\u6536\u5f13\u7bad
|
||||
Archery.SubSkill.ArrowRetrieval.Description=\u6709\u6a5f\u7387\u5f9e\u5c4d\u9ad4\u4e0a\u53d6\u5f97\u7bad\u77e2
|
||||
Archery.Listener=\u7bad\u8853:
|
||||
Archery.SkillName=\u7bad\u8853
|
||||
Archery.Skillup=[[YELLOW]]\u7bad\u8853\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7ea7 ({1})!
|
||||
Archery.Skillup=\u7bad\u8853\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7ea7 ({1})!
|
||||
Axes.Ability.Bonus.0=\u65a7\u982d\u7cbe\u901a
|
||||
Axes.Ability.Bonus.1=\u734e\u52f5 {0} \u50b7\u5bb3
|
||||
Axes.Ability.Bonus.2=\u9632\u5177\u7834\u58de\u8005
|
||||
@ -34,12 +34,12 @@ Axes.Ability.Bonus.5=\u5c0d\u7121\u88dd\u7532\u6575\u4eba\u984d\u5916\u9020\u621
|
||||
Axes.Ability.Lower=[[GRAY]]**\u4f60\u653e\u4e0b\u4e86\u4f60\u7684\u65a7\u982d**
|
||||
Axes.Ability.Ready=[[GREEN]]**\u4f60\u63e1\u7dca\u4e86\u4f60\u7684\u65a7\u982d**
|
||||
Axes.Combat.CritStruck=[[DARK_RED]]\u4f60\u6253\u51fa\u4e86\u6703\u5fc3\u4e00\u64ca!
|
||||
Axes.Combat.CritChance=[[RED]]\u66b4\u64ca\u6a5f\u7387: [[YELLOW]]{0}%
|
||||
Axes.Combat.CriticalHit=[[RED]]\u6703\u5fc3\u4e00\u64ca!
|
||||
Axes.Combat.CritChance=\u66b4\u64ca\u6a5f\u7387: [[YELLOW]]{0}%
|
||||
Axes.Combat.CriticalHit=\u6703\u5fc3\u4e00\u64ca!
|
||||
Axes.Combat.GI.Proc=[[GREEN]]**\u66b4\u529b\u6253\u64ca**
|
||||
Axes.Combat.GI.Struck=[[RED]]**\u88ab\u5f37\u529b\u653b\u64ca\u64ca\u4e2d**
|
||||
Axes.Combat.GI.Struck=**\u88ab\u5f37\u529b\u653b\u64ca\u64ca\u4e2d**
|
||||
Axes.Combat.SS.Struck=[[DARK_RED]]\u88ab\u5288\u9871\u65ac\u64ca\u4e2d!
|
||||
Axes.Combat.SS.Length=[[RED]]\u5288\u9871\u65ac\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0}s
|
||||
Axes.Combat.SS.Length=\u5288\u9871\u65ac\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0}s
|
||||
Axes.SubSkill.SkullSplitter.Name=\u5288\u9871\u65ac (\u4e3b\u52d5\u6280\u80fd)
|
||||
Axes.SubSkill.SkullSplitter.Description=\u9020\u6210\u7bc4\u570d\u50b7\u5bb3
|
||||
Axes.SubSkill.CriticalStrikes.Name=\u6703\u5fc3\u4e00\u64ca
|
||||
@ -52,38 +52,38 @@ Axes.SubSkill.GreaterImpact.Name=\u5f37\u529b\u653b\u64ca
|
||||
Axes.SubSkill.GreaterImpact.Description=\u5c0d\u7121\u88dd\u7532\u6575\u4eba\u9020\u6210\u66f4\u591a\u50b7\u5bb3
|
||||
Axes.Listener=\u65a7\u6280:
|
||||
Axes.SkillName=\u65a7\u6280
|
||||
Axes.Skills.SS.Off=[[RED]]**\u5288\u9871\u65ac\u5df2\u7d50\u675f**
|
||||
Axes.Skills.SS.Off=**\u5288\u9871\u65ac\u5df2\u7d50\u675f**
|
||||
Axes.Skills.SS.On=[[GREEN]]**\u5288\u9871\u65ac\u5df2\u4f7f\u7528**
|
||||
Axes.Skills.SS.Refresh=[[GREEN]]\u4f60\u7684 [[YELLOW]]\u5288\u9871\u65ac [[GREEN]]\u80fd\u529b\u5df2\u53ef\u4f7f\u7528\uff01
|
||||
Axes.Skills.SS.Other.Off=[[RED]]\u5288\u9871\u65ac[[GREEN]] \u5df2\u7d93\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.Off=\u5288\u9871\u65ac[[GREEN]] \u5df2\u7d93\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Axes.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]]\u4f7f\u7528\u4e86 [[RED]]\u5288\u9871\u65ac!
|
||||
Axes.Skillup=[[YELLOW]]\u65a7\u6280\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Axes.Skillup=\u65a7\u6280\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Excavation.Ability.Lower=[[GRAY]]**\u4f60\u653e\u4e0b\u4e86\u4f60\u7684\u93df\u5b50**
|
||||
Excavation.Ability.Ready=[[GREEN]]**\u4f60\u63e1\u7dca\u4e86\u4f60\u7684\u93df\u5b50**
|
||||
Excavation.SubSkill.GigaDrillBreaker.Name=\u66b4\u8d70\u947d\u982d (\u4e3b\u52d5\u6280\u80fd)
|
||||
Excavation.SubSkill.GigaDrillBreaker.Description=3x \u6389\u843d\u7387, 3x \u7d93\u9a57\u503c, +\u901f\u5ea6
|
||||
Excavation.SubSkill.TreasureHunter.Name=\u5bf6\u7269\u7375\u4eba
|
||||
Excavation.SubSkill.TreasureHunter.Description=\u6316\u51fa\u5bf6\u85cf\u7684\u80fd\u529b
|
||||
Excavation.Effect.Length=[[RED]]\u66b4\u8d70\u947d\u982d\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0}s
|
||||
Excavation.Effect.Length=\u66b4\u8d70\u947d\u982d\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0}s
|
||||
Excavation.Listener=\u6316\u6398:
|
||||
Excavation.SkillName=\u6316\u6398
|
||||
Excavation.Skills.GigaDrillBreaker.Off=[[RED]]**\u66b4\u8d70\u947d\u982d\u5df2\u7ed3\u675f**
|
||||
Excavation.Skills.GigaDrillBreaker.Off=**\u66b4\u8d70\u947d\u982d\u5df2\u7ed3\u675f**
|
||||
Excavation.Skills.GigaDrillBreaker.On=[[GREEN]]**\u66b4\u8d70\u947d\u982d\u6280\u80fd\u4f7f\u7528**
|
||||
Excavation.Skills.GigaDrillBreaker.Refresh=[[GREEN]]\u4f60\u7684 [[YELLOW]]\u66b4\u8d70\u947d\u982d [[GREEN]]\u6280\u80fd\u5df2\u7d93\u53ef\u4ee5\u4f7f\u7528\u4e86!
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=[[RED]]\u66b4\u8d70\u947d\u982d[[GREEN]] \u5df2\u7d93\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.Off=\u66b4\u8d70\u947d\u982d[[GREEN]] \u5df2\u7d93\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Excavation.Skills.GigaDrillBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u4f7f\u7528\u4e86 [[RED]]\u66b4\u8d70\u947d\u982d!
|
||||
Excavation.Skillup=[[YELLOW]]\u6316\u6398\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Fishing.Ability.Chance=[[RED]]\u54ac\u788e\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=[[RED]]\u9b54\u6cd5\u7375\u4eba: [[GRAY]] ** \u96a8\u8457\u5bf6\u85cf\u7375\u4eba\u7b49\u7d1a\u63d0\u9ad8 **
|
||||
Excavation.Skillup=\u6316\u6398\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Fishing.Ability.Chance=\u54ac\u788e\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Fishing.Ability.Info=\u9b54\u6cd5\u7375\u4eba: [[GRAY]] ** \u96a8\u8457\u5bf6\u85cf\u7375\u4eba\u7b49\u7d1a\u63d0\u9ad8 **
|
||||
Fishing.Ability.Locked.0=\u9396\u5b9a\u76f4\u5230\u6280\u80fd {0}+ \uff08\u6416\u6643\uff09
|
||||
Fishing.Ability.Locked.1=\u9396\u5b9a\u76f4\u5230\u6280\u80fd {0}+ (\u51b0\u91e3)
|
||||
Fishing.Ability.Locked.2=\u9396\u5b9a\u76f4\u5230\u6280\u80fd {0}+ (\u5782\u91e3\u5927\u5e2b)
|
||||
Fishing.Ability.Rank=[[RED]]\u5bf6\u7269\u7375\u4eba\u7b49\u7d1a: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.DropRate=[[RED]]\u6389\u5bf6\u7387: [[DARK_RED]]\u9677\u9631: [[YELLOW]]{0} [[GRAY]]\u5e38\u898b: [[YELLOW]]{1} [[GREEN]]\u7f55\u898b: [[YELLOW]]{2}\n[[BLUE]]\u7a00\u6709: [[YELLOW]]{3} [[LIGHT_PURPLE]]\u53f2\u8a69: [[YELLOW]]{4} [[GOLD]]\u50b3\u8aaa: [[YELLOW]]{5} [[AQUA]]\u5275\u7d00\u9304: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=[[RED]]\u9b54\u6cd5\u7375\u4eba\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=[[RED]]\u6416\u6643\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=[[RED]]\u51b0\u91e3: \u5728\u51b0\u4e0a\u91e3\u9b5a
|
||||
Fishing.Ability.FD=[[RED]]\u6f01\u4eba\u4fbf\u7576: [[YELLOW]]\u7b49\u7d1a {0}
|
||||
Fishing.Ability.Rank=\u5bf6\u7269\u7375\u4eba\u7b49\u7d1a: [[YELLOW]]{0}/5
|
||||
Fishing.Ability.TH.DropRate=\u6389\u5bf6\u7387: [[DARK_RED]]\u9677\u9631: [[YELLOW]]{0} [[GRAY]]\u5e38\u898b: [[YELLOW]]{1} [[GREEN]]\u7f55\u898b: [[YELLOW]]{2}\n[[BLUE]]\u7a00\u6709: [[YELLOW]]{3} [[LIGHT_PURPLE]]\u53f2\u8a69: [[YELLOW]]{4} [[GOLD]]\u50b3\u8aaa: [[YELLOW]]{5} [[AQUA]]\u5275\u7d00\u9304: [[YELLOW]]{6}
|
||||
Fishing.Ability.TH.MagicRate=\u9b54\u6cd5\u7375\u4eba\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Fishing.Ability.Shake=\u6416\u6643\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Fishing.Ability.IceFishing=\u51b0\u91e3: \u5728\u51b0\u4e0a\u91e3\u9b5a
|
||||
Fishing.Ability.FD=\u6f01\u4eba\u4fbf\u7576: [[YELLOW]]\u7b49\u7d1a {0}
|
||||
Fishing.SubSkill.TreasureHunter.Name=\u5bf6\u7269\u7375\u4eba (\u88ab\u52d5\u6280\u80fd)
|
||||
Fishing.SubSkill.TreasureHunter.Description=\u6389\u5230\u96dc\u7269
|
||||
Fishing.SubSkill.MagicHunter.Name=\u9b54\u6cd5\u7375\u4eba
|
||||
@ -102,20 +102,20 @@ Fishing.Ability.TH.MagicFound=[[GRAY]]\u4f60\u611f\u53d7\u5230\u9b54\u529b\u7684
|
||||
Fishing.Ability.TH.Boom=[[GRAY]]\u6536\u7a6b\u6642\u9593!!!
|
||||
Fishing.Ability.TH.Poison=[[GRAY]]\u4ec0\u9ebc\u6771\u897f,\u805e\u8d77\u4f86\u597d\u81ed\u554a...
|
||||
Fishing.SkillName=\u91e3\u9b5a
|
||||
Fishing.Skillup=[[YELLOW]]\u91e3\u9b5a\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Herbalism.Ability.DoubleDropChance=[[RED]]\u96d9\u500d\u6389\u843d\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=[[RED]]\u8fb2\u592b\u79c1\u623f\u83dc: [[YELLOW]]\u7b49\u7d1a {0}
|
||||
Herbalism.Ability.GTe.Length=[[RED]]\u7da0\u5316\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=[[RED]]\u4f60\u9700\u8981\u66f4\u591a\u7a2e\u5b50\u624d\u53ef\u7da0\u5316.
|
||||
Herbalism.Ability.GTh.Chance=[[RED]]\u7da0\u624b\u6307\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=[[RED]]**\u7da0\u624b\u6307\u5931\u6557**
|
||||
Herbalism.Ability.GTh.Stage=[[RED]]\u7da0\u624b\u6307\u968e\u6bb5: [[YELLOW]]\u4f5c\u7269\u6210\u9577\u81f3\u968e\u6bb5 {0}
|
||||
Fishing.Skillup=\u91e3\u9b5a\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Herbalism.Ability.DoubleDropChance=\u96d9\u500d\u6389\u843d\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.FD=\u8fb2\u592b\u79c1\u623f\u83dc: [[YELLOW]]\u7b49\u7d1a {0}
|
||||
Herbalism.Ability.GTe.Length=\u7da0\u5316\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0}s
|
||||
Herbalism.Ability.GTe.NeedMore=\u4f60\u9700\u8981\u66f4\u591a\u7a2e\u5b50\u624d\u53ef\u7da0\u5316.
|
||||
Herbalism.Ability.GTh.Chance=\u7da0\u624b\u6307\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.GTh.Fail=**\u7da0\u624b\u6307\u5931\u6557**
|
||||
Herbalism.Ability.GTh.Stage=\u7da0\u624b\u6307\u968e\u6bb5: [[YELLOW]]\u4f5c\u7269\u6210\u9577\u81f3\u968e\u6bb5 {0}
|
||||
Herbalism.Ability.GTh=[[GREEN]]**\u7da0\u624b\u6307**
|
||||
Herbalism.Ability.HylianLuck=[[RED]]\u6d77\u502b\u7684\u795d\u798f\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.HylianLuck=\u6d77\u502b\u7684\u795d\u798f\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.Lower=[[GRAY]]**\u4f60\u653e\u4e0b\u4e86\u4f60\u7684\u92e4\u982d**
|
||||
Herbalism.Ability.Ready=[[GREEN]]**\u4f60\u8209\u9ad8\u4e86\u4f60\u7684\u92e4\u982d**
|
||||
Herbalism.Ability.ShroomThumb.Chance=[[RED]]\u8611\u83c7\u624b\u89f8\u767c\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=[[RED]]**\u78e8\u83c7\u624b\u4f7f\u7528\u5931\u6557**
|
||||
Herbalism.Ability.ShroomThumb.Chance=\u8611\u83c7\u624b\u89f8\u767c\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Herbalism.Ability.ShroomThumb.Fail=**\u78e8\u83c7\u624b\u4f7f\u7528\u5931\u6557**
|
||||
Herbalism.SubSkill.GreenTerra.Name=\u7da0\u5316 (\u4e3b\u52d5\u6280\u80fd)
|
||||
Herbalism.SubSkill.GreenTerra.Description=\u6563\u64ad\u4e0a\u5e1d\u7684\u6069\u60e0,3\u500d\u6389\u843d\u7269
|
||||
Herbalism.SubSkill.GreenThumb.Name=\u7da0\u624b\u6307 (\u5c0f\u9ea5)
|
||||
@ -135,10 +135,10 @@ Herbalism.Listener=\u8349\u85e5\u5b78:
|
||||
Herbalism.SkillName=\u8349\u85e5\u5b78
|
||||
Herbalism.Skills.GTe.On=[[GREEN]]**\u767c\u52d5\u7da0\u5316**
|
||||
Herbalism.Skills.GTe.Refresh=[[GREEN]]\u4f60\u7684 [[YELLOW]]\u7da0\u5316 [[GREEN]]\u80fd\u529b\u5df2\u53ef\u4f7f\u7528!
|
||||
Herbalism.Skills.GTe.Other.Off=[[RED]]\u7da0\u5316[[GREEN]] \u5373\u5c07\u7ed3\u675f [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.Off=\u7da0\u5316[[GREEN]] \u5373\u5c07\u7ed3\u675f [[YELLOW]]{0}
|
||||
Herbalism.Skills.GTe.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u4f7f\u7528\u4e86 [[RED]]\u7da0\u5316!
|
||||
Herbalism.Skillup=[[YELLOW]]\u8349\u85e5\u5b78\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Mining.Ability.Length=[[RED]]\u8d85\u7d1a\u788e\u77f3\u6a5f\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0}s
|
||||
Herbalism.Skillup=\u8349\u85e5\u5b78\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Mining.Ability.Length=\u8d85\u7d1a\u788e\u77f3\u6a5f\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0}s
|
||||
Mining.Ability.Locked.0=\u9396\u5b9a\u76f4\u5230\u6280\u80fd {0}+ (\u6316\u7926\u7206\u767c)
|
||||
Mining.Ability.Locked.1=\u9396\u5b9a\u76f4\u5230\u6280\u80fd {0}+ (\u5de8\u5927\u7206\u7834)
|
||||
Mining.Ability.Locked.2=\u9396\u5b9a\u76f4\u5230\u6280\u80fd {0}+ (\u7206\u7834\u5c08\u5bb6)
|
||||
@ -154,20 +154,20 @@ Mining.SubSkill.BiggerBombs.Name=\u5de8\u5927\u7206\u7834
|
||||
Mining.SubSkill.BiggerBombs.Description=\u589e\u52a0TNT\u7206\u70b8\u7bc4\u570d
|
||||
Mining.SubSkill.DemolitionsExpertise.Name=\u7206\u7834\u5c08\u5bb6
|
||||
Mining.SubSkill.DemolitionsExpertise.Description=\u6e1b\u5c11\u4f86\u81eaTNT\u7684\u50b7\u5bb3
|
||||
Mining.Effect.Decrease=[[RED]]\u7206\u7834\u5c08\u5bb6\u50b7\u5bb3\u6e1b\u5c11: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=[[RED]]\u96d9\u500d\u6389\u843d\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Mining.Effect.Decrease=\u7206\u7834\u5c08\u5bb6\u50b7\u5bb3\u6e1b\u5c11: [[YELLOW]]{0}
|
||||
Mining.Effect.DropChance=\u96d9\u500d\u6389\u843d\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Mining.Listener=\u6316\u7926:
|
||||
Mining.SkillName=\u6316\u7926
|
||||
Mining.Skills.SuperBreaker.Off=[[RED]]**\u8d85\u7d1a\u788e\u77f3\u6a5f\u5df2\u7ed3\u675f**
|
||||
Mining.Skills.SuperBreaker.Off=**\u8d85\u7d1a\u788e\u77f3\u6a5f\u5df2\u7ed3\u675f**
|
||||
Mining.Skills.SuperBreaker.On=[[GREEN]]**\u8d85\u7d1a\u788e\u77f3\u6a5f\u5df2\u4f7f\u7528**
|
||||
Mining.Skills.SuperBreaker.Other.Off=[[RED]]\u8d85\u7d1a\u788e\u77f3\u6a5f[[GREEN]] \u5df2\u7d93\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.Off=\u8d85\u7d1a\u788e\u77f3\u6a5f[[GREEN]] \u5df2\u7d93\u7ed3\u675f\u4e86 [[YELLOW]]{0}
|
||||
Mining.Skills.SuperBreaker.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u4f7f\u7528\u4e86 [[RED]]\u8d85\u7d1a\u788e\u77f3\u6a5f!
|
||||
Mining.Skills.SuperBreaker.Refresh=[[GREEN]]\u4f60\u7684[[YELLOW]] \u8d85\u7d1a\u788e\u77f3\u6a5f [[GREEN]]\u80fd\u529b\u5df2\u53ef\u518d\u6b21\u4f7f\u7528\uff01
|
||||
Mining.Skillup=[[YELLOW]]\u6316\u7926\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Mining.Skillup=\u6316\u7926\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Mining.Blast.Boom=[[GRAY]]**\u78b0!**
|
||||
Mining.Blast.Effect=+{0} \u7926\u7269\u7522\u91cf, -{1}\u5783\u573e\u7522\u91cf, {2}x \u6389\u843d\u91cf
|
||||
Mining.Blast.Radius.Increase=[[RED]]\u7206\u70b8\u534a\u5f91\u63d0\u5347: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=[[RED]]\u6316\u7926\u7206\u767c: [[YELLOW]] \u6392\u540d {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Radius.Increase=\u7206\u70b8\u534a\u5f91\u63d0\u5347: [[YELLOW]]+{0}
|
||||
Mining.Blast.Rank=\u6316\u7926\u7206\u767c: [[YELLOW]] \u6392\u540d {0}/8 [[GRAY]]({1})
|
||||
Mining.Blast.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u4f7f\u7528\u4e86 [[RED]]\u6316\u7926\u7206\u767c!
|
||||
Mining.Blast.Refresh=[[GREEN]]\u4f60\u7684 [[YELLOW]]\u6316\u7926\u7206\u767c [[GREEN]]\u51b7\u537b\u6642\u9593\u5df2\u7d50\u675f!
|
||||
Repair.SubSkill.Repair.Name=\u4fee\u7406
|
||||
@ -198,33 +198,33 @@ Repair.Skills.AdeptDiamond=[[DARK_RED]]\u4f60\u7684\u6280\u80fd\u7b49\u7d1a\u4e0
|
||||
Repair.Skills.AdeptGold=[[DARK_RED]]\u4f60\u7684\u6280\u80fd\u7b49\u7d1a\u4e0d\u8db3\u4ee5\u4fee\u7406\u9ec4\u91d1\u88dd\u5099!
|
||||
Repair.Skills.AdeptIron=[[DARK_RED]]\u4f60\u7684\u6280\u80fd\u7b49\u7d1a\u4e0d\u8db3\u4ee5\u4fee\u7406\u9435\u88fd\u88dd\u5099!
|
||||
Repair.Skills.AdeptStone=[[DARK_RED]]\u4f60\u7684\u6280\u80fd\u7b49\u7d1a\u4e0d\u8db3\u4ee5\u4fee\u7406\u77f3\u982d\u88dd\u5099!
|
||||
Repair.Skills.Adept=[[RED]]\u4f60\u5fc5\u9808\u9054\u5230\u7b49\u7d1a [[YELLOW]]{0}[[RED]] \u624d\u53ef\u4fee\u7406[[YELLOW]]{1}
|
||||
Repair.Skills.Adept=\u4f60\u5fc5\u9808\u9054\u5230\u7b49\u7d1a [[YELLOW]]{0}[[RED]] \u624d\u53ef\u4fee\u7406[[YELLOW]]{1}
|
||||
Repair.Skills.FeltEasy=[[GRAY]]\u90a3\u770b\u8d77\u4f86\u5f88\u7c21\u55ae.
|
||||
Repair.Skills.FullDurability=[[GRAY]]\u4f60\u7684\u88dd\u5099\u8010\u4e45\u5ea6\u5df2\u6eff!
|
||||
Repair.Skills.SalvageSuccess=[[GRAY]]\u7269\u54c1\u5df2\u56de\u6536!
|
||||
Repair.Skills.NotFullDurability=[[DARK_RED]]\u4f60\u7121\u6cd5\u56de\u6536\u5df2\u53d7\u640d\u7684\u7269\u54c1
|
||||
Repair.Skills.Mastery=[[RED]]\u4fee\u7406\u7cbe\u901a: [[YELLOW]]\u984d\u5916\u56de\u5fa9 {0}% \u8010\u4e45\u5ea6
|
||||
Repair.Skills.Mastery=\u4fee\u7406\u7cbe\u901a: [[YELLOW]]\u984d\u5916\u56de\u5fa9 {0}% \u8010\u4e45\u5ea6
|
||||
Repair.Skills.StackedItems=[[DARK_RED]]\u4f60\u7121\u6cd5\u4fee\u7406\u758a\u52a0\u7684\u7269\u54c1
|
||||
Repair.Skills.Super.Chance=[[RED]]\u8d85\u7d1a\u4fee\u7406\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Repair.Skillup=[[YELLOW]]\u4fee\u7406\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Repair.Skills.Super.Chance=\u8d85\u7d1a\u4fee\u7406\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Repair.Skillup=\u4fee\u7406\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Repair.Pretty.Name=\u4fee\u7406
|
||||
Salvage.Pretty.Name=\u56de\u6536
|
||||
Repair.Arcane.Chance.Downgrade=[[GRAY]]\u9644\u9b54\u964d\u7d1a\u6a5f\u7387: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Chance.Success=[[GRAY]]\u81ea\u52d5\u7784\u6e96\u7684\u6210\u529f\u7387: [[YELLOW]]{0}%
|
||||
Repair.Arcane.Downgrade=[[RED]]\u9019\u4ef6\u7269\u54c1\u7684\u9644\u9b54\u7b49\u7d1a\u5df2\u4e0b\u964d
|
||||
Repair.Arcane.Fail=[[RED]]\u9019\u4ef6\u7269\u54c1\u7684\u9644\u9b54\u5df2\u6d88\u5931!
|
||||
Repair.Arcane.Lost=[[RED]]\u4f60\u7684\u6280\u80fd\u7b49\u7d1a\u4e0d\u8db3\u4ee5\u4fdd\u7559\u9644\u9b54\u5c6c\u6027.
|
||||
Repair.Arcane.Downgrade=\u9019\u4ef6\u7269\u54c1\u7684\u9644\u9b54\u7b49\u7d1a\u5df2\u4e0b\u964d
|
||||
Repair.Arcane.Fail=\u9019\u4ef6\u7269\u54c1\u7684\u9644\u9b54\u5df2\u6d88\u5931!
|
||||
Repair.Arcane.Lost=\u4f60\u7684\u6280\u80fd\u7b49\u7d1a\u4e0d\u8db3\u4ee5\u4fdd\u7559\u9644\u9b54\u5c6c\u6027.
|
||||
Repair.Arcane.Perfect=[[GREEN]]\u4f60\u6210\u529f\u5730\u4fdd\u7559\u4e86\u9019\u4ef6\u7269\u54c1\u7684\u9644\u9b54.
|
||||
Repair.Arcane.Rank=[[RED]]\u79d8\u6cd5\u935b\u9020: [[YELLOW]]\u7b49\u7ea7 {0}/4
|
||||
Repair.Arcane.Rank=\u79d8\u6cd5\u935b\u9020: [[YELLOW]]\u7b49\u7ea7 {0}/4
|
||||
Swords.Ability.Lower=[[GRAY]]**\u4f60\u653e\u4e0b\u4e86\u4f60\u7684\u528d**
|
||||
Swords.Ability.Ready=[[GREEN]]**\u4f60\u63e1\u7dca\u8457\u4f60\u7684\u528d**
|
||||
Swords.Combat.Bleed.Chance=[[RED]]\u653e\u8840\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=[[RED]]\u653e\u8840\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0} \u9031\u671f
|
||||
Swords.Combat.Bleed.Chance=\u653e\u8840\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Swords.Combat.Bleed.Length=\u653e\u8840\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0} \u9031\u671f
|
||||
Swords.Combat.Bleed.Note=[[GRAY]]\u6ce8\u610f: [[YELLOW]]\u6bcf\u5169\u79d2\u6e1b\u4e00\u6ef4\u8840
|
||||
Swords.Combat.Bleeding.Started=[[DARK_RED]] \u4f60\u6b63\u5728\u6d41\u8840!
|
||||
Swords.Combat.Bleeding.Stopped=[[GRAY]]\u653e\u8840\u5df2[[GREEN]]\u505c\u6b62[[GRAY]]!
|
||||
Swords.Combat.Bleeding=[[GREEN]]**\u6575\u4eba\u6b63\u5728\u4e0d\u65b7\u6d41\u8840**
|
||||
Swords.Combat.Counter.Chance=[[RED]]\u53cd\u64ca\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Chance=\u53cd\u64ca\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Swords.Combat.Counter.Hit=[[DARK_RED]]\u4f60\u53cd\u64ca\u4e86\u5c0d\u624b!
|
||||
Swords.Combat.Countered=[[GREEN]]**\u53cd\u5c04\u4e86\u6575\u4eba\u7684\u653b\u64ca**
|
||||
Swords.Combat.SS.Struck=[[DARK_RED]]\u88ab\u5272\u88c2\u65ac\u653b\u64ca\uff01
|
||||
@ -241,10 +241,10 @@ Swords.SkillName=\u528d\u8853
|
||||
Swords.Skills.SS.Off=[[DARK_RED]]\u5272\u88c2\u65ac\u7d50\u675f\u4e86\uff01
|
||||
Swords.Skills.SS.On=[[GREEN]]**\u767c\u52d5\u5272\u88c2\u65ac**
|
||||
Swords.Skills.SS.Refresh=[[GREEN]]\u4f60\u7684 [[YELLOW]]\u5272\u88c2\u65ac [[GREEN]]\u6280\u80fd\u5df2\u53ef\u4f7f\u7528!
|
||||
Swords.Skills.SS.Other.Off=[[RED]]\u5272\u88c2\u65ac[[GREEN]] \u5373\u5c07\u7d50\u675f [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.Off=\u5272\u88c2\u65ac[[GREEN]] \u5373\u5c07\u7d50\u675f [[YELLOW]]{0}
|
||||
Swords.Skills.SS.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u4f7f\u7528\u4e86 [[RED]]\u5272\u88c2\u65ac!
|
||||
Swords.Skillup=[[YELLOW]]\u528d\u8853\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Swords.SS.Length=[[RED]]\u5272\u88c2\u65ac\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0}s
|
||||
Swords.Skillup=\u528d\u8853\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Swords.SS.Length=\u5272\u88c2\u65ac\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0}s
|
||||
Taming.Ability.Bonus.0=\u5371\u6a5f\u610f\u8b58
|
||||
Taming.Ability.Bonus.1=\u72fc\u6703\u907f\u958b\u5371\u96aa
|
||||
Taming.Ability.Bonus.2=\u6bdb\u76ae\u5f37\u5316
|
||||
@ -263,7 +263,7 @@ Taming.Ability.Locked.2=\u9396\u5b9a\u76f4\u5230\u6280\u80fd {0}+ (\u885d\u64ca
|
||||
Taming.Ability.Locked.3=\u9396\u5b9a\u76f4\u5230\u6280\u80fd {0}+ (\u5229\u722a)
|
||||
Taming.Ability.Locked.4=\u9396\u5b9a\u76f4\u5230\u6280\u80fd {0}+ (\u5feb\u9910\u670d\u52d9)
|
||||
Taming.Ability.Locked.5=\u9396\u5b9a\u76f4\u5230\u6280\u80fd {0}+ (\u795e\u72ac)
|
||||
Taming.Combat.Chance.Gore=[[RED]]\u6d41\u8840\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Taming.Combat.Chance.Gore=\u6d41\u8840\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Taming.SubSkill.BeastLore.Name=\u99b4\u7378\u4e4b\u80fd
|
||||
Taming.SubSkill.BeastLore.Description=\u62ff\u8457\u9aa8\u982d\u4e26\u4f7f\u7528\u6ed1\u9f20\u53f3\u9375\u4f86\u78ba\u8a8d\u72fc\u8207\u5c71\u8c93\u7684\u72c0\u6cc1
|
||||
Taming.SubSkill.ShockProof.Name=\u885d\u64ca\u683c\u64cb
|
||||
@ -288,19 +288,19 @@ Taming.SubSkill.ThickFur.Description=\u524a\u6e1b\u706b\u7130\u50b7\u5bb3
|
||||
Taming.Listener.Wolf=[[DARK_GRAY]]\u4f60\u7684\u72fc\u8fc5\u901f\u5730\u56de\u5230\u4e86\u4f60\u7684\u8eab\u908a...
|
||||
Taming.Listener=\u99b4\u7378:
|
||||
Taming.SkillName=\u99b4\u7378
|
||||
Taming.Skillup=[[YELLOW]]\u99b4\u7378\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Taming.Skillup=\u99b4\u7378\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Taming.Summon.Complete=[[GREEN]]\u53ec\u63db\u5b8c\u7562
|
||||
Taming.Summon.Fail.Ocelot=[[RED]]\u4f60\u4e0d\u80fd\u53ec\u63db\u5c71\u8c93\u56e0\u70ba\u4f60\u5df2\u7d93\u53ec\u559a\u592a\u591a\u4e86.
|
||||
Taming.Summon.Fail.Wolf=[[RED]]\u4f60\u4e0d\u80fd\u53ec\u63db\u72fc\u56e0\u70ba\u4f60\u5df2\u7d93\u53ec\u559a\u592a\u591a\u4e86.
|
||||
Taming.Summon.Fail.Horse=[[RED]]\u4f60\u4e0d\u80fd\u53ec\u63db\u99ac\u56e0\u70ba\u4f60\u5df2\u7d93\u53ec\u559a\u592a\u591a\u4e86.
|
||||
Taming.Summon.Fail.Ocelot=\u4f60\u4e0d\u80fd\u53ec\u63db\u5c71\u8c93\u56e0\u70ba\u4f60\u5df2\u7d93\u53ec\u559a\u592a\u591a\u4e86.
|
||||
Taming.Summon.Fail.Wolf=\u4f60\u4e0d\u80fd\u53ec\u63db\u72fc\u56e0\u70ba\u4f60\u5df2\u7d93\u53ec\u559a\u592a\u591a\u4e86.
|
||||
Taming.Summon.Fail.Horse=\u4f60\u4e0d\u80fd\u53ec\u63db\u99ac\u56e0\u70ba\u4f60\u5df2\u7d93\u53ec\u559a\u592a\u591a\u4e86.
|
||||
Taming.Summon.Name.Format={0}s {1}
|
||||
Unarmed.Ability.Berserk.Length=[[RED]]\u72c2\u66b4\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Berserk.Length=\u72c2\u66b4\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0}s
|
||||
Unarmed.Ability.Bonus.0=\u9435\u81c2\u98a8\u683c
|
||||
Unarmed.Ability.Bonus.1=\u589e\u52a0{0}\u50b7\u5bb3
|
||||
Unarmed.Ability.Chance.ArrowDeflect=[[RED]]\u64ca\u843d\u5f13\u7bad\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=[[RED]]\u64ca\u843d\u6b66\u5668\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=[[RED]]\u9435\u722a\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=[[RED]]\u4f60\u7684\u5c0d\u624b\u6709\u9435\u722a!
|
||||
Unarmed.Ability.Chance.ArrowDeflect=\u64ca\u843d\u5f13\u7bad\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.Disarm=\u64ca\u843d\u6b66\u5668\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Unarmed.Ability.Chance.IronGrip=\u9435\u722a\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Unarmed.Ability.IronGrip.Attacker=\u4f60\u7684\u5c0d\u624b\u6709\u9435\u722a!
|
||||
Unarmed.Ability.IronGrip.Defender=[[GREEN]]\u4f60\u7684\u9435\u722a\u4f7f\u4f60\u7684\u6b66\u5668\u514d\u65bc\u88ab\u64ca\u843d!
|
||||
Unarmed.Ability.Lower=[[GRAY]]**\u4f60\u653e\u9b06\u4e86\u4f60\u7684\u62f3\u982d**
|
||||
Unarmed.Ability.Ready=[[GREEN]]**\u4f60\u7dca\u63e1\u8457\u4f60\u7684\u62f3\u982d**
|
||||
@ -316,16 +316,16 @@ Unarmed.SubSkill.IronGrip.Name=\u9435\u722a
|
||||
Unarmed.SubSkill.IronGrip.Description=\u9632\u6b62\u4f60\u7684\u6b66\u5668\u88ab\u64ca\u843d
|
||||
Unarmed.Listener=\u640f\u64ca:
|
||||
Unarmed.SkillName=\u640f\u64ca
|
||||
Unarmed.Skills.Berserk.Off=[[RED]]**\u72c2\u66b4\u5df2\u7ed3\u675f**
|
||||
Unarmed.Skills.Berserk.Off=**\u72c2\u66b4\u5df2\u7ed3\u675f**
|
||||
Unarmed.Skills.Berserk.On=[[GREEN]]**\u767c\u52d5\u72c2\u66b4**
|
||||
Unarmed.Skills.Berserk.Other.Off=[[RED]]\u72c2\u66b4[[GREEN]] \u5373\u5c07\u7ed3\u675f [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.Off=\u72c2\u66b4[[GREEN]] \u5373\u5c07\u7ed3\u675f [[YELLOW]]{0}
|
||||
Unarmed.Skills.Berserk.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u4f7f\u7528\u4e86 [[RED]]\u72c2\u66b4!
|
||||
Unarmed.Skills.Berserk.Refresh=[[GREEN]]\u4f60\u7684 [[YELLOW]]\u72c2\u66b4 [[GREEN]]\u6280\u80fd\u5df2\u53ef\u4f7f\u7528!
|
||||
Unarmed.Skillup=[[YELLOW]]\u640f\u64ca\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Unarmed.Skillup=\u640f\u64ca\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Woodcutting.Ability.0=\u79cb\u98a8\u6383\u843d\u8449
|
||||
Woodcutting.Ability.1=\u6383\u9664\u8449\u5b50
|
||||
Woodcutting.Ability.Chance.DDrop=[[RED]]\u96d9\u500d\u6389\u843d\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=[[RED]]\u4f10\u6728\u5de5\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Chance.DDrop=\u96d9\u500d\u6389\u843d\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Woodcutting.Ability.Length=\u4f10\u6728\u5de5\u6301\u7e8c\u6642\u9593: [[YELLOW]]{0}s
|
||||
Woodcutting.Ability.Locked.0=\u9396\u5b9a\u76f4\u5230\u6280\u80fd {0}+ (\u79cb\u98a8\u6383\u843d\u8449)
|
||||
Woodcutting.SubSkill.TreeFeller.Name=\u4f10\u6728\u5de5(\u6280\u80fd)
|
||||
Woodcutting.SubSkill.TreeFeller.Description=\u7206\u767c\u780d\u6a39
|
||||
@ -335,30 +335,30 @@ Woodcutting.SubSkill.HarvestLumber.Name=\u96d9\u500d\u6389\u843d
|
||||
Woodcutting.SubSkill.HarvestLumber.Description=\u96d9\u500d\u6389\u843d\u7269\u54c1
|
||||
Woodcutting.Listener=\u4f10\u6728:
|
||||
Woodcutting.SkillName=\u4f10\u6728
|
||||
Woodcutting.Skills.TreeFeller.Off=[[RED]]**\u4f10\u6728\u5de5\u5df2\u7ed3\u675f**
|
||||
Woodcutting.Skills.TreeFeller.Off=**\u4f10\u6728\u5de5\u5df2\u7ed3\u675f**
|
||||
Woodcutting.Skills.TreeFeller.On=[[GREEN]]**\u555f\u52d5\u4f10\u6728\u5de5**
|
||||
Woodcutting.Skills.TreeFeller.Refresh=[[GREEN]]\u4f60\u7684 [[YELLOW]]\u4f10\u6728\u5de5 [[GREEN]]\u5df2\u53ef\u4f7f\u7528\uff01
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=[[RED]]\u4f10\u6728\u5de5[[GREEN]] \u5373\u5c07\u7ed3\u675f [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.Off=\u4f10\u6728\u5de5[[GREEN]] \u5373\u5c07\u7ed3\u675f [[YELLOW]]{0}
|
||||
Woodcutting.Skills.TreeFeller.Other.On=[[GREEN]]{0}[[DARK_GREEN]] \u4f7f\u7528\u4e86 [[RED]]\u4f10\u6728\u5de5!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=[[RED]]\u4f60\u7684\u65a7\u982d\u8b8a\u6210\u4e86\u4e00\u5806\u788e\u7247\uff01
|
||||
Woodcutting.Skills.TreeFeller.Threshold=[[RED]]\u9019\u68f5\u6a39\u592a\u5927\u4e86!
|
||||
Woodcutting.Skillup=[[YELLOW]]\u4f10\u6728\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Woodcutting.Skills.TreeFeller.Splinter=\u4f60\u7684\u65a7\u982d\u8b8a\u6210\u4e86\u4e00\u5806\u788e\u7247\uff01
|
||||
Woodcutting.Skills.TreeFeller.Threshold=\u9019\u68f5\u6a39\u592a\u5927\u4e86!
|
||||
Woodcutting.Skillup=\u4f10\u6728\u6280\u80fd\u4e0a\u5347\u4e86 {0}! \u7e3d\u7b49\u7d1a ({1})!
|
||||
Ability.Generic.Refresh=[[GREEN]]**\u6280\u80fd\u51b7\u537b\u5b8c\u7562!**
|
||||
Ability.Generic.Template.Lock=[[GRAY]]{0}
|
||||
Ability.Generic.Template=[[RED]]{0}: [[YELLOW]]{1}
|
||||
Ability.Generic.Template=[[GOLD]]{0}: [[DARK_AQUA]]{1}
|
||||
Combat.ArrowDeflect=[[WHITE]]**\u64ca\u843d\u5f13\u7bad**
|
||||
Combat.BeastLore=[[GREEN]]**\u99b4\u7378\u4e4b\u80fd**
|
||||
Combat.BeastLoreHealth=[[DARK_AQUA]]\u751f\u547d\u503c ([[GREEN]]{0}[[DARK_AQUA]]/{1})
|
||||
Combat.BeastLoreOwner=[[DARK_AQUA]]\u64c1\u6709\u8005 ([[RED]]{0}[[DARK_AQUA]])
|
||||
Combat.Gore=[[GREEN]]**\u6d41\u8840**
|
||||
Combat.StruckByGore=[[RED]]**\u4f60\u958b\u59cb\u6d41\u8840\u4e86**
|
||||
Combat.StruckByGore=**\u4f60\u958b\u59cb\u6d41\u8840\u4e86**
|
||||
Combat.TargetDazed=\u76ee\u6a19\u5df2\u88ab [[DARK_RED]] \u64ca\u6688
|
||||
Combat.TouchedFuzzy=[[DARK_RED]]\u982d\u6688\u76ee\u7729...
|
||||
mcMMO.Description=[[DARK_AQUA]]\u95dc\u65bc [[YELLOW]]mcMMO[[DARK_AQUA]] \u5c08\u6848:,[[GOLD]]mcMMO\u662f\u4e00\u500b[[RED]]\u958b\u653e\u539f\u59cb\u78bc\u7684[[GOLD]] RPG \u6a21\u7d44\u59cb\u65bc2011\u5e74\u4e8c\u6708,[[GOLD]]\u5efa\u7acb\u8005 [[BLUE]]nossr50[[GOLD]]. \u65e8\u5728\u63d0\u4f9b\u4e00\u500b\u9ad8\u54c1\u8ceaRPG\u9ad4\u9a57.,[[DARK_AQUA]]\u5c0f\u6280\u5de7:,[[GOLD]] - [[GREEN]]\u8f38\u5165 [[RED]]/mcmmo help[[GREEN]] \u4ee5\u4e86\u89e3\u6240\u6709\u6307\u4ee4,[[GOLD]] - [[GREEN]]\u8f38\u5165 [[RED]]/\u6280\u80fd\u540d\u7a31 [[GREEN]]\u4ee5\u4e86\u89e3\u6280\u80fd\u7d30\u7bc0,[[DARK_AQUA]]\u958b\u767c\u8005:,[[GOLD]] - [[GREEN]]nossr50 [[BLUE]](\u8d0a\u52a9\u8005),[[GOLD]] - [[GREEN]]GJ [[BLUE]](\u5c08\u6848\u9818\u5c0e\u4eba),[[GOLD]] - [[GREEN]]NuclearW [[BLUE]](\u958b\u767c\u8005),[[GOLD]] - [[GREEN]]bm01 [[BLUE]](\u958b\u767c\u8005),[[GOLD]] - [[GREEN]]TfT_02 [[BLUE]](\u958b\u767c\u8005),[[GOLD]] - [[GREEN]]Glitchfinder [[BLUE]](\u958b\u767c\u8005),[[GOLD]] - [[GREEN]]t00thpick1 [[BLUE]](\u958b\u767c\u8005),[[DARK_AQUA]]\u5be6\u7528\u9023\u7d50:,[[GOLD]] - [[GREEN]]https://github.com/mcMMO-Dev/mcMMO/issues[[GOLD]] \u932f\u8aa4\u56de\u5831,[[GOLD]] - [[GREEN]]#mcmmo @ irc.esper.net[[GOLD]] IRC \u983b\u9053,
|
||||
Commands.addlevels.AwardAll.1=[[GREEN]]\u5728\u5168\u90e8\u7684\u6280\u80fd\u88e1\u4f60\u9084\u5dee {0} \u7b49\u7d1a!
|
||||
Commands.addlevels.AwardAll.2=[[RED]]\u6240\u6709\u6280\u80fd\u7b49\u7d1a\u5df2\u88ab\u8a2d\u5b9a\u70ba {0}.
|
||||
Commands.addlevels.AwardAll.2=\u6240\u6709\u6280\u80fd\u7b49\u7d1a\u5df2\u88ab\u8a2d\u5b9a\u70ba {0}.
|
||||
Commands.addlevels.AwardSkill.1=[[GREEN]]{1}\u6280\u80fd\u5df2\u589e\u52a0{0}\u7b49!
|
||||
Commands.addlevels.AwardSkill.2=[[RED]]{0} \u56e0\u70ba {1} \u800c\u4fee\u6539.
|
||||
Commands.addlevels.AwardSkill.2={0} \u56e0\u70ba {1} \u800c\u4fee\u6539.
|
||||
Commands.addxp.AwardAll=[[GREEN]]\u5728\u5168\u90e8\u7684\u6280\u80fd\u88e1\u4f60\u9084\u5dee {0} \u7d93\u9a57\u503c!
|
||||
Commands.addxp.AwardSkill=[[GREEN]]\u4f60\u5728 {1} \u4e2d\u88ab\u734e\u52f5\u4e86 {0} \u7d93\u9a57\u503c!
|
||||
Commands.Ability.Off=\u6280\u80fd\u4f7f\u7528 [[RED]]\u95dc\u9589
|
||||
@ -366,16 +366,16 @@ Commands.Ability.On=\u6280\u80fd\u4f7f\u7528 [[GREEN]]\u555f\u52d5
|
||||
Commands.Ability.Toggle=\u6280\u80fd\u4f7f\u7528\u5df2\u88ab\u5207\u63db\u70ba [[YELLOW]]{0}
|
||||
Commands.AdminChat.Off=\u7ba1\u7406\u54e1\u804a\u5929\u6a21\u5f0f [[RED]]\u95dc\u9589
|
||||
Commands.AdminChat.On=\u7ba1\u7406\u54e1\u804a\u5929\u6a21\u5f0f [[GREEN]]\u958b\u555f
|
||||
Commands.AdminToggle=[[RED]]- \u5207\u63db\u7ba1\u7406\u54e1\u804a\u5929\u6a21\u5f0f
|
||||
Commands.AdminToggle=- \u5207\u63db\u7ba1\u7406\u54e1\u804a\u5929\u6a21\u5f0f
|
||||
Commands.Chat.Console=*\u63a7\u5236\u53f0*
|
||||
Commands.Cooldowns.Header=[[GOLD]]--= [[GREEN]]mcMMO \u80fd\u529b\u51b7\u537b\u6642\u9593[[GOLD]] =--
|
||||
Commands.Cooldowns.Row.N=\\ [[RED]]{0}[[WHITE]] - [[GOLD]]\u5c1a\u9918 {1} \u79d2
|
||||
Commands.Cooldowns.Row.Y=\\ [[AQUA]]{0}[[WHITE]] - [[DARK_GREEN]] \u5df2\u53ef\u4f7f\u7528!
|
||||
Commands.Database.Cooldown=[[RED]]\u518d\u6b21\u4f7f\u7528\u6b64\u547d\u4ee4\u4e4b\u524d,\u4f60\u5fc5\u9808\u7b49\u4e0a1\u79d2.
|
||||
Commands.Disabled=[[RED]]\u9019\u500b\u6307\u4ee4\u88ab\u7981\u7528\u4e86.
|
||||
Commands.DoesNotExist=[[RED]]\u6b64\u73a9\u5bb6\u4e0d\u5b58\u5728\uff01
|
||||
Commands.GodMode.Disabled=[[YELLOW]]mcMMO \u795e\u4e4b\u6a21\u5f0f\u53d6\u6d88
|
||||
Commands.GodMode.Enabled=[[YELLOW]]mcMMO \u795e\u4e4b\u6a21\u5f0f\u958b\u555f
|
||||
Commands.Database.Cooldown=\u518d\u6b21\u4f7f\u7528\u6b64\u547d\u4ee4\u4e4b\u524d,\u4f60\u5fc5\u9808\u7b49\u4e0a1\u79d2.
|
||||
Commands.Disabled=\u9019\u500b\u6307\u4ee4\u88ab\u7981\u7528\u4e86.
|
||||
Commands.DoesNotExist=\u6b64\u73a9\u5bb6\u4e0d\u5b58\u5728\uff01
|
||||
Commands.GodMode.Disabled=mcMMO \u795e\u4e4b\u6a21\u5f0f\u53d6\u6d88
|
||||
Commands.GodMode.Enabled=mcMMO \u795e\u4e4b\u6a21\u5f0f\u958b\u555f
|
||||
Commands.GodMode.Forbidden=[mcMMO] \u795e\u4e4b\u6a21\u5f0f\u4e0d\u5141\u8a31\u5728\u9019\u4e16\u754c\u958b\u555f (\u8acb\u89c0\u770b\u6b0a\u9650\u8a2d\u5b9a)
|
||||
Commands.GodMode.Toggle=\u795e\u4e4b\u6a21\u5f0f\u5df2\u88ab\u5207\u63db\u70ba [[YELLOW]]{0}
|
||||
Commands.Healthbars.Changed.HEARTS=[mcMMO] \u4f60\u7684\u8840\u689d\u986f\u793a\u6a21\u5f0f\u5df2\u66f4\u6539\u70ba [[RED]]\u611b\u5fc3[[WHITE]].
|
||||
@ -386,83 +386,83 @@ Commands.Inspect=<player> [[RED]]-\u67e5\u770b\u73a9\u5bb6\u8a73\u7d30\u8a0a\u60
|
||||
Commands.Party.Invite.Accepted=[[GREEN]]\u63a5\u53d7\u9080\u8acb\uff0c\u4f60\u52a0\u5165\u4e86\u968a\u4f0d {0}
|
||||
Commands.Invite.Success=[[GREEN]]\u9080\u8acb\u8a0a\u606f\u767c\u9001\u6210\u529f
|
||||
Commands.Leaderboards=<skill> <page> [[RED]]- \u6392\u884c\u699c
|
||||
Commands.mcc.Header=[[RED]]---[][[YELLOW]]mcMMO \u6307\u4ee4[[RED]][]---
|
||||
Commands.mcgod=[[RED]]- \u5207\u63db\u70ba\u795e\u4e4b\u6a21\u5f0f
|
||||
Commands.mchud.Invalid=[[RED]]\u90a3\u4e0d\u662f\u4e00\u500b\u53ef\u7528\u7684HUD\u985e\u578b.
|
||||
Commands.mcc.Header=---[][[YELLOW]]mcMMO \u6307\u4ee4[[RED]][]---
|
||||
Commands.mcgod=- \u5207\u63db\u70ba\u795e\u4e4b\u6a21\u5f0f
|
||||
Commands.mchud.Invalid=\u90a3\u4e0d\u662f\u4e00\u500b\u53ef\u7528\u7684HUD\u985e\u578b.
|
||||
Commands.mcpurge.Success=[[GREEN]]\u6578\u64da\u5df2\u91cd\u7f6e!
|
||||
Commands.mcrank.Heading=[[GOLD]]-=\u500b\u4eba\u6392\u884c=-
|
||||
Commands.mcrank.Overall=[[YELLOW]]\u6574\u9ad4[[GREEN]] - [[GOLD]]\u6392\u884c [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=[[RED]]\u76ee\u6a19: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill=[[YELLOW]]{0}[[GREEN]] - [[GOLD]]\u6392\u540d [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Overall=\u6574\u9ad4[[GREEN]] - [[GOLD]]\u6392\u884c [[WHITE]]#[[GREEN]]{0}
|
||||
Commands.mcrank.Player=\u76ee\u6a19: [[WHITE]]{0}
|
||||
Commands.mcrank.Skill={0}[[GREEN]] - [[GOLD]]\u6392\u540d [[WHITE]]#[[GREEN]]{1}
|
||||
Commands.mcrank.Unranked=[[WHITE]]\u6392\u884c\u699c\u5916
|
||||
Commands.mcrefresh.Success=[[RED]]{0} \u79d2\u5f8c\u51b7\u537b\u6642\u9593\u5b8c\u7562.
|
||||
Commands.mcrefresh.Success={0} \u79d2\u5f8c\u51b7\u537b\u6642\u9593\u5b8c\u7562.
|
||||
Commands.mcremove.Success=[[GREEN]]{0} \u5df2\u6210\u529f\u5f9e\u6578\u64da\u88e1\u79fb\u9664!
|
||||
Commands.mctop.Tip=[[GOLD]]\u5c0f\u6487\u6b65: \u6253 [[RED]]/mcrank[[GOLD]] \u53ef\u4ee5\u89c0\u770b\u4f60\u7684\u6392\u540d!
|
||||
Commands.mmoedit=[player] <skill> <newvalue> [[RED]] - \u7de8\u8f2f\u76ee\u6a19
|
||||
Commands.mmoedit.AllSkills.1=[\u7da0\u8272]\u60a8\u6240\u6709\u7684\u6280\u80fd\u7b49\u7d1a\u88ab\u8a2d\u5b9a\u70ba{0}\uff01
|
||||
Commands.mmoedit.Modified.1=[[GREEN]]\u4f60\u7684 {0} \u7b49\u7d1a\u88ab\u8a2d\u5b9a\u70ba {1}!
|
||||
Commands.mmoedit.Modified.2=[[RED]]{0} \u56e0\u70ba {1} \u800c\u4fee\u6539.
|
||||
Commands.mcconvert.Database.Same=[[RED]]\u4f60\u6b63\u5728\u4f7f\u7528{0}\u8cc7\u6599\u5eab!
|
||||
Commands.mcconvert.Database.InvalidType=[[RED]]{0}\u4e0d\u662f\u4e00\u500b\u6b63\u78ba\u7684\u8cc7\u6599\u5eab\u7a2e\u985e.
|
||||
Commands.mmoedit.Modified.2={0} \u56e0\u70ba {1} \u800c\u4fee\u6539.
|
||||
Commands.mcconvert.Database.Same=\u4f60\u6b63\u5728\u4f7f\u7528{0}\u8cc7\u6599\u5eab!
|
||||
Commands.mcconvert.Database.InvalidType={0}\u4e0d\u662f\u4e00\u500b\u6b63\u78ba\u7684\u8cc7\u6599\u5eab\u7a2e\u985e.
|
||||
Commands.mcconvert.Database.Start=[[GRAY]]\u958b\u59cb\u5f9e{0}\u8f49\u63db\u81f3{1}...
|
||||
Commands.mcconvert.Database.Finish=[[GRAY]]\u8cc7\u6599\u5eab\u9077\u79fb\u5b8c\u6210; {1}\u8cc7\u6599\u5eab\u73fe\u5728\u64c1\u6709{0}\u8cc7\u6599\u5eab\u7684\u6240\u6709\u8cc7\u6599.
|
||||
Commands.mmoshowdb=[[YELLOW]]\u76ee\u524d\u4f7f\u7528\u7684\u8cc7\u6599\u5eab\u662f [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=[[RED]]\u4e0d\u660e\u7684\u516c\u5f0f\u7a2e\u985e! \u6b63\u78ba\u7684\u7a2e\u985e\u70ba: [[GREEN]]LINEAR [[RED]]\u548c [[GREEN]]EXPONENTIAL.
|
||||
Commands.mcconvert.Experience.Same=[[RED]]\u6b63\u5728\u4f7f\u7528{0}\u516c\u5f0f
|
||||
Commands.mmoshowdb=\u76ee\u524d\u4f7f\u7528\u7684\u8cc7\u6599\u5eab\u662f [[GREEN]]{0}
|
||||
Commands.mcconvert.Experience.Invalid=\u4e0d\u660e\u7684\u516c\u5f0f\u7a2e\u985e! \u6b63\u78ba\u7684\u7a2e\u985e\u70ba: [[GREEN]]LINEAR [[RED]]\u548c [[GREEN]]EXPONENTIAL.
|
||||
Commands.mcconvert.Experience.Same=\u6b63\u5728\u4f7f\u7528{0}\u516c\u5f0f
|
||||
Commands.mcconvert.Experience.Start=[[GRAY]]\u958b\u59cb\u5f9e{0}\u8f49\u63db\u5230{1}\u66f2\u7dda
|
||||
Commands.mcconvert.Experience.Finish=[[GRAY]]\u516c\u5f0f\u8f49\u63db\u5b8c\u6210; \u73fe\u5728\u958b\u59cb\u4f7f\u7528{0} XP\u66f2\u7dda.
|
||||
Commands.ModDescription=[[RED]]- \u8acb\u95b1\u8b80\u63d2\u4ef6\u63cf\u8ff0
|
||||
Commands.ModDescription=- \u8acb\u95b1\u8b80\u63d2\u4ef6\u63cf\u8ff0
|
||||
Commands.NoConsole=\u9019\u500b\u6307\u4ee4\u4e0d\u53ef\u4f7f\u7528
|
||||
Commands.Notifications.Off=\u5207\u63db\u80fd\u529b\u901a\u77e5\u70ba [[RED]]\u95dc\u9589
|
||||
Commands.Notifications.On=\u5207\u63db\u80fd\u529b\u901a\u77e5\u70ba [[GREEN]]\u958b\u555f
|
||||
Commands.Offline=[RED]]\u9019\u500b\u6307\u4ee4\u4e26\u4e0d\u9069\u7528\u65bc\u96e2\u7dda\u73a9\u5bb6.
|
||||
Commands.Other=[[GREEN]]--\u5176\u4ed6\u6307\u4ee4--
|
||||
Commands.Party.Header=[[RED]]-----[][[GREEN]]\u968a\u4f0d[[RED]][]-----
|
||||
Commands.Party.Header=-----[][[GREEN]]\u968a\u4f0d[[RED]][]-----
|
||||
Commands.Party.Status=[[DARK_GRAY]]\u540d\u5b57: [[WHITE]]{0} {1}
|
||||
Commands.Party.ShareMode=[[DARK_GRAY]]\u5206\u4eab\u6a21\u5f0f:
|
||||
Commands.Party.ItemShare=[[GRAY]]\u7269\u54c1 [[DARK_AQUA]]({0})
|
||||
Commands.Party.ExpShare=[[GRAY]]\u7d93\u9a57\u503c [[DARK_AQUA]]({0})
|
||||
Commands.Party.ItemShareCategories=[[DARK_GRAY]]\u5171\u4eab\u7269\u54c1: [[GRAY]][[ITALIC]]{0}
|
||||
Commands.Party.MembersNear=[[DARK_GRAY]]\u63a5\u8fd1\u4f60 [[DARK_AQUA]]{0}[[DARK_GRAY]]/[[DARK_AQUA]]{1}
|
||||
Commands.Party.Accept=[[RED]]- \u63a5\u53d7\u968a\u4f0d\u9080\u8acb
|
||||
Commands.Party.Accept=- \u63a5\u53d7\u968a\u4f0d\u9080\u8acb
|
||||
Commands.Party.Chat.Off=\u968a\u4f0d\u804a\u5929\u6a21\u5f0f[[RED]]\u53d6\u6d88
|
||||
Commands.Party.Chat.On=\u968a\u4f0d\u804a\u5929\u6a21\u5f0f [[GREEN]]\u958b\u555f
|
||||
Commands.Party.Commands=[[GREEN]]--\u7d44\u968a\u6307\u4ee4--
|
||||
Commands.Party.Invite.0=[[RED]]\u6ce8\u610f: [[GREEN]]\u4f60\u6536\u5230\u4e86\u4f86\u81ea {1} \u7684\u968a\u4f0d\u9080\u8acb {0}
|
||||
Commands.Party.Invite.1=[[YELLOW]]\u8f38\u5165 [[GREEN]]/party accept[[YELLOW]] \u4f86\u63a5\u53d7\u9080\u8acb
|
||||
Commands.Party.Invite=[[RED]]- \u5df2\u767c\u9001\u968a\u4f0d\u9080\u8acb
|
||||
Commands.Party.Invite.0=\u6ce8\u610f: [[GREEN]]\u4f60\u6536\u5230\u4e86\u4f86\u81ea {1} \u7684\u968a\u4f0d\u9080\u8acb {0}
|
||||
Commands.Party.Invite.1=\u8f38\u5165 [[GREEN]]/party accept[[YELLOW]] \u4f86\u63a5\u53d7\u9080\u8acb
|
||||
Commands.Party.Invite=- \u5df2\u767c\u9001\u968a\u4f0d\u9080\u8acb
|
||||
Commands.Party.Join=[[GRAY]]\u52a0\u5165\u7684\u968a\u4f0d: {0}
|
||||
Commands.Party.Create=[[GRAY]]\u5275\u5efa\u7684\u968a\u4f0d\u540d\u7a31: {0}
|
||||
Commands.Party.Rename=[[GRAY]]\u968a\u4f0d\u540d\u7a31\u5df2\u66f4\u6539\u70ba: [[WHITE]]{0}
|
||||
Commands.Party.SetSharing=[[GRAY]]\u968a\u4f0d {0} \u5206\u4eab\u8a2d\u5b9a\u70ba: [[DARK_AQUA]]{1}
|
||||
Commands.Party.ToggleShareCategory=[[GRAY]]\u968a\u4f0d\u5171\u4eab\u7684\u7269\u54c1[[GOLD]]{0} [[GRAY]] \u5df2\u7d93 [[DARK_AQUA]]{1}
|
||||
Commands.Party.AlreadyExists=[[DARK_RED]]\u5c0d\u4f0d{0} \u5df2\u5b58\u5728!
|
||||
Commands.Party.Kick=[[RED]]\u4f60\u5df2\u88ab {0} \u8e22\u51fa\u968a\u4f0d!
|
||||
Commands.Party.Leave=[[RED]]\u4f60\u96e2\u958b\u4e86\u9019\u652f\u968a\u4f0d
|
||||
Commands.Party.Kick=\u4f60\u5df2\u88ab {0} \u8e22\u51fa\u968a\u4f0d!
|
||||
Commands.Party.Leave=\u4f60\u96e2\u958b\u4e86\u9019\u652f\u968a\u4f0d
|
||||
Commands.Party.Members.Header=[RED]] ----- [] [GREEN]\u6210\u54e1[RED] [] -----
|
||||
Commands.Party.None=[[RED]]\u4f60\u4e0d\u5728\u968a\u4f0d\u4e2d.
|
||||
Commands.Party.Quit=[[RED]]- \u96e2\u958b\u4f60\u73fe\u5728\u7684\u968a\u4f0d
|
||||
Commands.Party.None=\u4f60\u4e0d\u5728\u968a\u4f0d\u4e2d.
|
||||
Commands.Party.Quit=- \u96e2\u958b\u4f60\u73fe\u5728\u7684\u968a\u4f0d
|
||||
Commands.Party.Teleport=<player> [[RED]]- \u50b3\u9001\u5230\u968a\u4f0d\u6210\u54e1\u65c1
|
||||
Commands.Party.Toggle=[[RED]]- \u5207\u63db\u968a\u4f0d\u804a\u5929
|
||||
Commands.Party.1=[[RED]]- \u5275\u5efa\u65b0\u7684\u968a\u4f0d
|
||||
Commands.Party.2=[[RED]]- \u52a0\u5165\u73a9\u5bb6\u7684\u968a\u4f0d\u88e1
|
||||
Commands.Party.Toggle=- \u5207\u63db\u968a\u4f0d\u804a\u5929
|
||||
Commands.Party.1=- \u5275\u5efa\u65b0\u7684\u968a\u4f0d
|
||||
Commands.Party.2=- \u52a0\u5165\u73a9\u5bb6\u7684\u968a\u4f0d\u88e1
|
||||
Commands.ptp.Enabled=\u968a\u4f0d\u50b3\u9001 [[GREEN]]\u5141\u8a31
|
||||
Commands.ptp.Disabled=\u968a\u4f0d\u50b3\u9001 [[RED]]\u4e0d\u5141\u8a31
|
||||
Commands.ptp.NoRequests=[[RED]]\u4f60\u73fe\u5728\u4e0d\u53ef\u4ee5\u50b3\u9001
|
||||
Commands.ptp.NoWorldPermissions=[[RED]] [mcMMO]\u60a8\u6c92\u6709\u6b0a\u9650\u50b3\u9001\u5230\u4e16\u754c{0}.
|
||||
Commands.ptp.Request1=[[YELLOW]]{0} [[GREEN]]\u5df2\u50b3\u9001\u81f3\u4f60\u65c1\u908a.
|
||||
Commands.ptp.NoRequests=\u4f60\u73fe\u5728\u4e0d\u53ef\u4ee5\u50b3\u9001
|
||||
Commands.ptp.NoWorldPermissions= [mcMMO]\u60a8\u6c92\u6709\u6b0a\u9650\u50b3\u9001\u5230\u4e16\u754c{0}.
|
||||
Commands.ptp.Request1={0} [[GREEN]]\u5df2\u50b3\u9001\u81f3\u4f60\u65c1\u908a.
|
||||
Commands.ptp.Request2=[[GREEN]]\u4f60\u50b3\u9001\u7684\u8a71\u8acb\u8f38\u5165[[YELLOW]]/ptp accept. [[GREEN]]\u5728[[RED]]{0} [[GREEN]]\u79d2\u5167\u5fc5\u9808\u5b8c\u6210
|
||||
Commands.ptp.AcceptAny.Enabled=\u968a\u4f0d\u50b3\u9001\u8acb\u6c42\u78ba\u8a8d [[GREEN]]\u555f\u7528
|
||||
Commands.ptp.AcceptAny.Disabled=\u968a\u4f0d\u50b3\u9001\u8acb\u6c42\u78ba\u8a8d[[RED]]\u7981\u7528
|
||||
Commands.ptp.RequestExpired=[[RED]]\u968a\u4f0d\u50b3\u9001\u5df2\u6210\u529f!
|
||||
Commands.PowerLevel.Leaderboard=[[YELLOW]]--mcMMO[[BLUE]] \u6230\u9b25\u529b [[YELLOW]]\u6392\u884c\u699c--
|
||||
Commands.ptp.RequestExpired=\u968a\u4f0d\u50b3\u9001\u5df2\u6210\u529f!
|
||||
Commands.PowerLevel.Leaderboard=--mcMMO[[BLUE]] \u6230\u9b25\u529b [[YELLOW]]\u6392\u884c\u699c--
|
||||
Commands.PowerLevel.Capped=[[DARK_RED]]\u6230\u9b25\u529b: [[GREEN]]{0} [[DARK_RED]]\u6700\u9ad8\u7b49\u7d1a: [[YELLOW]]{1}
|
||||
Commands.PowerLevel=[[DARK_RED]]\u6230\u9b25\u529b: [[GREEN]]{0}
|
||||
Commands.Reset.All=[[GREEN]]\u4f60\u5168\u90e8\u7684\u6280\u80fd\u7b49\u7d1a\u4ee5\u91cd\u7f6e\u6210\u529f.
|
||||
Commands.Reset.Single=[[GREEN]]\u4f60\u7684 {0} \u6280\u80fd\u7b49\u7d1a\u4ee5\u91cd\u7f6e\u6210\u529f.
|
||||
Commands.Reset=[[RED]]\u8a2d\u5b9a\u6280\u80fd\u7b49\u7d1a\u70ba0
|
||||
Commands.Reset=\u8a2d\u5b9a\u6280\u80fd\u7b49\u7d1a\u70ba0
|
||||
Commands.Scoreboard.Clear=[[DARK_AQUA]]\u5df2\u6e05\u9664 mcMMO \u5f97\u5206\u699c.
|
||||
Commands.Scoreboard.NoBoard=[[RED]]mcMMO \u5f97\u5206\u699c\u4e26\u672a\u555f\u7528.
|
||||
Commands.Scoreboard.NoBoard=mcMMO \u5f97\u5206\u699c\u4e26\u672a\u555f\u7528.
|
||||
Commands.Scoreboard.Keep=[[DARK_AQUA]]mcMMO \u5f97\u5206\u699c\u6703\u6301\u7e8c\u986f\u793a\u76f4\u5230\u4f60\u8f38\u5165 [[GREEN]]/mcscoreboard clear[[DARK_AQUA]].
|
||||
Commands.Scoreboard.Timer=[[DARK_AQUA]]mcMMO \u5f97\u5206\u699c\u5c07\u5728 [[GOLD]]{0}[[DARK_AQUA]] \u79d2\u540e\u6e05\u9664.
|
||||
Commands.Scoreboard.Help.0=[[GOLD]] == [[RED]]/mcscoreboard [[GREEN]]\u8aaa\u660e [[GOLD]]==
|
||||
@ -471,16 +471,16 @@ Commands.Scoreboard.Help.2=[[DARK_AQUA]]/mcscoreboard[[AQUA]] keep [[WHITE]] - \
|
||||
Commands.Scoreboard.Help.3=[[DARK_AQUA]]/mcscoreboard[[AQUA]] \u6642\u9593 [n] [[WHITE]] - \u5728 [[LIGHT_PURPLE]]n[[WHITE]] \u79d2\u4e4b\u5f8c\u6e05\u9664 McMMO \u5f97\u5206\u699c
|
||||
Commands.Scoreboard.Tip.Keep=[[GOLD]]\u5c0f\u6280\u5de7: \u7576\u5f97\u5206\u699c\u51fa\u73fe\u6642\u8f38\u5165 [[RED]]/mcscoreboard keep[[GOLD]] \u4f86\u907f\u514d\u5b83\u6d88\u5931.
|
||||
Commands.Scoreboard.Tip.Clear=[[GOLD]]\u5c0f\u6280\u5de7: \u8f38\u5165 [[RED]]/mcscoreboard clear[[GOLD]] \u4f86\u6e05\u9664\u5f97\u5206\u699c.
|
||||
Commands.Skill.Invalid=[[RED]]\u9019\u4e0d\u662f\u4e00\u500b\u6709\u6548\u7684\u6280\u80fd\u540d\u5b57!
|
||||
Commands.Skill.Leaderboard=[[YELLOW]]--mcMMO [[BLUE]]{0}[[YELLOW]] \u6392\u884c\u699c--
|
||||
Commands.SkillInfo=[[RED]]- \u67e5\u770b\u6280\u80fd\u7684\u8a73\u7d30\u8cc7\u8a0a
|
||||
Commands.Skill.Invalid=\u9019\u4e0d\u662f\u4e00\u500b\u6709\u6548\u7684\u6280\u80fd\u540d\u5b57!
|
||||
Commands.Skill.Leaderboard=--mcMMO [[BLUE]]{0}[[YELLOW]] \u6392\u884c\u699c--
|
||||
Commands.SkillInfo=- \u67e5\u770b\u6280\u80fd\u7684\u8a73\u7d30\u8cc7\u8a0a
|
||||
Commands.Stats.Self=\u4f60\u7684\u8a0a\u606f
|
||||
Commands.Stats=[[RED]]- \u67e5\u770b\u4f60\u7684mcMMO\u7d71\u8a08\u8a0a\u606f
|
||||
Commands.ToggleAbility=[[RED]]- \u7528\u6ed1\u9f20\u53f3\u9375\u5207\u63db\u6280\u80fd\u4f7f\u7528\u6a21\u5f0f
|
||||
Commands.Usage.0=[[RED]]\u6b63\u78ba\u7528\u6cd5\u70ba/{0}
|
||||
Commands.Usage.1=[[RED]]\u8acb\u8f38\u5165 /{0} {1}
|
||||
Commands.Usage.2=[[RED]]\u8acb\u8f38\u5165 /{0} {1} {2}
|
||||
Commands.Usage.3=[[RED]]\u8acb\u8f38\u5165 /{0} {1} {2} {3}
|
||||
Commands.Stats=- \u67e5\u770b\u4f60\u7684mcMMO\u7d71\u8a08\u8a0a\u606f
|
||||
Commands.ToggleAbility=- \u7528\u6ed1\u9f20\u53f3\u9375\u5207\u63db\u6280\u80fd\u4f7f\u7528\u6a21\u5f0f
|
||||
Commands.Usage.0=\u6b63\u78ba\u7528\u6cd5\u70ba/{0}
|
||||
Commands.Usage.1=\u8acb\u8f38\u5165 /{0} {1}
|
||||
Commands.Usage.2=\u8acb\u8f38\u5165 /{0} {1} {2}
|
||||
Commands.Usage.3=\u8acb\u8f38\u5165 /{0} {1} {2} {3}
|
||||
Commands.Usage.FullClassName=\u985e\u5225\u540d\u7a31
|
||||
Commands.Usage.Level=\u7b49\u7d1a
|
||||
Commands.Usage.Message=\u8a0a\u606f
|
||||
@ -491,51 +491,51 @@ Commands.Usage.Player=\u73a9\u5bb6
|
||||
Commands.Usage.Rate=\u6a5f\u7387
|
||||
Commands.Usage.Skill=\u6280\u80fd
|
||||
Commands.Usage.XP=\u7d93\u9a57\u503c
|
||||
mcMMO.NoInvites=[[RED]]\u4f60\u6c92\u6709\u6536\u5230\u4efb\u4f55\u968a\u4f0d\u9080\u8acb
|
||||
mcMMO.NoInvites=\u4f60\u6c92\u6709\u6536\u5230\u4efb\u4f55\u968a\u4f0d\u9080\u8acb
|
||||
mcMMO.NoPermission=[[DARK_RED]]\u6b0a\u9650\u4e0d\u8db3
|
||||
mcMMO.NoSkillNote=[[DARK_GRAY]]\u5982\u679c\u4f60\u7121\u6cd5\u4f7f\u7528\u90a3\u4e9b\u6280\u80fd\u5c31\u4e0d\u6703\u51fa\u73fe\u5728\u9019\u88e1
|
||||
Party.Forbidden=[mcMMO] \u968a\u4f0d\u529f\u80fd\u4e0d\u5141\u8a31\u5728\u9019\u4e16\u754c\u958b\u555f (\u8acb\u89c0\u770b\u6b0a\u9650\u8a2d\u5b9a)
|
||||
Party.Help.0=[[RED]]\u6b63\u78ba\u7528\u6cd5\u70ba[[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=[[RED]]\u8981\u5275\u5efa\u4e00\u500b\u968a\u4f0d\uff0c\u8acb\u4f7f\u7528[[DARK_AQUA]] {0} <name> [password].
|
||||
Party.Help.2=[[RED]]\u66f4\u591a\u8cc7\u8a0a\u8acb\u8aee\u8a62[[DARK_AQUA]]{0}
|
||||
Party.Help.3=[[RED]]\u4f7f\u7528 [[DARK_AQUA]]{0} <player> [password] [[RED]]\u4f86\u52a0\u5165\u6216\u4f7f\u7528 [[DARK_AQUA]]{1} [[RED]]\u4f86\u96e2\u958b
|
||||
Party.Help.4=[[RED]]\u6b32\u9396\u5b9a\u6216\u89e3\u9396\u4f60\u7684\u968a\u4f0d\uff0c\u4f7f\u7528[[DARK_AQUA]] {0}
|
||||
Party.Help.5=[[RED]]\u6b32\u4f7f\u7528\u5bc6\u78bc\u4fdd\u8b77\u4f60\u7684\u968a\u4f0d\uff0c\u8acb\u4f7f\u7528[[DARK_AQUA]] {0}<password>
|
||||
Party.Help.6=[[RED]]\u8981\u5f9e\u968a\u4f0d\u4e2d\u8e22\u6389\u6210\u54e1\uff0c\u4f7f\u7528[[DARK_AQUA]] {0} <player>
|
||||
Party.Help.7=[[RED]]\u8981\u8f49\u79fb\u4f60\u7684\u968a\u4f0d\u6240\u6709\u6b0a\uff0c\u4f7f\u7528[[DARK_AQUA]] {0} <player>
|
||||
Party.Help.8=[[RED]]\u8981\u89e3\u6563\u968a\u4f0d\uff0c\u4f7f\u7528[[DARK_AQUA]] {0}
|
||||
Party.Help.9=[[RED]]\u4f7f\u7528 [[DARK_AQUA]]{0} [[RED]]\u4f86\u548c\u968a\u54e1\u5206\u4eab\u7269\u54c1
|
||||
Party.Help.10=[[RED]]\u4f7f\u7528 [[DARK_AQUA]]{0} [[RED]]\u4f86\u555f\u7528\u548c\u968a\u54e1\u5206\u4eab\u7d93\u9a57
|
||||
Party.Help.0=\u6b63\u78ba\u7528\u6cd5\u70ba[[DARK_AQUA]]{0} <player> [password].
|
||||
Party.Help.1=\u8981\u5275\u5efa\u4e00\u500b\u968a\u4f0d\uff0c\u8acb\u4f7f\u7528[[DARK_AQUA]] {0} <name> [password].
|
||||
Party.Help.2=\u66f4\u591a\u8cc7\u8a0a\u8acb\u8aee\u8a62[[DARK_AQUA]]{0}
|
||||
Party.Help.3=\u4f7f\u7528 [[DARK_AQUA]]{0} <player> [password] [[RED]]\u4f86\u52a0\u5165\u6216\u4f7f\u7528 [[DARK_AQUA]]{1} [[RED]]\u4f86\u96e2\u958b
|
||||
Party.Help.4=\u6b32\u9396\u5b9a\u6216\u89e3\u9396\u4f60\u7684\u968a\u4f0d\uff0c\u4f7f\u7528[[DARK_AQUA]] {0}
|
||||
Party.Help.5=\u6b32\u4f7f\u7528\u5bc6\u78bc\u4fdd\u8b77\u4f60\u7684\u968a\u4f0d\uff0c\u8acb\u4f7f\u7528[[DARK_AQUA]] {0}<password>
|
||||
Party.Help.6=\u8981\u5f9e\u968a\u4f0d\u4e2d\u8e22\u6389\u6210\u54e1\uff0c\u4f7f\u7528[[DARK_AQUA]] {0} <player>
|
||||
Party.Help.7=\u8981\u8f49\u79fb\u4f60\u7684\u968a\u4f0d\u6240\u6709\u6b0a\uff0c\u4f7f\u7528[[DARK_AQUA]] {0} <player>
|
||||
Party.Help.8=\u8981\u89e3\u6563\u968a\u4f0d\uff0c\u4f7f\u7528[[DARK_AQUA]] {0}
|
||||
Party.Help.9=\u4f7f\u7528 [[DARK_AQUA]]{0} [[RED]]\u4f86\u548c\u968a\u54e1\u5206\u4eab\u7269\u54c1
|
||||
Party.Help.10=\u4f7f\u7528 [[DARK_AQUA]]{0} [[RED]]\u4f86\u555f\u7528\u548c\u968a\u54e1\u5206\u4eab\u7d93\u9a57
|
||||
Party.InformedOnJoin={0} [[GREEN]]\u52a0\u5165\u4e86\u4f60\u7684\u968a\u4f0d
|
||||
Party.InformedOnQuit={0} [[GREEN]]\u96e2\u958b\u4e86\u4f60\u7684\u968a\u4f0d
|
||||
Party.InformedOnNameChange=[[GOLD]]{0} [[GREEN]]\u5c07\u968a\u4f0d\u540d\u7a31\u8a2d\u5b9a\u70ba [[WHITE]]{1}
|
||||
Party.InvalidName=[[DARK_RED]]\u90a3\u4e0d\u662f\u4e00\u500b\u6709\u6548\u7684\u968a\u4f0d\u540d\u7a31.
|
||||
Party.Invite.Self=[[RED]]\u4f60\u4e0d\u80fd\u9080\u8acb\u81ea\u5df1\uff01
|
||||
Party.IsLocked=[[RED]]\u9019\u500b\u968a\u4f0d\u5df2\u7d93\u9396\u5b9a\u4e86!
|
||||
Party.IsntLocked=[[RED]]\u9019\u500b\u968a\u4f0d\u4e26\u6c92\u6709\u9396\u5b9a!
|
||||
Party.Locked=[[RED]]\u9019\u500b\u968a\u4f0d\u5df2\u9396\u5b9a!\u53ea\u6709\u968a\u9577\u53ef\u4ee5\u9080\u8acb!
|
||||
Party.Invite.Self=\u4f60\u4e0d\u80fd\u9080\u8acb\u81ea\u5df1\uff01
|
||||
Party.IsLocked=\u9019\u500b\u968a\u4f0d\u5df2\u7d93\u9396\u5b9a\u4e86!
|
||||
Party.IsntLocked=\u9019\u500b\u968a\u4f0d\u4e26\u6c92\u6709\u9396\u5b9a!
|
||||
Party.Locked=\u9019\u500b\u968a\u4f0d\u5df2\u9396\u5b9a!\u53ea\u6709\u968a\u9577\u53ef\u4ee5\u9080\u8acb!
|
||||
Party.NotInYourParty=[[DARK_RED]]{0} \u4f60\u4e0d\u5728\u4f60\u7684\u5718\u968a
|
||||
Party.NotOwner=[[DARK_RED]]\u4f60\u4e26\u975e\u968a\u9577.
|
||||
Party.Owner.New=[[GREEN]]{0} \u6210\u70ba\u65b0\u968a\u9577.
|
||||
Party.Owner.NotLeader=[[DARK_RED]]\u56e0\u9592\u7f6e\u904e\u4e45,\u968a\u9577\u81ea\u52d5\u8f49\u8b93.
|
||||
Party.Owner.Player=[[GREEN]]\u4f60\u6210\u70ba\u4e86\u968a\u9577.
|
||||
Party.Password.None=[[RED]]\u9019\u500b\u968a\u4f0d\u6709\u5bc6\u78bc\u4fdd\u8b77. \u8acb\u63d0\u4f9b\u5bc6\u78bc\u4f86\u52a0\u5165.
|
||||
Party.Password.Incorrect=[[RED]]\u968a\u4f0d\u5bc6\u78bc\u932f\u8aa4.
|
||||
Party.Password.None=\u9019\u500b\u968a\u4f0d\u6709\u5bc6\u78bc\u4fdd\u8b77. \u8acb\u63d0\u4f9b\u5bc6\u78bc\u4f86\u52a0\u5165.
|
||||
Party.Password.Incorrect=\u968a\u4f0d\u5bc6\u78bc\u932f\u8aa4.
|
||||
Party.Password.Set=[[GREEN]]\u968a\u4f0d\u5bc6\u78bc\u8a2d\u5b9a\u70ba {0}
|
||||
Party.Password.Removed=[[GREEN]]\u968a\u4f0d\u5bc6\u78bc\u5df2\u522a\u9664.
|
||||
Party.Player.Invalid=[[RED]]\u6b64\u73a9\u5bb6\u4e0d\u5b58\u5728
|
||||
Party.Player.Invalid=\u6b64\u73a9\u5bb6\u4e0d\u5b58\u5728
|
||||
Party.NotOnline=[[DARK_RED]]{0} \u4e26\u4e0d\u5728\u7dda\u4e0a!
|
||||
Party.Player.InSameParty=[[RED]]{0} \u5df2\u7d93\u5728\u4f60\u968a\u4f0d\u88e1\u4e86!
|
||||
Party.Player.InSameParty={0} \u5df2\u7d93\u5728\u4f60\u968a\u4f0d\u88e1\u4e86!
|
||||
Party.PlayerNotInParty=[[DARK_RED]]{0} \u5df2\u4e0d\u5728\u4f60\u7684\u5718\u968a
|
||||
Party.Specify=[[RED]]\u4f60\u5fc5\u9808\u6307\u5b9a\u4e00\u500b\u968a\u4f0d.
|
||||
Party.Teleport.Dead=[[RED]]\u4f60\u4e0d\u80fd\u50b3\u9001\u81f3\u6b7b\u4ea1\u7684\u73a9\u5bb6\u65c1
|
||||
Party.Teleport.Hurt=[[RED]]\u4f60\u5728{0}\u79d2\u524d\u88ab\u653b\u64ca\u6240\u4ee5\u7121\u6cd5\u50b3\u9001.
|
||||
Party.Specify=\u4f60\u5fc5\u9808\u6307\u5b9a\u4e00\u500b\u968a\u4f0d.
|
||||
Party.Teleport.Dead=\u4f60\u4e0d\u80fd\u50b3\u9001\u81f3\u6b7b\u4ea1\u7684\u73a9\u5bb6\u65c1
|
||||
Party.Teleport.Hurt=\u4f60\u5728{0}\u79d2\u524d\u88ab\u653b\u64ca\u6240\u4ee5\u7121\u6cd5\u50b3\u9001.
|
||||
Party.Teleport.Player=[[GREEN]]\u4f60\u5df2\u7d93\u50b3\u9001\u5230 {0}.
|
||||
Party.Teleport.Self=[[RED]]\u4f60\u7121\u6cd5\u50b3\u9001\u5230\u4f60\u81ea\u5df1\u8eab\u65c1!
|
||||
Party.Teleport.Self=\u4f60\u7121\u6cd5\u50b3\u9001\u5230\u4f60\u81ea\u5df1\u8eab\u65c1!
|
||||
Party.Teleport.Target=[[GREEN]]{0} \u5df2\u7d93\u50b3\u9001\u5230\u4f60\u8eab\u908a.
|
||||
Party.Teleport.Disabled=[[RED]]{0} \u4e0d\u5141\u8a31\u968a\u4f0d\u50b3\u9001.
|
||||
Party.Rename.Same=[[RED]] {0}\u4f60\u7684\u968a\u4f0d\u5df2\u7d93\u662f\u9019\u500b\u540d\u5b57\u4e86!
|
||||
Party.Join.Self=[[RED]]\u4f60\u7121\u6cd5\u52a0\u5165\u81ea\u5df1!
|
||||
Party.Teleport.Disabled={0} \u4e0d\u5141\u8a31\u968a\u4f0d\u50b3\u9001.
|
||||
Party.Rename.Same= {0}\u4f60\u7684\u968a\u4f0d\u5df2\u7d93\u662f\u9019\u500b\u540d\u5b57\u4e86!
|
||||
Party.Join.Self=\u4f60\u7121\u6cd5\u52a0\u5165\u81ea\u5df1!
|
||||
Party.Unlocked=[[GRAY]]\u968a\u4f0d\u5df2\u89e3\u9396!
|
||||
Party.Disband=[[GRAY]]\u968a\u4f0d\u5df2\u89e3\u6563
|
||||
Party.Status.Locked=[[DARK_RED]](\u53ea\u53ef\u9080\u8acb)
|
||||
@ -545,8 +545,8 @@ Party.ShareType.Item=\u7269\u54c1
|
||||
Party.ShareMode.None=\u7121
|
||||
Party.ShareMode.Equal=\u5e73\u5206
|
||||
Party.ShareMode.Random=\u96a8\u6a5f
|
||||
Party.XpShare.Disabled=[[RED]]\u968a\u4f0d\u7d93\u9a57\u5171\u4eab\u5df2\u505c\u7528.
|
||||
Party.ItemShare.Disabled=[[RED]]\u968a\u4f0d\u7684\u7269\u54c1\u5206\u4eab\u95dc\u9589.
|
||||
Party.XpShare.Disabled=\u968a\u4f0d\u7d93\u9a57\u5171\u4eab\u5df2\u505c\u7528.
|
||||
Party.ItemShare.Disabled=\u968a\u4f0d\u7684\u7269\u54c1\u5206\u4eab\u95dc\u9589.
|
||||
Party.ItemShare.Category.Loot=\u62fe\u53d6
|
||||
Party.ItemShare.Category.Mining=\u6316\u7926
|
||||
Party.ItemShare.Category.Herbalism=\u8349\u85e5\u5b78
|
||||
@ -568,11 +568,11 @@ Commands.XPGain.Woodcutting=\u780d\u6a39
|
||||
Commands.XPGain=[[DARK_GRAY]]\u7372\u5f97\u7d93\u9a57\u503c:[[WHITE]]{0}
|
||||
Commands.xplock.locked=[[GOLD]]\u4f60\u7684\u7d93\u9a57\u503c\u9396\u5b9a\u5728 {0}!
|
||||
Commands.xplock.unlocked=[[GOLD]]\u4f60\u7684\u7d93\u9a57\u503c\u73fe\u5728 [[GREEN]]\u89e3\u9664\u9396\u5b9a\u4e86[[GOLD]]!
|
||||
Commands.xprate.modified=[[RED]]\u7d93\u9a57\u503c\u500d\u6578\u5df2\u88ab\u8a2d\u5b9a\u70ba {0}
|
||||
Commands.xprate.over=[[RED]]mcMMO \u7d93\u9a57\u52a0\u500d\u7ed3\u675f!!
|
||||
Commands.xprate.proper.0=[[RED]]\u60f3\u4fee\u6539\u7d93\u9a57\u503c\u7372\u5f97\u7387\u8acb\u8f38\u5165 /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=[[RED]]\u60f3\u628a\u7d93\u9a57\u503c\u7372\u5f97\u7387\u8abf\u70ba\u9810\u8a2d\u503c\u8acb\u8f38\u5165 /xprate reset
|
||||
Commands.xprate.proper.2=[[RED]]\u8acb\u8f38\u5165 true \u6216 false \u4f86\u8868\u793a\u9019\u662f\u4e00\u500b\u7d93\u9a57\u4e8b\u4ef6
|
||||
Commands.xprate.modified=\u7d93\u9a57\u503c\u500d\u6578\u5df2\u88ab\u8a2d\u5b9a\u70ba {0}
|
||||
Commands.xprate.over=mcMMO \u7d93\u9a57\u52a0\u500d\u7ed3\u675f!!
|
||||
Commands.xprate.proper.0=\u60f3\u4fee\u6539\u7d93\u9a57\u503c\u7372\u5f97\u7387\u8acb\u8f38\u5165 /xprate <integer> <true/false>
|
||||
Commands.xprate.proper.1=\u60f3\u628a\u7d93\u9a57\u503c\u7372\u5f97\u7387\u8abf\u70ba\u9810\u8a2d\u503c\u8acb\u8f38\u5165 /xprate reset
|
||||
Commands.xprate.proper.2=\u8acb\u8f38\u5165 true \u6216 false \u4f86\u8868\u793a\u9019\u662f\u4e00\u500b\u7d93\u9a57\u4e8b\u4ef6
|
||||
Commands.xprate.started.0=[[GOLD]] mcMMO \u7d93\u9a57\u52a0\u500d\u6642\u6bb5\u958b\u59cb!
|
||||
Commands.xprate.started.1=[[GOLD]]mcMMO \u7d93\u9a57\u503c\u73fe\u5728\u52a0\u500d {0}x!
|
||||
XPRate.Event=[[GOLD]]mcMMO\u73fe\u6b63\u8655\u65bc\u7d93\u9a57\u503c\u52a0\u500d\u968e\u6bb5!\u7d93\u9a57\u503c\u6bd4\u4f8b\u70ba{0}!
|
||||
@ -585,7 +585,7 @@ Guides.Available=[[GRAY]] \u95dc\u65bc{0}\u7684\u8aaa\u660e - \u8f38\u5165 /{1}
|
||||
Guides.Header=[[GOLD]]-=[[GREEN]]{0} \u6307\u5357[[GOLD]]=-
|
||||
Guides.Page.Invalid=\u4e0d\u5b58\u5728\u7684\u9801\u6578
|
||||
Guides.Page.OutOfRange=\u9019\u9801\u78bc\u4e0d\u5b58\u5728,\u7e3d\u5171\u53ea\u6709{0} \u9801.
|
||||
Guides.Usage=[[RED]]\u8acb\u8f38\u5165 /{0}
|
||||
Guides.Usage=\u8acb\u8f38\u5165 /{0}
|
||||
Guides.Acrobatics.Section.0=[DARK_AQUA]]\u95dc\u65bc\u96dc\u6280:\n[[YELLOW]]\u96dc\u6280\u53ef\u4ee5\u8b93\u4f60\u5728MMO\u88e1\u73a9\u5f97\u5f88\u512a\u96c5.\n[[YELLOW]]\u5b83\u53ef\u4ee5\u8b93\u4f60\u5728\u6230\u9b25\u4e2d\u53ca\u74b0\u5883\u4e2d\u53d6\u5f97\u512a\u52e2.\n\n[[DARK_AQUA]]\u7d93\u9a57\u5982\u4f55\u7372\u53d6:\n[[YELLOW]]\u5728\u6230\u9b25\u4e2d\u9583\u8eb2\u653b\u64ca\u6216\u5f9e\u9ad8\u8655\u589c\u843d\u5c07\n[[YELLOW]]\u53ef\u7372\u5f97\u7d93\u9a57.
|
||||
Guides.Acrobatics.Section.1=[[DARK_AQUA]]\u4ec0\u9ebc\u662f\u7ffb\u6efe?\n[[YELLOW]]\u4f60\u6709\u4e00\u5b9a\u7684\u6a5f\u7387\u53ef\u4ee5\u6e1b\u514d\u5f9e\u9ad8\u8655\u589c\u843d\n[[YELLOW]]\u7684\u50b7\u5bb3. \u4f60\u53ef\u4ee5\u6309\u4f4f\u6f5b\u884c\u9375(\u9810\u8a2dshift)\n[[YELLOW]]\u4f86\u5f97\u5230\u96d9\u500d\u7684\u7ffb\u6efe\u6a5f\u7387.\n[[YELLOW]]\u9019\u5c07\u89f8\u767c\u5b8c\u7f8e\u8457\u9678\u800c\u4e0d\u53ea\u662f\u55ae\u7d14\u7684\u7ffb\u6efe.\n[[YELLOW]]\u5b8c\u7f8e\u8457\u9678\u6548\u679c\u8207\u7ffb\u6efe\u985e\u4f3c,\u4f46\u6709\u5169\u500d\n[[YELLOW]]\u7684\u89f8\u767c\u6a5f\u7387\u4e14\u53ef\u6e1b\u514d\u66f4\u591a\u50b7\u5bb3.\n[[YELLOW]]\u7ffb\u6efe\u6a5f\u7387\u95dc\u4fc2\u5230\u4f60\u7684\u96dc\u6280\u7b49\u7d1a.
|
||||
Guides.Acrobatics.Section.2=[[DARK_AQUA]]\u4ec0\u9ebc\u662f\u8ff4\u907f?\n[YELLOW]]\u8ff4\u907f\u662f\u6709\u6a5f\u7387\u6e1b \u514d\u5728\u6230\u9b25\u4e2d\n[[YELLOW]]\u6575\u4eba\u5c0d\u4f60\u7684\u50b7\u5bb3.\n[[YELLOW]]\u9019\u6a5f\u7387\u95dc\u4fc2\u5230\u4f60\u7684\u96dc\u6280\u7b49\u7d1a.
|
||||
@ -656,27 +656,27 @@ Guides.Woodcutting.Section.0=[[DARK_AQUA]]\u95dc\u65bc\u4f10\u6728:\n[[YELLOW]]
|
||||
Guides.Woodcutting.Section.1=[[DARK_AQUA]]\u4ec0\u9ebc\u662f\u4f10\u6728\u5de5?\n[[YELLOW]]\u4f10\u6728\u5de5\u662f\u4e3b\u52d5\u6280\u80fd,\u6301\u6709\u65a7\u982d\u6642\u9ede\u53f3\u9375\n[[YELLOW]]\u53ef\u4ee5\u767c\u52d5.\u5c07\u5c0e\u81f4\u6574\u68f5\u6a39\u6728\u76f4\u63a5\u7834\u58de,\n[[YELLOW]]\u6240\u6709\u679d\u8449\u90fd\u5c07\u6389\u843d.
|
||||
Guides.Woodcutting.Section.2=[[DARK_AQUA]]\u4ec0\u9ebc\u662f\u79cb\u98a8\u6383\u843d\u8449?\n[[YELLOW]]\u79cb\u98a8\u6383\u843d\u8449\u662f\u4e00\u500b\u88ab\u52d5\u6280\u80fd,\n[[YELLOW]]\u7576\u4f60\u7528\u65a7\u982d\u7834\u58de\u6a39\u8449\u6642,\u6a39\u8449\u5c07\u76f4\u63a5\u6467\u6bc0.\n[[YELLOW]]\u9019\u500b\u6280\u80fd\u9810\u8a2d\u5728100\u7b49\u958b\u653e.
|
||||
Guides.Woodcutting.Section.3=[[DARK_AQUA]]\u4ec0\u9ebc\u662f\u96d9\u500d\u6389\u843d?\n[[YELLOW]]\u9019\u500b\u88ab\u52d5\u6280\u80fd\u53ef\u4ee5\u8b93\u4f60\u6709\u6a5f\u7387\u5728\u4f10\u6728\n[[YELLOW]]\u6642\u6a39\u6728\u6389\u843d\u66f4\u591a\u539f\u6728.
|
||||
Inspect.Offline=[[RED]]\u4f60\u6c92\u6709\u67e5\u8a62\u96e2\u7dda\u73a9\u5bb6\u8a0a\u606f\u7684\u6b0a\u9650!
|
||||
Inspect.Offline=\u4f60\u6c92\u6709\u67e5\u8a62\u96e2\u7dda\u73a9\u5bb6\u8a0a\u606f\u7684\u6b0a\u9650!
|
||||
Inspect.OfflineStats=\u96e2\u7dda\u73a9\u5bb6\u7684 [mcMMO] \u7d71\u8a08\u8a0a\u606f [[YELLOW]]{0}
|
||||
Inspect.Stats=[[GREEN]][mcMMO] \u7684\u7d71\u8a08\u8a0a\u606f [[YELLOW]]{0}
|
||||
Inspect.TooFar=[[RED]]\u56e0\u8ddd\u96e2\u592a\u9060\u7121\u6cd5\u67e5\u770b\u90a3\u4f4d\u73a9\u5bb6!
|
||||
Inspect.TooFar=\u56e0\u8ddd\u96e2\u592a\u9060\u7121\u6cd5\u67e5\u770b\u90a3\u4f4d\u73a9\u5bb6!
|
||||
Item.ChimaeraWing.Fail=**\u5947\u7f8e\u62c9\u4e4b\u7ffc\u4f7f\u7528\u5931\u6557\u4e86!**
|
||||
Item.ChimaeraWing.Pass=**\u5947\u7f8e\u62c9\u4e4b\u7ffc**
|
||||
Item.ChimaeraWing.Name=\u5947\u7f8e\u62c9\u4e4b\u7ffc
|
||||
Item.ChimaeraWing.Lore=[[GRAY]]\u50b3\u9001\u4f60\u5230\u4f60\u7684\u5e8a\u908a.
|
||||
Item.Generic.Wait=[[RED]]\u4f60\u5fc5\u9808\u7b49\u5f85\u76f4\u5230\u53ef\u4ee5\u518d\u6b21\u4f7f\u7528! [[YELLOW]]({0}s)
|
||||
Item.Generic.Wait=\u4f60\u5fc5\u9808\u7b49\u5f85\u76f4\u5230\u53ef\u4ee5\u518d\u6b21\u4f7f\u7528! [[YELLOW]]({0}s)
|
||||
Item.Injured.Wait=\u4f60\u904e\u5ea6\u75b2\u52de\u5fc5\u9808\u7b49\u5f85\u4e00\u6bb5\u6642\u9593\u5f8c\u624d\u53ef\u4f7f\u7528. [[YELLOW]]({0}s)
|
||||
Teleport.Commencing=[[GRAY]]\u5373\u5c07\u5728 [[GOLD]]({0}) [[GRAY]]\u79d2\u5f8c\u50b3\u9001, \u8acb\u4e0d\u8981\u4e82\u52d5...
|
||||
Teleport.Cancelled=[[DARK_RED]]\u53d6\u6d88\u50b3\u9001!
|
||||
Skills.Child=[[GOLD]](\u5b50\u6280\u80fd)
|
||||
Skills.Disarmed=[[DARK_RED]]\u4f60\u7684\u6b66\u5668\u88ab\u64ca\u843d!
|
||||
Skills.Header=[[RED]]-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.Header=-----[][[GREEN]]{0}[[RED]][]-----
|
||||
Skills.NeedMore=[[DARK_RED]]\u4f60\u9700\u8981\u66f4\u591a[[GRAY]]{0}
|
||||
Skills.Parents=\u524d\u7f6e
|
||||
Skills.Stats=[[YELLOW]]{0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats=[[YELLOW]]{0}[[GREEN]]{1}
|
||||
Skills.TooTired=[[RED]]\u6b64\u6280\u80fd\u6b63\u8655\u65bc\u51b7\u537b\u6642\u9593. [[YELLOW]]({0}s)
|
||||
Skills.Cancelled=[[RED]]{0} \u53d6\u6d88!
|
||||
Skills.Stats={0}[[GREEN]]{1}[[DARK_AQUA]] XP([[GRAY]]{2}[[DARK_AQUA]]/[[GRAY]]{3}[[DARK_AQUA]])
|
||||
Skills.ChildStats={0}[[GREEN]]{1}
|
||||
Skills.TooTired=\u6b64\u6280\u80fd\u6b63\u8655\u65bc\u51b7\u537b\u6642\u9593. [[YELLOW]]({0}s)
|
||||
Skills.Cancelled={0} \u53d6\u6d88!
|
||||
Skills.ConfirmOrCancel=[[GREEN]]\u518d\u6b21\u6309\u4e0b\u6ed1\u9f20\u53f3\u9375\u4f86\u78ba\u8a8d [[GOLD]]{0}[[GREEN]]. \u6ed1\u9f20\u5de6\u9375\u53d6\u6d88.
|
||||
Stats.Header.Combat=[[GOLD]]-=\u683c\u9b25\u6280\u80fd=-
|
||||
Stats.Header.Gathering=[[GOLD]]-=\u63a1\u96c6\u6280\u80fd=-
|
||||
@ -708,15 +708,15 @@ MOTD.Donate=[[DARK_AQUA]]\u8d0a\u52a9\u8cc7\u8a0a:
|
||||
MOTD.Hardcore.Enabled=[[GOLD]][mcMMO] [[DARK_AQUA]]\u786c\u6d3e\u6a21\u5f0f\u5df2\u555f\u7528: [[DARK_RED]]{0}
|
||||
MOTD.Hardcore.DeathStatLoss.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]\u6b7b\u4ea1\u6280\u80fd\u61f2\u7f70: [[DARK_RED]]{0}%
|
||||
MOTD.Hardcore.Vampirism.Stats=[[GOLD]][mcMMO] [[DARK_AQUA]]\u5438\u8840\u7372\u5f97\u72c0\u614b: [[DARK_RED]]{0}%
|
||||
MOTD.PerksPrefix=[[RED]][mcMMO \u984d\u5916\u734e\u52f5]
|
||||
MOTD.PerksPrefix=[mcMMO \u984d\u5916\u734e\u52f5]
|
||||
MOTD.Version=[[GOLD]][mcMMO] \u6b63\u904b\u4f5c\u7684\u7248\u672c [[DARK_AQUA]]{0}
|
||||
MOTD.Website=[[GOLD]][mcMMO] [[GREEN]]{0}[[YELLOW]] - mcMMO \u9996\u9801
|
||||
Smelting.Ability.FluxMining=[[RED]]\u6d41\u80fd\u6316\u7926\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=[[RED]]\u71c3\u71d2\u6548\u7387\u52a0\u4e58: [[YELLOW]]{0}x
|
||||
Smelting.Ability.FluxMining=\u6d41\u80fd\u6316\u7926\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Smelting.Ability.FuelEfficiency=\u71c3\u71d2\u6548\u7387\u52a0\u4e58: [[YELLOW]]{0}x
|
||||
Smelting.Ability.Locked.0=\u9396\u5b9a\u76f4\u5230\u6280\u80fd {0}+ (\u4e00\u822c\u7d93\u9a57\u52a0\u6210)
|
||||
Smelting.Ability.Locked.1=\u9396\u5b9a\u76f4\u5230\u6280\u80fd {0}+ (\u6d41\u80fd\u6316\u7926)
|
||||
Smelting.Ability.SecondSmelt=[[RED]]\u518d\u51b6\u7149\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=[[RED]]\u4e00\u822c\u7d93\u9a57\u52a0\u4e58: [[YELLOW]]{0}x
|
||||
Smelting.Ability.SecondSmelt=\u518d\u51b6\u7149\u6a5f\u7387: [[YELLOW]]{0}
|
||||
Smelting.Ability.VanillaXPBoost=\u4e00\u822c\u7d93\u9a57\u52a0\u4e58: [[YELLOW]]{0}x
|
||||
Smelting.SubSkill.FuelEfficiency.Name=\u71c3\u6599\u6548\u7387
|
||||
Smelting.SubSkill.FuelEfficiency.Description=\u589e\u52a0\u71c3\u6599\u5728\u7194\u7210\u88e1\u71c3\u71d2\u7684\u6642\u9593
|
||||
Smelting.SubSkill.SecondSmelt.Name=\u518d\u51b6\u7149
|
||||
@ -761,7 +761,7 @@ Commands.Description.xprate=\u8abf\u6574mcMMO\u7d93\u9a57\u503c\u6bd4\u4f8b\u621
|
||||
UpdateChecker.Outdated=\u60a8\u4f7f\u7528\u7684\u662f\u904e\u6642\u7684\u7248\u672cmcMMO\uff01
|
||||
UpdateChecker.NewAvailable=\u6709\u65b0\u7684\u7248\u672cBukkitDev\u3002
|
||||
Scoreboard.Header.PlayerStats=mcMMO \u72c0\u614b
|
||||
Scoreboard.Header.PlayerCooldowns=[[YELLOW]]mcMMO \u51b7\u537b\u6642\u9593
|
||||
Scoreboard.Header.PlayerCooldowns=mcMMO \u51b7\u537b\u6642\u9593
|
||||
Scoreboard.Header.PlayerRank=mcMMO \u6392\u540d
|
||||
Scoreboard.Header.PlayerInspect=mcMMO \u72c0\u614b:
|
||||
Scoreboard.Header.PowerLevel=\u6230\u9b25\u529b
|
||||
@ -771,7 +771,7 @@ Scoreboard.Misc.CurrentXP=\u76ee\u524d\u7d93\u9a57\u503c
|
||||
Scoreboard.Misc.RemainingXP=\u5269\u9918\u7d93\u9a57\u503c
|
||||
Scoreboard.Misc.Cooldown=[[LIGHT_PURPLE]]\u51b7\u537b\u6642\u9593
|
||||
Scoreboard.Misc.Overall=\u6574\u9ad4
|
||||
Recovery.Notice=[[RED]]\u6ce8\u610f: mcMMO[[DARK_RED]]\u7121\u6cd5\u8f09\u5165\u4f60\u7684\u8cc7\u6599.[[RED]] \u91cd\u8a665\u6b21...
|
||||
Recovery.Notice=\u6ce8\u610f: mcMMO[[DARK_RED]]\u7121\u6cd5\u8f09\u5165\u4f60\u7684\u8cc7\u6599.[[RED]] \u91cd\u8a665\u6b21...
|
||||
Recovery.Success=[[GREEN]]\u6210\u529f!\u4f60\u7684mcMMO\u8cc7\u6599\u5df2\u8f09\u5165.
|
||||
Recovery.Failure=[[RED]]mcMMO\u7121\u6cd5\u8f09\u5165\u4f60\u7684\u8cc7\u6599,\u4f60\u53ef\u80fd\u9700\u8981\u806f\u7e6b[[AQUA]]\u904a\u6232\u7ba1\u7406\u54e1\n[[YELLOW]]\u4f60\u53ef\u4ee5\u7e7c\u7e8c\u904a\u6232,\u4f46\u4f60[[BOLD]]\u7121\u6cd5\u5f97\u5230mcMMO\u7b49\u7d1a[[YELLOW]]\u548c\u4efb\u4f55\u7d93\u9a57[[BOLD]]\u6240\u6709\u8cc7\u6599\u4e0d\u6703\u88ab\u5132\u5b58[[YELLOW]].
|
||||
Recovery.Failure=mcMMO\u7121\u6cd5\u8f09\u5165\u4f60\u7684\u8cc7\u6599,\u4f60\u53ef\u80fd\u9700\u8981\u806f\u7e6b[[AQUA]]\u904a\u6232\u7ba1\u7406\u54e1\n[[YELLOW]]\u4f60\u53ef\u4ee5\u7e7c\u7e8c\u904a\u6232,\u4f46\u4f60[[BOLD]]\u7121\u6cd5\u5f97\u5230mcMMO\u7b49\u7d1a[[YELLOW]]\u548c\u4efb\u4f55\u7d93\u9a57[[BOLD]]\u6240\u6709\u8cc7\u6599\u4e0d\u6703\u88ab\u5132\u5b58[[YELLOW]].
|
||||
Recovery.AdminFailureNotice=[[DARK_RED]][A][[RED]]mcMMO\u7121\u6cd5\u8f09\u5165\u73a9\u5bb6[[YELLOW]]{0}[[RED]]\u7684\u8cc7\u6599. [[LIGHT_PURPLE]]\u8acb\u6aa2\u67e5\u4f60\u7684\u8cc7\u6599\u5eab\u6216\u8a2d\u5b9a.
|
||||
|
Loading…
Reference in New Issue
Block a user