From 708cfc23b685359d023fb92a6eb4654b97f438ea Mon Sep 17 00:00:00 2001 From: GJ Date: Thu, 23 Feb 2012 13:09:23 -0500 Subject: [PATCH] Locale stuff for Blast Mining --- .../commands/skills/MiningCommand.java | 81 +++++++++++++++++++ .../com/gmail/nossr50/skills/BlastMining.java | 9 ++- .../resources/locale/locale_de.properties | 22 ++++- .../resources/locale/locale_en_us.properties | 26 +++++- .../resources/locale/locale_es_es.properties | 22 ++++- .../resources/locale/locale_fi.properties | 22 ++++- .../resources/locale/locale_fr.properties | 22 ++++- .../resources/locale/locale_nl.properties | 22 ++++- .../resources/locale/locale_pl.properties | 22 ++++- .../resources/locale/locale_pt_br.properties | 22 ++++- .../resources/locale/locale_ru.properties | 22 ++++- 11 files changed, 279 insertions(+), 13 deletions(-) diff --git a/src/main/java/com/gmail/nossr50/commands/skills/MiningCommand.java b/src/main/java/com/gmail/nossr50/commands/skills/MiningCommand.java index f8e3bb3a2..e431666b1 100644 --- a/src/main/java/com/gmail/nossr50/commands/skills/MiningCommand.java +++ b/src/main/java/com/gmail/nossr50/commands/skills/MiningCommand.java @@ -30,6 +30,46 @@ public class MiningCommand implements CommandExecutor { x -= 50; ticks++; } + + int rank = 0; + int damage = 0; + int radius = 0; + if(PP.getSkillLevel(SkillType.MINING) >= 125 && PP.getSkillLevel(SkillType.MINING) < 250) + rank = 1; + if(PP.getSkillLevel(SkillType.MINING) >= 250 && PP.getSkillLevel(SkillType.MINING) < 375){ + rank = 2; + radius = 1; + } + if(PP.getSkillLevel(SkillType.MINING) >= 375 && PP.getSkillLevel(SkillType.MINING) < 500){ + rank = 3; + radius = 1; + } + if(PP.getSkillLevel(SkillType.MINING) >= 500 && PP.getSkillLevel(SkillType.MINING) < 625){ + rank = 4; + damage = 25; + radius = 2; + } + if(PP.getSkillLevel(SkillType.MINING) >= 625 && PP.getSkillLevel(SkillType.MINING) < 750){ + rank = 5; + damage = 25; + radius = 2; + } + if(PP.getSkillLevel(SkillType.MINING) >= 750 && PP.getSkillLevel(SkillType.MINING) < 875){ + rank = 6; + damage = 50; + radius = 3; + } + if(PP.getSkillLevel(SkillType.MINING) >= 875 && PP.getSkillLevel(SkillType.MINING) < 1000){ + rank = 7; + damage = 50; + radius = 3; + } + if(PP.getSkillLevel(SkillType.MINING) >= 1000){ + rank = 8; + damage = 100; + radius = 4; + } + player.sendMessage(mcLocale.getString("m.SkillHeader", new Object[] { mcLocale.getString("m.SkillMining") })); player.sendMessage(mcLocale.getString("m.XPGain", new Object[] { mcLocale.getString("m.XPGainMining") })); @@ -39,9 +79,50 @@ public class MiningCommand implements CommandExecutor { player.sendMessage(mcLocale.getString("m.SkillHeader", new Object[] { mcLocale.getString("m.Effects") })); player.sendMessage(mcLocale.getString("m.EffectsTemplate", new Object[] { mcLocale.getString("m.EffectsMining1_0"), mcLocale.getString("m.EffectsMining1_1") })); player.sendMessage(mcLocale.getString("m.EffectsTemplate", new Object[] { mcLocale.getString("m.EffectsMining2_0"), mcLocale.getString("m.EffectsMining2_1") })); + player.sendMessage(mcLocale.getString("m.EffectsTemplate", new Object[] { mcLocale.getString("m.EffectsMining3_0"), mcLocale.getString("m.EffectsMining3_1") })); + player.sendMessage(mcLocale.getString("m.EffectsTemplate", new Object[] { mcLocale.getString("m.EffectsMining4_0"), mcLocale.getString("m.EffectsMining4_1") })); + player.sendMessage(mcLocale.getString("m.EffectsTemplate", new Object[] { mcLocale.getString("m.EffectsMining5_0"), mcLocale.getString("m.EffectsMining5_1") })); player.sendMessage(mcLocale.getString("m.SkillHeader", new Object[] { mcLocale.getString("m.YourStats") })); player.sendMessage(mcLocale.getString("m.MiningDoubleDropChance", new Object[] { percentage })); player.sendMessage(mcLocale.getString("m.MiningSuperBreakerLength", new Object[] { ticks })); + if (PP.getSkillLevel(SkillType.MINING) < 125) + player.sendMessage(mcLocale.getString("m.AbilityLockTemplate", new Object[] { mcLocale.getString("m.AbilLockMining1") })); + else{ + switch (rank){ + case 1: + player.sendMessage(mcLocale.getString("m.MiningBlastMining", new Object[] { rank, mcLocale.getString("m.BlastMining1") })); + break; + case 2: + player.sendMessage(mcLocale.getString("m.MiningBlastMining", new Object[] { rank, mcLocale.getString("m.BlastMining2") })); + break; + case 3: + player.sendMessage(mcLocale.getString("m.MiningBlastMining", new Object[] { rank, mcLocale.getString("m.BlastMining3") })); + break; + case 4: + player.sendMessage(mcLocale.getString("m.MiningBlastMining", new Object[] { rank, mcLocale.getString("m.BlastMining4") })); + break; + case 5: + player.sendMessage(mcLocale.getString("m.MiningBlastMining", new Object[] { rank, mcLocale.getString("m.BlastMining5") })); + break; + case 6: + player.sendMessage(mcLocale.getString("m.MiningBlastMining", new Object[] { rank, mcLocale.getString("m.BlastMining6") })); + break; + case 7: + player.sendMessage(mcLocale.getString("m.MiningBlastMining", new Object[] { rank, mcLocale.getString("m.BlastMining7") })); + break; + case 8: + player.sendMessage(mcLocale.getString("m.MiningBlastMining", new Object[] { rank, mcLocale.getString("m.BlastMining8") })); + break; + } + } + if (PP.getSkillLevel(SkillType.MINING) < 250) + player.sendMessage(mcLocale.getString("m.AbilityLockTemplate", new Object[] { mcLocale.getString("m.AbilLockMining2") })); + else + player.sendMessage(mcLocale.getString("m.MiningBiggerBombs", new Object[] { radius })); + if (PP.getSkillLevel(SkillType.MINING) < 500) + player.sendMessage(mcLocale.getString("m.AbilityLockTemplate", new Object[] { mcLocale.getString("m.AbilLockMining3") })); + else + player.sendMessage(mcLocale.getString("m.MiningDemolitionsExpertDamageDecrease", new Object[] { damage })); return true; } diff --git a/src/main/java/com/gmail/nossr50/skills/BlastMining.java b/src/main/java/com/gmail/nossr50/skills/BlastMining.java index afdd5d9ac..45bc914c7 100644 --- a/src/main/java/com/gmail/nossr50/skills/BlastMining.java +++ b/src/main/java/com/gmail/nossr50/skills/BlastMining.java @@ -365,7 +365,8 @@ public class BlastMining{ * Demolitions Expertise (Unlocked at Mining 500) * * Reduces explosion damage to 1/4 of normal at 500. - * Reduces explosion damage to 1/2 of normal at 1000. + * Reduces explosion damage to 1/2 of normal at 750. + * Reduces explosion damage to 0 at 1000. */ public static void demolitionsExpertise(Player player, EntityDamageEvent event) { @@ -374,10 +375,12 @@ public class BlastMining{ int damage = event.getDamage(); if(skill < 500) return; - if(skill >= 500 && skill < 1000) + if(skill >= 500 && skill < 750) damage = damage/4; - if(skill >= 1000) + if(skill >= 750 && skill < 1000) damage = damage/2; + if(skill >= 1000) + damage = 0; event.setDamage(damage); } diff --git a/src/main/resources/locale/locale_de.properties b/src/main/resources/locale/locale_de.properties index 07b94f4da..ac65e6dd8 100644 --- a/src/main/resources/locale/locale_de.properties +++ b/src/main/resources/locale/locale_de.properties @@ -376,4 +376,24 @@ m.EffectsTaming8_1=Chance for wolves to heal on attack m.AbilLockTaming5=LOCKED UNTIL 50+ SKILL (FAST FOOD SERVICE) m.AbilBonusTaming5_0=Fast Food Service m.AbilBonusTaming5_1=50% Chance for heal on attack -Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! \ No newline at end of file +Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! +m.EffectsMining3_0=Blast Mining +m.EffectsMining3_1=Bonuses to mining with TNT +m.EffectsMining4_0=Bigger Bombs +m.EffectsMining4_1=Increases TNT explosion radius +m.EffectsMining5_0=Demolitions Expertise +m.EffectsMining5_1=Decreases damage from TNT explosions +m.AbilLockMining1=LOCKED UNTIL 125+ SKILL (BLAST MINING) +m.AbilLockMining2=LOCKED UNTIL 250+ SKILL (BIGGER BOMBS) +m.AbilLockMining3=LOCKED UNTIL 500+ SKILL (DEMOLITIONS EXPERTISE) +m.MiningBiggerBombs=[[RED]]Blast Radius Increase: [[YELLOW]]+{0} +m.MiningDemolitionsExpertDamageDecrease=[[RED]]Demolitions Expert Damage Decrease: [[YELLOW]]{0}% +m.MiningBlastMining=[[RED]]Blast Mining: [[YELLOW]] Rank {0} [[GRAY]]({1}) +m.BlastMining1 = +5% ore yield +m.BlastMining2 = +10% ore yield +m.BlastMining3 = +15% ore yield, no debris +m.BlastMining4 = +20% ore yield, no debris +m.BlastMining5 = +25% ore yield, no debris, double drops +m.BlastMining6 = +30% ore yield, no debris, double drops +m.BlastMining7 = +35% ore yield, no debris, triple drops +m.BlastMining8 = +40% ore yield, no debris, triple drops \ No newline at end of file diff --git a/src/main/resources/locale/locale_en_us.properties b/src/main/resources/locale/locale_en_us.properties index 868560933..8ccfc72bc 100644 --- a/src/main/resources/locale/locale_en_us.properties +++ b/src/main/resources/locale/locale_en_us.properties @@ -101,7 +101,7 @@ m.EffectsAxes2_0=Critical Strikes m.EffectsAxes2_1=Double Damage m.EffectsAxes3_0=Axe Mastery m.EffectsAxes3_1=Modifies Damage -m.AbilLockAxes1=LOCKED UNTIL 500+ SKILL (AXEMASTERY) +m.AbilLockAxes1=LOCKED UNTIL 500+ SKILL (AXE MASTERY) m.AbilBonusAxes1_0=Axe Mastery m.AbilBonusAxes1_1=Bonus 4 damage m.AxesCritChance=[[RED]]Chance to critically strike: [[YELLOW]]{0}% @@ -141,6 +141,8 @@ m.EffectsMining1_0=Super Breaker (ABILITY) m.EffectsMining1_1=Speed+, Triple Drop Chance m.EffectsMining2_0=Double Drops m.EffectsMining2_1=Double the normal loot +m.EffectsMining2_0=Double Drops +m.EffectsMining2_1=Double the normal loot m.MiningDoubleDropChance=[[RED]]Double Drop Chance: [[YELLOW]]{0}% m.MiningSuperBreakerLength=[[RED]]Super Breaker Length: [[YELLOW]]{0}s m.SkillRepair=REPAIR @@ -369,4 +371,24 @@ m.EffectsTaming8_1=Chance for wolves to heal on attack m.AbilLockTaming5=LOCKED UNTIL 50+ SKILL (FAST FOOD SERVICE) m.AbilBonusTaming5_0=Fast Food Service m.AbilBonusTaming5_1=50% Chance for heal on attack -Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! \ No newline at end of file +Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! +m.EffectsMining3_0=Blast Mining +m.EffectsMining3_1=Bonuses to mining with TNT +m.EffectsMining4_0=Bigger Bombs +m.EffectsMining4_1=Increases TNT explosion radius +m.EffectsMining5_0=Demolitions Expertise +m.EffectsMining5_1=Decreases damage from TNT explosions +m.AbilLockMining1=LOCKED UNTIL 125+ SKILL (BLAST MINING) +m.AbilLockMining2=LOCKED UNTIL 250+ SKILL (BIGGER BOMBS) +m.AbilLockMining3=LOCKED UNTIL 500+ SKILL (DEMOLITIONS EXPERTISE) +m.MiningBiggerBombs=[[RED]]Blast Radius Increase: [[YELLOW]]+{0} +m.MiningDemolitionsExpertDamageDecrease=[[RED]]Demolitions Expert Damage Decrease: [[YELLOW]]{0}% +m.MiningBlastMining=[[RED]]Blast Mining: [[YELLOW]] Rank {0} [[GRAY]]({1}) +m.BlastMining1 = +5% ore yield +m.BlastMining2 = +10% ore yield +m.BlastMining3 = +15% ore yield, no debris +m.BlastMining4 = +20% ore yield, no debris +m.BlastMining5 = +25% ore yield, no debris, double drops +m.BlastMining6 = +30% ore yield, no debris, double drops +m.BlastMining7 = +35% ore yield, no debris, triple drops +m.BlastMining8 = +40% ore yield, no debris, triple drops \ No newline at end of file diff --git a/src/main/resources/locale/locale_es_es.properties b/src/main/resources/locale/locale_es_es.properties index 554b98471..cdb98bcc6 100644 --- a/src/main/resources/locale/locale_es_es.properties +++ b/src/main/resources/locale/locale_es_es.properties @@ -369,4 +369,24 @@ m.EffectsTaming8_1=Chance for wolves to heal on attack m.AbilLockTaming5=LOCKED UNTIL 50+ SKILL (FAST FOOD SERVICE) m.AbilBonusTaming5_0=Fast Food Service m.AbilBonusTaming5_1=50% Chance for heal on attack -Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! \ No newline at end of file +Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! +m.EffectsMining3_0=Blast Mining +m.EffectsMining3_1=Bonuses to mining with TNT +m.EffectsMining4_0=Bigger Bombs +m.EffectsMining4_1=Increases TNT explosion radius +m.EffectsMining5_0=Demolitions Expertise +m.EffectsMining5_1=Decreases damage from TNT explosions +m.AbilLockMining1=LOCKED UNTIL 125+ SKILL (BLAST MINING) +m.AbilLockMining2=LOCKED UNTIL 250+ SKILL (BIGGER BOMBS) +m.AbilLockMining3=LOCKED UNTIL 500+ SKILL (DEMOLITIONS EXPERTISE) +m.MiningBiggerBombs=[[RED]]Blast Radius Increase: [[YELLOW]]+{0} +m.MiningDemolitionsExpertDamageDecrease=[[RED]]Demolitions Expert Damage Decrease: [[YELLOW]]{0}% +m.MiningBlastMining=[[RED]]Blast Mining: [[YELLOW]] Rank {0} [[GRAY]]({1}) +m.BlastMining1 = +5% ore yield +m.BlastMining2 = +10% ore yield +m.BlastMining3 = +15% ore yield, no debris +m.BlastMining4 = +20% ore yield, no debris +m.BlastMining5 = +25% ore yield, no debris, double drops +m.BlastMining6 = +30% ore yield, no debris, double drops +m.BlastMining7 = +35% ore yield, no debris, triple drops +m.BlastMining8 = +40% ore yield, no debris, triple drops \ No newline at end of file diff --git a/src/main/resources/locale/locale_fi.properties b/src/main/resources/locale/locale_fi.properties index 91966883a..2250b355d 100644 --- a/src/main/resources/locale/locale_fi.properties +++ b/src/main/resources/locale/locale_fi.properties @@ -358,4 +358,24 @@ m.EffectsTaming8_1=Chance for wolves to heal on attack m.AbilLockTaming5=LOCKED UNTIL 50+ SKILL (FAST FOOD SERVICE) m.AbilBonusTaming5_0=Fast Food Service m.AbilBonusTaming5_1=50% Chance for heal on attack -Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! \ No newline at end of file +Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! +m.EffectsMining3_0=Blast Mining +m.EffectsMining3_1=Bonuses to mining with TNT +m.EffectsMining4_0=Bigger Bombs +m.EffectsMining4_1=Increases TNT explosion radius +m.EffectsMining5_0=Demolitions Expertise +m.EffectsMining5_1=Decreases damage from TNT explosions +m.AbilLockMining1=LOCKED UNTIL 125+ SKILL (BLAST MINING) +m.AbilLockMining2=LOCKED UNTIL 250+ SKILL (BIGGER BOMBS) +m.AbilLockMining3=LOCKED UNTIL 500+ SKILL (DEMOLITIONS EXPERTISE) +m.MiningBiggerBombs=[[RED]]Blast Radius Increase: [[YELLOW]]+{0} +m.MiningDemolitionsExpertDamageDecrease=[[RED]]Demolitions Expert Damage Decrease: [[YELLOW]]{0}% +m.MiningBlastMining=[[RED]]Blast Mining: [[YELLOW]] Rank {0} [[GRAY]]({1}) +m.BlastMining1 = +5% ore yield +m.BlastMining2 = +10% ore yield +m.BlastMining3 = +15% ore yield, no debris +m.BlastMining4 = +20% ore yield, no debris +m.BlastMining5 = +25% ore yield, no debris, double drops +m.BlastMining6 = +30% ore yield, no debris, double drops +m.BlastMining7 = +35% ore yield, no debris, triple drops +m.BlastMining8 = +40% ore yield, no debris, triple drops \ No newline at end of file diff --git a/src/main/resources/locale/locale_fr.properties b/src/main/resources/locale/locale_fr.properties index d5e7f8fa0..0fc0cd1b4 100644 --- a/src/main/resources/locale/locale_fr.properties +++ b/src/main/resources/locale/locale_fr.properties @@ -369,4 +369,24 @@ m.EffectsTaming8_1=Chance for wolves to heal on attack m.AbilLockTaming5=LOCKED UNTIL 50+ SKILL (FAST FOOD SERVICE) m.AbilBonusTaming5_0=Fast Food Service m.AbilBonusTaming5_1=50% Chance for heal on attack -Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! \ No newline at end of file +Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! +m.EffectsMining3_0=Blast Mining +m.EffectsMining3_1=Bonuses to mining with TNT +m.EffectsMining4_0=Bigger Bombs +m.EffectsMining4_1=Increases TNT explosion radius +m.EffectsMining5_0=Demolitions Expertise +m.EffectsMining5_1=Decreases damage from TNT explosions +m.AbilLockMining1=LOCKED UNTIL 125+ SKILL (BLAST MINING) +m.AbilLockMining2=LOCKED UNTIL 250+ SKILL (BIGGER BOMBS) +m.AbilLockMining3=LOCKED UNTIL 500+ SKILL (DEMOLITIONS EXPERTISE) +m.MiningBiggerBombs=[[RED]]Blast Radius Increase: [[YELLOW]]+{0} +m.MiningDemolitionsExpertDamageDecrease=[[RED]]Demolitions Expert Damage Decrease: [[YELLOW]]{0}% +m.MiningBlastMining=[[RED]]Blast Mining: [[YELLOW]] Rank {0} [[GRAY]]({1}) +m.BlastMining1 = +5% ore yield +m.BlastMining2 = +10% ore yield +m.BlastMining3 = +15% ore yield, no debris +m.BlastMining4 = +20% ore yield, no debris +m.BlastMining5 = +25% ore yield, no debris, double drops +m.BlastMining6 = +30% ore yield, no debris, double drops +m.BlastMining7 = +35% ore yield, no debris, triple drops +m.BlastMining8 = +40% ore yield, no debris, triple drops \ No newline at end of file diff --git a/src/main/resources/locale/locale_nl.properties b/src/main/resources/locale/locale_nl.properties index 244286736..091be2974 100644 --- a/src/main/resources/locale/locale_nl.properties +++ b/src/main/resources/locale/locale_nl.properties @@ -375,4 +375,24 @@ m.EffectsTaming8_1=Chance for wolves to heal on attack m.AbilLockTaming5=LOCKED UNTIL 50+ SKILL (FAST FOOD SERVICE) m.AbilBonusTaming5_0=Fast Food Service m.AbilBonusTaming5_1=50% Chance for heal on attack -Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! \ No newline at end of file +Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! +m.EffectsMining3_0=Blast Mining +m.EffectsMining3_1=Bonuses to mining with TNT +m.EffectsMining4_0=Bigger Bombs +m.EffectsMining4_1=Increases TNT explosion radius +m.EffectsMining5_0=Demolitions Expertise +m.EffectsMining5_1=Decreases damage from TNT explosions +m.AbilLockMining1=LOCKED UNTIL 125+ SKILL (BLAST MINING) +m.AbilLockMining2=LOCKED UNTIL 250+ SKILL (BIGGER BOMBS) +m.AbilLockMining3=LOCKED UNTIL 500+ SKILL (DEMOLITIONS EXPERTISE) +m.MiningBiggerBombs=[[RED]]Blast Radius Increase: [[YELLOW]]+{0} +m.MiningDemolitionsExpertDamageDecrease=[[RED]]Demolitions Expert Damage Decrease: [[YELLOW]]{0}% +m.MiningBlastMining=[[RED]]Blast Mining: [[YELLOW]] Rank {0} [[GRAY]]({1}) +m.BlastMining1 = +5% ore yield +m.BlastMining2 = +10% ore yield +m.BlastMining3 = +15% ore yield, no debris +m.BlastMining4 = +20% ore yield, no debris +m.BlastMining5 = +25% ore yield, no debris, double drops +m.BlastMining6 = +30% ore yield, no debris, double drops +m.BlastMining7 = +35% ore yield, no debris, triple drops +m.BlastMining8 = +40% ore yield, no debris, triple drops \ No newline at end of file diff --git a/src/main/resources/locale/locale_pl.properties b/src/main/resources/locale/locale_pl.properties index de5697df2..7110d4382 100644 --- a/src/main/resources/locale/locale_pl.properties +++ b/src/main/resources/locale/locale_pl.properties @@ -369,4 +369,24 @@ m.EffectsTaming8_1=Chance for wolves to heal on attack m.AbilLockTaming5=LOCKED UNTIL 50+ SKILL (FAST FOOD SERVICE) m.AbilBonusTaming5_0=Fast Food Service m.AbilBonusTaming5_1=50% Chance for heal on attack -Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! \ No newline at end of file +Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! +m.EffectsMining3_0=Blast Mining +m.EffectsMining3_1=Bonuses to mining with TNT +m.EffectsMining4_0=Bigger Bombs +m.EffectsMining4_1=Increases TNT explosion radius +m.EffectsMining5_0=Demolitions Expertise +m.EffectsMining5_1=Decreases damage from TNT explosions +m.AbilLockMining1=LOCKED UNTIL 125+ SKILL (BLAST MINING) +m.AbilLockMining2=LOCKED UNTIL 250+ SKILL (BIGGER BOMBS) +m.AbilLockMining3=LOCKED UNTIL 500+ SKILL (DEMOLITIONS EXPERTISE) +m.MiningBiggerBombs=[[RED]]Blast Radius Increase: [[YELLOW]]+{0} +m.MiningDemolitionsExpertDamageDecrease=[[RED]]Demolitions Expert Damage Decrease: [[YELLOW]]{0}% +m.MiningBlastMining=[[RED]]Blast Mining: [[YELLOW]] Rank {0} [[GRAY]]({1}) +m.BlastMining1 = +5% ore yield +m.BlastMining2 = +10% ore yield +m.BlastMining3 = +15% ore yield, no debris +m.BlastMining4 = +20% ore yield, no debris +m.BlastMining5 = +25% ore yield, no debris, double drops +m.BlastMining6 = +30% ore yield, no debris, double drops +m.BlastMining7 = +35% ore yield, no debris, triple drops +m.BlastMining8 = +40% ore yield, no debris, triple drops \ No newline at end of file diff --git a/src/main/resources/locale/locale_pt_br.properties b/src/main/resources/locale/locale_pt_br.properties index 243d1632a..ea4a0266e 100644 --- a/src/main/resources/locale/locale_pt_br.properties +++ b/src/main/resources/locale/locale_pt_br.properties @@ -377,4 +377,24 @@ m.EffectsTaming8_1=Chance for wolves to heal on attack m.AbilLockTaming5=LOCKED UNTIL 50+ SKILL (FAST FOOD SERVICE) m.AbilBonusTaming5_0=Fast Food Service m.AbilBonusTaming5_1=50% Chance for heal on attack -Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! \ No newline at end of file +Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! +m.EffectsMining3_0=Blast Mining +m.EffectsMining3_1=Bonuses to mining with TNT +m.EffectsMining4_0=Bigger Bombs +m.EffectsMining4_1=Increases TNT explosion radius +m.EffectsMining5_0=Demolitions Expertise +m.EffectsMining5_1=Decreases damage from TNT explosions +m.AbilLockMining1=LOCKED UNTIL 125+ SKILL (BLAST MINING) +m.AbilLockMining2=LOCKED UNTIL 250+ SKILL (BIGGER BOMBS) +m.AbilLockMining3=LOCKED UNTIL 500+ SKILL (DEMOLITIONS EXPERTISE) +m.MiningBiggerBombs=[[RED]]Blast Radius Increase: [[YELLOW]]+{0} +m.MiningDemolitionsExpertDamageDecrease=[[RED]]Demolitions Expert Damage Decrease: [[YELLOW]]{0}% +m.MiningBlastMining=[[RED]]Blast Mining: [[YELLOW]] Rank {0} [[GRAY]]({1}) +m.BlastMining1 = +5% ore yield +m.BlastMining2 = +10% ore yield +m.BlastMining3 = +15% ore yield, no debris +m.BlastMining4 = +20% ore yield, no debris +m.BlastMining5 = +25% ore yield, no debris, double drops +m.BlastMining6 = +30% ore yield, no debris, double drops +m.BlastMining7 = +35% ore yield, no debris, triple drops +m.BlastMining8 = +40% ore yield, no debris, triple drops \ No newline at end of file diff --git a/src/main/resources/locale/locale_ru.properties b/src/main/resources/locale/locale_ru.properties index fd2d985e2..fc5fca7c9 100644 --- a/src/main/resources/locale/locale_ru.properties +++ b/src/main/resources/locale/locale_ru.properties @@ -361,4 +361,24 @@ m.EffectsTaming8_1=Chance for wolves to heal on attack m.AbilLockTaming5=LOCKED UNTIL 50+ SKILL (FAST FOOD SERVICE) m.AbilBonusTaming5_0=Fast Food Service m.AbilBonusTaming5_1=50% Chance for heal on attack -Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! \ No newline at end of file +Swords.StoppedBleeding=[[GRAY]]The bleeding has [[GREEN]]stopped[[GRAY]]! +m.EffectsMining3_0=Blast Mining +m.EffectsMining3_1=Bonuses to mining with TNT +m.EffectsMining4_0=Bigger Bombs +m.EffectsMining4_1=Increases TNT explosion radius +m.EffectsMining5_0=Demolitions Expertise +m.EffectsMining5_1=Decreases damage from TNT explosions +m.AbilLockMining1=LOCKED UNTIL 125+ SKILL (BLAST MINING) +m.AbilLockMining2=LOCKED UNTIL 250+ SKILL (BIGGER BOMBS) +m.AbilLockMining3=LOCKED UNTIL 500+ SKILL (DEMOLITIONS EXPERTISE) +m.MiningBiggerBombs=[[RED]]Blast Radius Increase: [[YELLOW]]+{0} +m.MiningDemolitionsExpertDamageDecrease=[[RED]]Demolitions Expert Damage Decrease: [[YELLOW]]{0}% +m.MiningBlastMining=[[RED]]Blast Mining: [[YELLOW]] Rank {0} [[GRAY]]({1}) +m.BlastMining1 = +5% ore yield +m.BlastMining2 = +10% ore yield +m.BlastMining3 = +15% ore yield, no debris +m.BlastMining4 = +20% ore yield, no debris +m.BlastMining5 = +25% ore yield, no debris, double drops +m.BlastMining6 = +30% ore yield, no debris, double drops +m.BlastMining7 = +35% ore yield, no debris, triple drops +m.BlastMining8 = +40% ore yield, no debris, triple drops \ No newline at end of file