v0.8.1: ring of elements resistance per level down to 17.5% from 20%

This commit is contained in:
Evan Debenham 2020-05-28 18:31:19 -04:00
parent 920d5ed97e
commit 37ff943c89

View File

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