diff --git a/src/main/java/com/gmail/nossr50/listeners/PlayerListener.java b/src/main/java/com/gmail/nossr50/listeners/PlayerListener.java index 165b3425f..f4322d84f 100644 --- a/src/main/java/com/gmail/nossr50/listeners/PlayerListener.java +++ b/src/main/java/com/gmail/nossr50/listeners/PlayerListener.java @@ -196,13 +196,76 @@ public class PlayerListener implements Listener { } if (player.hasPermission("mcmmo.perks.xp.quadruple")) { - player.sendMessage(perkPrefix + ChatColor.DARK_AQUA + "Quadruple XP - Receive 4x XP."); + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.xp.name"), LocaleLoader.getString("Perks.xp.desc", new Object[] { 4 }) })); } else if (player.hasPermission("mcmmo.perks.xp.triple")) { - player.sendMessage(perkPrefix + ChatColor.DARK_AQUA + "Triple XP - Receive 3x XP."); + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.xp.name"), LocaleLoader.getString("Perks.xp.desc", new Object[] { 3 }) })); + } + else if (player.hasPermission("mcmmo.perks.xp.150percentboost")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.xp.name"), LocaleLoader.getString("Perks.xp.desc", new Object[] { 2.5 }) })); } else if (player.hasPermission("mcmmo.perks.xp.double")) { - player.sendMessage(perkPrefix + ChatColor.DARK_AQUA + "Double XP - Receive 2x XP."); + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.xp.name"), LocaleLoader.getString("Perks.xp.desc", new Object[] { 2 }) })); + } + else if (player.hasPermission("mcmmo.perks.xp.50percentboost")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.xp.name"), LocaleLoader.getString("Perks.xp.desc", new Object[] { 1.5 }) })); + } + + if (player.hasPermission("mcmmo.perks.cooldowns.halved")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.cooldowns.name"), LocaleLoader.getString("Perks.cooldowns.desc", new Object[] { "1/2" }) })); + } + else if (player.hasPermission("mcmmo.perks.cooldowns.thirded")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.cooldowns.name"), LocaleLoader.getString("Perks.cooldowns.desc", new Object[] { "1/3" }) })); + } + else if (player.hasPermission("mcmmo.perks.cooldowns.quartered")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.cooldowns.name"), LocaleLoader.getString("Perks.cooldowns.desc", new Object[] { "1/4" }) })); + } + + if (player.hasPermission("mcmmo.perks.activationtime.twelveseconds")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.activationtime.name"), LocaleLoader.getString("Perks.activationtime.desc", new Object[] { 12 }) })); + } + else if (player.hasPermission("mcmmo.perks.activationtime.eightseconds")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.activationtime.name"), LocaleLoader.getString("Perks.activationtime.desc", new Object[] { 8 }) })); + } + else if (player.hasPermission("mcmmo.perks.activationtime.fourseconds")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.activationtime.name"), LocaleLoader.getString("Perks.activationtime.desc", new Object[] { 4 }) })); + } + + if (player.hasPermission("mcmmo.perks.lucky.acrobatics")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.lucky.name"), LocaleLoader.getString("Perks.lucky.desc", new Object[] { "Acrobatics" }) })); + } + if (player.hasPermission("mcmmo.perks.lucky.archery")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.lucky.name"), LocaleLoader.getString("Perks.lucky.desc", new Object[] { "Archery" }) })); + } + if (player.hasPermission("mcmmo.perks.lucky.axes")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.lucky.name"), LocaleLoader.getString("Perks.lucky.desc", new Object[] { "Axes" }) })); + } + if (player.hasPermission("mcmmo.perks.lucky.excavation")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.lucky.name"), LocaleLoader.getString("Perks.lucky.desc", new Object[] { "Excavation" }) })); + } + if (player.hasPermission("mcmmo.perks.lucky.fishing")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.lucky.name"), LocaleLoader.getString("Perks.lucky.desc", new Object[] { "Fishing" }) })); + } + if (player.hasPermission("mcmmo.perks.lucky.herbalism")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.lucky.name"), LocaleLoader.getString("Perks.lucky.desc", new Object[] { "Herbalism" }) })); + } + if (player.hasPermission("mcmmo.perks.lucky.mining")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.lucky.name"), LocaleLoader.getString("Perks.lucky.desc", new Object[] { "Mining" }) })); + } + if (player.hasPermission("mcmmo.perks.lucky.repair")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.lucky.name"), LocaleLoader.getString("Perks.lucky.desc", new Object[] { "Repair" }) })); + } + if (player.hasPermission("mcmmo.perks.lucky.swords")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.lucky.name"), LocaleLoader.getString("Perks.lucky.desc", new Object[] { "Swords" }) })); + } + if (player.hasPermission("mcmmo.perks.lucky.taming")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.lucky.name"), LocaleLoader.getString("Perks.lucky.desc", new Object[] { "Taming" }) })); + } + if (player.hasPermission("mcmmo.perks.lucky.unarmed")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.lucky.name"), LocaleLoader.getString("Perks.lucky.desc", new Object[] { "Unarmed" }) })); + } + if (player.hasPermission("mcmmo.perks.lucky.woodcutting")) { + player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.lucky.name"), LocaleLoader.getString("Perks.lucky.desc", new Object[] { "Woodcutting" }) })); } player.sendMessage(ChatColor.GOLD+"[mcMMO] " + ChatColor.GREEN + "http://www.mcmmo.info" + ChatColor.YELLOW + " - mcMMO Website & Forums"); //TODO: Locale diff --git a/src/main/resources/locale/locale_cs_CZ.properties b/src/main/resources/locale/locale_cs_CZ.properties index c4fc31971..a45df4579 100644 --- a/src/main/resources/locale/locale_cs_CZ.properties +++ b/src/main/resources/locale/locale_cs_CZ.properties @@ -447,3 +447,11 @@ Stats.Header.Combat=[[GOLD]]-=BOJOVE DOVEDNOSTI=- Stats.Header.Gathering=[[GOLD]]-=SHROMAZDOVACI DOVEDNOSTI=- Stats.Header.Misc=Ostatni schopnosti Stats.Own.Stats=[[GREEN]][mcMMO] Statistiky +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_cy.properties b/src/main/resources/locale/locale_cy.properties index 0f70eaf61..1f36c3cc2 100644 --- a/src/main/resources/locale/locale_cy.properties +++ b/src/main/resources/locale/locale_cy.properties @@ -447,3 +447,11 @@ Stats.Header.Combat=[[AUR]] - = GWRTHSEFYLL SGILIAU = - Stats.Header.Gathering=[[AUR]] -= CASGLU SGILIAU = = - Stats.Header.Misc=[[GOLD]]-=MISC SKILLS=- Stats.Own.Stats=[[GWYRDD]][mcMMO] Ystadegau +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_da.properties b/src/main/resources/locale/locale_da.properties index 523a46604..2fc49a8ad 100644 --- a/src/main/resources/locale/locale_da.properties +++ b/src/main/resources/locale/locale_da.properties @@ -447,3 +447,11 @@ Stats.Header.Combat=[[GOLD]]-=KAMP EVNER=- Stats.Header.Gathering=[[GOLD]]-=INDSAMLINGS EVNER=- Stats.Header.Misc=[[GOLD]]-=MISC SKILLS=- Stats.Own.Stats=[[GREEN]][mcMMO] F\u00e6rdigheder +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_de.properties b/src/main/resources/locale/locale_de.properties index d69b147d5..60562c187 100644 --- a/src/main/resources/locale/locale_de.properties +++ b/src/main/resources/locale/locale_de.properties @@ -448,3 +448,11 @@ Stats.Header.Combat=[[GOLD]]-=KAMPF F\u00c4HIGKEITEN=- Stats.Header.Gathering=[[GOLD]]-=Sammel-Fertigkeit=- Stats.Header.Misc=[[GOLD]]-=MISC SKILLS=- Stats.Own.Stats=[[GREEN]][mcMMO] Stats +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_en_US.properties b/src/main/resources/locale/locale_en_US.properties index 333d0d0a7..7b98654a6 100644 --- a/src/main/resources/locale/locale_en_US.properties +++ b/src/main/resources/locale/locale_en_US.properties @@ -521,4 +521,14 @@ Skills.TooTired=[[RED]]You are too tired to use that ability again. Stats.Header.Combat=[[GOLD]]-=COMBAT SKILLS=- Stats.Header.Gathering=[[GOLD]]-=GATHERING SKILLS=- Stats.Header.Misc=[[GOLD]]-=MISC SKILLS=- -Stats.Own.Stats=[[GREEN]][mcMMO] Stats \ No newline at end of file +Stats.Own.Stats=[[GREEN]][mcMMO] Stats + +#PERKS +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. \ No newline at end of file diff --git a/src/main/resources/locale/locale_es.properties b/src/main/resources/locale/locale_es.properties index a955457ec..42e4f71df 100644 --- a/src/main/resources/locale/locale_es.properties +++ b/src/main/resources/locale/locale_es.properties @@ -448,3 +448,11 @@ Stats.Header.Combat=[[GOLD]]-=HABILIDADES DE COMBATE=- Stats.Header.Gathering=[[GOLD]]-=HABILIDADES DE RECOLECCI\u00d3N=- Stats.Header.Misc=[[GOLD]]-=HABILIDADES VARIAS=- Stats.Own.Stats=[[GREEN]][mcMMO] Estad\u00edsticas +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_fi.properties b/src/main/resources/locale/locale_fi.properties index 841f6bcad..c67687664 100644 --- a/src/main/resources/locale/locale_fi.properties +++ b/src/main/resources/locale/locale_fi.properties @@ -448,3 +448,11 @@ Stats.Header.Combat=[[GOLD]]-=TAISTELUTAIDOT=- Stats.Header.Gathering=[[GOLD]]-=GATHERING SKILLS=- Stats.Header.Misc=[[GOLD]]-=MISC SKILLS=- Stats.Own.Stats=[[GREEN]][mcMMO] Stats +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_fr.properties b/src/main/resources/locale/locale_fr.properties index abd381a91..a2a51e8c4 100644 --- a/src/main/resources/locale/locale_fr.properties +++ b/src/main/resources/locale/locale_fr.properties @@ -448,3 +448,11 @@ Stats.Header.Combat=[[GOLD]]-=TALENTS DE COMBAT=- Stats.Header.Gathering=[[GOLD]]-=COMP\u00c9TENCES DE R\u00c9COLTE=- Stats.Header.Misc=[[GOLD]]-=AUTRES TALENTS=- Stats.Own.Stats=[[GREEN]][mcMMO] Statistiques +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_it.properties b/src/main/resources/locale/locale_it.properties index 37ca87dbe..746248479 100644 --- a/src/main/resources/locale/locale_it.properties +++ b/src/main/resources/locale/locale_it.properties @@ -448,3 +448,11 @@ Stats.Header.Combat=[[GOLD]]-=ABILITA\' DI COMBATTIMENTO=- Stats.Header.Gathering=[[GOLD]]-=ABILITA\' DI RACCOLTA=- Stats.Header.Misc=[[GOLD]]-=ABILITA\' VARIE=- Stats.Own.Stats=[[GREEN]]Statistiche [mcMMO] +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_ko.properties b/src/main/resources/locale/locale_ko.properties index 941885361..864d0c576 100644 --- a/src/main/resources/locale/locale_ko.properties +++ b/src/main/resources/locale/locale_ko.properties @@ -448,3 +448,11 @@ Stats.Header.Combat=[[GOLD]]-=COMBAT SKILLS=- Stats.Header.Gathering=[[GOLD]]-=GATHERING SKILLS=- Stats.Header.Misc=[[GOLD]]-=MISC SKILLS=- Stats.Own.Stats=[[GREEN]][mcMMO] Stats +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_lv.properties b/src/main/resources/locale/locale_lv.properties index 3303a4344..bcfb54450 100644 --- a/src/main/resources/locale/locale_lv.properties +++ b/src/main/resources/locale/locale_lv.properties @@ -448,3 +448,11 @@ Stats.Header.Combat=[[GOLD]]-=COMBAT SKILLS=- Stats.Header.Gathering=[[GOLD]]-=GATHERING SKILLS=- Stats.Header.Misc=[[GOLD]]-=MISC SKILLS=- Stats.Own.Stats=[[GREEN]][mcMMO] Stats +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_nl.properties b/src/main/resources/locale/locale_nl.properties index c341339a3..ba29dc644 100644 --- a/src/main/resources/locale/locale_nl.properties +++ b/src/main/resources/locale/locale_nl.properties @@ -448,3 +448,11 @@ Stats.Header.Combat=[[GOLD]]-=Strijd Ervaring=- Stats.Header.Gathering=[[GOLD]]-=GATHERING SKILLS=- Stats.Header.Misc=[[GOLD]]-=MISC SKILLS=- Stats.Own.Stats=[[GREEN]][mcMMO] Stats +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_no.properties b/src/main/resources/locale/locale_no.properties index 81a675121..0cde5e639 100644 --- a/src/main/resources/locale/locale_no.properties +++ b/src/main/resources/locale/locale_no.properties @@ -448,3 +448,11 @@ Stats.Header.Combat=[[GOLD]]-=Kampferdigheter=- Stats.Header.Gathering=[[GOLD]]- = SAMLER FERDIGHETER = - Stats.Header.Misc=[[GOLD]]-=MISC SKILLS=- Stats.Own.Stats=[[GREEN]][mcMMO] Stats +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_pl.properties b/src/main/resources/locale/locale_pl.properties index 38fe0e5e5..e37642bf3 100644 --- a/src/main/resources/locale/locale_pl.properties +++ b/src/main/resources/locale/locale_pl.properties @@ -448,3 +448,11 @@ Stats.Header.Combat=[[GOLD]]-=COMBAT SKILLS=- Stats.Header.Gathering=[[GOLD]]-=GATHERING SKILLS=- Stats.Header.Misc=[[GOLD]]-=MISC SKILLS=- Stats.Own.Stats=[[GREEN]][mcMMO] Stats +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_pt_BR.properties b/src/main/resources/locale/locale_pt_BR.properties index 0d44ffd66..8e2503107 100644 --- a/src/main/resources/locale/locale_pt_BR.properties +++ b/src/main/resources/locale/locale_pt_BR.properties @@ -448,3 +448,11 @@ Stats.Header.Combat=[[GOLD]]-=COMBAT SKILLS=- Stats.Header.Gathering=[[GOLD]]-=GATHERING SKILLS=- Stats.Header.Misc=[[GOLD]]-=MISC SKILLS=- Stats.Own.Stats=[[GREEN]][mcMMO] Stats +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_ru.properties b/src/main/resources/locale/locale_ru.properties index f128209a5..a73d5510d 100644 --- a/src/main/resources/locale/locale_ru.properties +++ b/src/main/resources/locale/locale_ru.properties @@ -448,3 +448,11 @@ Stats.Header.Combat=[[GOLD]]-=\u0411\u041e\u0415\u0412\u042b\u0415 \u041d\u0410\ Stats.Header.Gathering=[[GOLD]]-=\u041d\u0410\u0412\u042b\u041a\u0418 \u0421\u0411\u041e\u0420\u0410=- Stats.Header.Misc=[[GOLD]]-=\u0420\u0410\u0417\u041d\u042b\u0415 \u041d\u0410\u0412\u042b\u041a\u0418=- Stats.Own.Stats=[[GREEN]][mcMMO] \u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_sv.properties b/src/main/resources/locale/locale_sv.properties index ebf607c83..6c181d226 100644 --- a/src/main/resources/locale/locale_sv.properties +++ b/src/main/resources/locale/locale_sv.properties @@ -448,3 +448,11 @@ Stats.Header.Combat=[[GOLD]]-=Stridsf\u00e4rdigheter=- Stats.Header.Gathering=[[GOLD]]-=GATHERING SKILLS=- Stats.Header.Misc=[[GOLD]]-=MISC SKILLS=- Stats.Own.Stats=[[GREEN]][mcMMO] Stats +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_tr_TR.properties b/src/main/resources/locale/locale_tr_TR.properties index c42fbea39..a32b0df94 100644 --- a/src/main/resources/locale/locale_tr_TR.properties +++ b/src/main/resources/locale/locale_tr_TR.properties @@ -448,3 +448,11 @@ Stats.Header.Combat=[[GOLD]]-=COMBAT SKILLS=- Stats.Header.Gathering=[[GOLD]]-=GATHERING SKILLS=- Stats.Header.Misc=[[GOLD]]-=MISC SKILLS=- Stats.Own.Stats=[[GREEN]][mcMMO] Stats +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds. diff --git a/src/main/resources/locale/locale_zh_CN.properties b/src/main/resources/locale/locale_zh_CN.properties index f14da1636..242a0fd78 100644 --- a/src/main/resources/locale/locale_zh_CN.properties +++ b/src/main/resources/locale/locale_zh_CN.properties @@ -448,3 +448,11 @@ Stats.Header.Combat=[[GOLD]]-=\u683c\u6597\u6280\u80fd=- Stats.Header.Gathering=[[GOLD]]-=\u91c7\u96c6\u6280\u80fd=- Stats.Header.Misc=[[GOLD]]-=\u6742\u9879\u6280\u80fd=- Stats.Own.Stats=[[GREEN]][mcMMO] \u7edf\u8ba1\u4fe1\u606f +Perks.xp.name=Experience +Perks.xp.desc=Receive {0}x XP. +Perks.lucky.name=Luck +Perks.lucky.desc=Gives {0} skills and abilities a 33.3% better chance to activate. +Perks.cooldowns.name=Fast Recovery +Perks.cooldowns.desc=Cuts cooldown duration by {0}. +Perks.activationtime.name=Endurance +Perks.activationtime.desc=Increases ability activation time by {0} seconds.