v1.3.0: balance changes to warrior armor abilities

This commit is contained in:
Evan Debenham
2022-05-28 22:59:19 -04:00
parent bea920fc7f
commit 83586c3afd
3 changed files with 3 additions and 3 deletions

View File

@@ -369,7 +369,7 @@ actors.hero.abilities.warrior.endure.name=endure
actors.hero.abilities.warrior.endure$enduretracker.name=Endurance
actors.hero.abilities.warrior.endure$enduretracker.desc=The Warrior is now dealing bonus damage based on the damage he endured.\n\nBonus Damage: %1$d\nHits Left: %2$d
actors.hero.abilities.warrior.endure.short_desc=The Warrior _Endures_, skipping several turns but gaining high damage resistance. He then deals bonus damage based on what he endured.
actors.hero.abilities.warrior.endure.desc=The Warrior endures for 3 turns, taking half damage from all sources. This reduction is applied before damage resisting effects like armor.\n\nAfter enduring, the warrior's next hit within 10 turns gains bonus damage. This bonus damage is equal to one third of all the damage inflicted on him while enduring, before any damage reduction effects!\n\nIf the warrior has any combo, using this ability increases its remaining time by 3 turns.
actors.hero.abilities.warrior.endure.desc=The Warrior endures for 3 turns, taking half damage from all sources. This reduction is applied before damage resisting effects like armor.\n\nAfter enduring, the warrior's next hit within 10 turns gains bonus damage. This bonus damage is equal to half of all the damage inflicted on him while enduring, before any damage reduction effects!\n\nIf the warrior has any combo, using this ability increases its remaining time by 3 turns.
actors.hero.abilities.mage.elementalblast.name=elemental blast
actors.hero.abilities.mage.elementalblast.short_desc=The Mage emits an _Elemental Blast_ from his staff, covering a large area around him in an effect that varies based on the wand in his staff.

View File

@@ -111,7 +111,7 @@ public class Endure extends ArmorAbility {
public int adjustDamageTaken(int damage){
if (enduring) {
damageBonus += damage/3;
damageBonus += damage/2;
return damage/2;
}
return damage;

View File

@@ -46,7 +46,7 @@ import com.watabou.utils.Random;
public class HeroicLeap extends ArmorAbility {
{
baseChargeUse = 25f;
baseChargeUse = 35f;
}
@Override