diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEnergy.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEnergy.java index 267951ea2..08a27b028 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEnergy.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEnergy.java @@ -37,11 +37,11 @@ public class RingOfEnergy extends Ring { if (isIdentified()){ return Messages.get(this, "stats", new DecimalFormat("#.##").format(100f * (Math.pow(1.20f, soloBuffedBonus()) - 1f)), - new DecimalFormat("#.##").format(100f * (Math.pow(1.10f, soloBuffedBonus()) - 1f))); + new DecimalFormat("#.##").format(100f * (Math.pow(1.15f, soloBuffedBonus()) - 1f))); } else { return Messages.get(this, "typical_stats", new DecimalFormat("#.##").format(20f), - new DecimalFormat("#.##").format(10f)); + new DecimalFormat("#.##").format(15f)); } } @@ -55,7 +55,7 @@ public class RingOfEnergy extends Ring { } public static float artifactChargeMultiplier( Char target ){ - return (float)Math.pow(1.10, getBuffedBonus(target, Energy.class)); + return (float)Math.pow(1.15, getBuffedBonus(target, Energy.class)); } public class Energy extends RingBuff {