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)); } }