diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEvasion.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEvasion.java index 5178ec441..16423f1a9 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEvasion.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEvasion.java @@ -35,9 +35,9 @@ public class RingOfEvasion extends Ring { public String statsInfo() { if (isIdentified()){ - return Messages.get(this, "stats", new DecimalFormat("#.##").format(100f * (Math.pow(1.15f, soloBuffedBonus()) - 1f))); + return Messages.get(this, "stats", new DecimalFormat("#.##").format(100f * (Math.pow(1.125f, soloBuffedBonus()) - 1f))); } else { - return Messages.get(this, "typical_stats", new DecimalFormat("#.##").format(15f)); + return Messages.get(this, "typical_stats", new DecimalFormat("#.##").format(12.5f)); } } @@ -47,7 +47,7 @@ public class RingOfEvasion extends Ring { } public static float evasionMultiplier( Char target ){ - return (float) Math.pow( 1.15, getBuffedBonus(target, Evasion.class)); + return (float) Math.pow( 1.125, getBuffedBonus(target, Evasion.class)); } public class Evasion extends RingBuff { diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfFuror.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfFuror.java index f493df5f8..631ea672e 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfFuror.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfFuror.java @@ -35,9 +35,9 @@ public class RingOfFuror extends Ring { public String statsInfo() { if (isIdentified()){ - return Messages.get(this, "stats", new DecimalFormat("#.##").format(100f * (Math.pow(1.105f, soloBuffedBonus()) - 1f))); + return Messages.get(this, "stats", new DecimalFormat("#.##").format(100f * (Math.pow(1.0905f, soloBuffedBonus()) - 1f))); } else { - return Messages.get(this, "typical_stats", new DecimalFormat("#.##").format(10.5f)); + return Messages.get(this, "typical_stats", new DecimalFormat("#.##").format(9.05f)); } } @@ -47,7 +47,7 @@ public class RingOfFuror extends Ring { } public static float attackSpeedMultiplier(Char target ){ - return (float)Math.pow(1.105, getBuffedBonus(target, Furor.class)); + return (float)Math.pow(1.0905, getBuffedBonus(target, Furor.class)); } public class Furor extends RingBuff {