From 37ff943c89c7188a91ec431b19f1f7948094b036 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 28 May 2020 18:31:19 -0400 Subject: [PATCH] v0.8.1: ring of elements resistance per level down to 17.5% from 20% --- .../shatteredpixeldungeon/items/rings/RingOfElements.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfElements.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfElements.java index 0631d5b67..1046f7ffa 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfElements.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfElements.java @@ -49,9 +49,9 @@ public class RingOfElements extends Ring { public String statsInfo() { if (isIdentified()){ - return Messages.get(this, "stats", new DecimalFormat("#.##").format(100f * (1f - Math.pow(0.80f, soloBuffedBonus())))); + return Messages.get(this, "stats", new DecimalFormat("#.##").format(100f * (1f - Math.pow(0.825f, soloBuffedBonus())))); } else { - return Messages.get(this, "typical_stats", new DecimalFormat("#.##").format(20f)); + return Messages.get(this, "typical_stats", new DecimalFormat("#.##").format(17.5f)); } } @@ -81,7 +81,7 @@ public class RingOfElements extends Ring { for (Class c : RESISTS){ if (c.isAssignableFrom(effect)){ - return (float)Math.pow(0.80, getBuffedBonus(target, Resistance.class)); + return (float)Math.pow(0.825, getBuffedBonus(target, Resistance.class)); } }