v2.1.0: balance changes based on beta data

This commit is contained in:
Evan Debenham
2023-05-31 17:42:35 -04:00
parent ed1f1482d0
commit 55d4197844
4 changed files with 6 additions and 6 deletions

View File

@@ -1590,9 +1590,9 @@ items.weapon.melee.handaxe.ability_desc=The Duelist can perform a _heavy blow_ w
items.weapon.melee.handaxe.desc=A light axe, most commonly used for felling trees. The wide blade works well against foes as well.
items.weapon.melee.katana.name=katana
items.weapon.melee.katana.stats_desc=This weapon blocks 0-3 damage.
items.weapon.melee.katana.stats_desc=This weapon blocks 0-4 damage.
items.weapon.melee.katana.ability_name=lunge
items.weapon.melee.katana.ability_desc=The Duelist can _lunge_ with a katana at an enemy 1 tile away. This moves toward the enemy, deals +50% damage, and is guaranteed to hit.
items.weapon.melee.katana.ability_desc=The Duelist can _lunge_ with a katana at an enemy 1 tile away. This moves toward the enemy, deals +35% damage, and is guaranteed to hit.
items.weapon.melee.katana.desc=A slender sword with a large metal guard above the handle.
items.weapon.melee.longsword.name=longsword

View File

@@ -45,7 +45,7 @@ public class Katana extends MeleeWeapon {
@Override
public int defenseFactor( Char owner ) {
return 3; //3 extra defence
return 4; //4 extra defence
}
@Override
@@ -55,6 +55,6 @@ public class Katana extends MeleeWeapon {
@Override
protected void duelistAbility(Hero hero, Integer target) {
Rapier.lungeAbility(hero, target, 1.5f, 0, this);
Rapier.lungeAbility(hero, target, 1.35f, 0, this);
}
}

View File

@@ -44,7 +44,7 @@ public class Sickle extends MeleeWeapon {
hitSoundPitch = 1f;
tier = 2;
ACC = 0.76f; //24% penalty to accuracy
ACC = 0.68f; //32% penalty to accuracy
}
@Override

View File

@@ -35,7 +35,7 @@ public class WarScythe extends MeleeWeapon {
hitSoundPitch = 0.9f;
tier = 5;
ACC = 0.85f; //15% penalty to accuracy
ACC = 0.8f; //20% penalty to accuracy
}
@Override