v0.4.0: buffed swiftness glyph

This commit is contained in:
Evan Debenham 2016-06-11 18:16:06 -04:00 committed by Evan Debenham
parent eab9c65911
commit 673467b0fd

View File

@ -297,7 +297,7 @@ public class Hero extends Char {
if (belongings.armor != null && belongings.armor.glyph != null
&& belongings.armor.glyph instanceof Swiftness)
bonus += belongings.armor.level()*2;
bonus += 5 + belongings.armor.level()*1.5f;
return Math.round((defenseSkill + bonus) * evasion);
}