v2.0.0: actually implemented nerfs to furor and evasion in changelog

This commit is contained in:
Evan Debenham
2023-01-28 12:43:28 -05:00
committed by Evan Debenham
parent 8940c16937
commit e591debc6e
2 changed files with 6 additions and 6 deletions

View File

@@ -35,9 +35,9 @@ public class RingOfEvasion extends Ring {
public String statsInfo() {
if (isIdentified()){
return Messages.get(this, "stats", new DecimalFormat("#.##").format(100f * (Math.pow(1.15f, soloBuffedBonus()) - 1f)));
return Messages.get(this, "stats", new DecimalFormat("#.##").format(100f * (Math.pow(1.125f, soloBuffedBonus()) - 1f)));
} else {
return Messages.get(this, "typical_stats", new DecimalFormat("#.##").format(15f));
return Messages.get(this, "typical_stats", new DecimalFormat("#.##").format(12.5f));
}
}
@@ -47,7 +47,7 @@ public class RingOfEvasion extends Ring {
}
public static float evasionMultiplier( Char target ){
return (float) Math.pow( 1.15, getBuffedBonus(target, Evasion.class));
return (float) Math.pow( 1.125, getBuffedBonus(target, Evasion.class));
}
public class Evasion extends RingBuff {

View File

@@ -35,9 +35,9 @@ public class RingOfFuror extends Ring {
public String statsInfo() {
if (isIdentified()){
return Messages.get(this, "stats", new DecimalFormat("#.##").format(100f * (Math.pow(1.105f, soloBuffedBonus()) - 1f)));
return Messages.get(this, "stats", new DecimalFormat("#.##").format(100f * (Math.pow(1.0905f, soloBuffedBonus()) - 1f)));
} else {
return Messages.get(this, "typical_stats", new DecimalFormat("#.##").format(10.5f));
return Messages.get(this, "typical_stats", new DecimalFormat("#.##").format(9.05f));
}
}
@@ -47,7 +47,7 @@ public class RingOfFuror extends Ring {
}
public static float attackSpeedMultiplier(Char target ){
return (float)Math.pow(1.105, getBuffedBonus(target, Furor.class));
return (float)Math.pow(1.0905, getBuffedBonus(target, Furor.class));
}
public class Furor extends RingBuff {