From 0a839897e7043414d36182b0e8559f2537f2d2fc Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 29 Nov 2018 16:16:44 -0500 Subject: [PATCH] v0.7.1: nerfed new ring of furor --- .../shatteredpixeldungeon/items/rings/RingOfFuror.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 be3a2cb4f..e7ae90aae 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 @@ -32,9 +32,9 @@ public class RingOfFuror extends Ring { String desc = desc(); if (isKnown()){ if (isIdentified()){ - desc += "\n\n" + Messages.get(this, "stats", new DecimalFormat("#.##").format(100f * (Math.pow(1.125f, soloBonus()) - 1f))); + desc += "\n\n" + Messages.get(this, "stats", new DecimalFormat("#.##").format(100f * (Math.pow(1.105f, soloBonus()) - 1f))); } else { - desc += "\n\n" + Messages.get(this, "typical_stats", new DecimalFormat("#.##").format(12.5f)); + desc += "\n\n" + Messages.get(this, "typical_stats", new DecimalFormat("#.##").format(10.5f)); } } return desc; @@ -46,7 +46,7 @@ public class RingOfFuror extends Ring { } public static float attackDelayMultiplier(Char target ){ - return 1f / (float)Math.pow(1.125, getBonus(target, Furor.class)); + return 1f / (float)Math.pow(1.105, getBonus(target, Furor.class)); } public class Furor extends RingBuff {