v0.9.1: buffed artifact recharge on ring of energy

This commit is contained in:
Evan Debenham 2020-11-27 17:57:25 -05:00
parent 89cf94b927
commit 3959c7a51d

View File

@ -37,11 +37,11 @@ public class RingOfEnergy extends Ring {
if (isIdentified()){ if (isIdentified()){
return Messages.get(this, "stats", return Messages.get(this, "stats",
new DecimalFormat("#.##").format(100f * (Math.pow(1.20f, soloBuffedBonus()) - 1f)), 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 { } else {
return Messages.get(this, "typical_stats", return Messages.get(this, "typical_stats",
new DecimalFormat("#.##").format(20f), 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 ){ 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 { public class Energy extends RingBuff {