From e591debc6e1fd7dd665d1337991305f7776a1714 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sat, 28 Jan 2023 12:43:28 -0500 Subject: [PATCH] v2.0.0: actually implemented nerfs to furor and evasion in changelog --- .../shatteredpixeldungeon/items/rings/RingOfEvasion.java | 6 +++--- .../shatteredpixeldungeon/items/rings/RingOfFuror.java | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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 {