v0.7.1: nerfed new ring of furor

This commit is contained in:
Evan Debenham 2018-11-29 16:16:44 -05:00
parent ff02c1d549
commit 0a839897e7

View File

@ -32,9 +32,9 @@ public class RingOfFuror extends Ring {
String desc = desc();
if (isKnown()){
if (isIdentified()){
desc += "\n\n" + Messages.get(this, "stats", new DecimalFormat("#.##").format(100f * (Math.pow(1.125f, soloBonus()) - 1f)));
desc += "\n\n" + Messages.get(this, "stats", new DecimalFormat("#.##").format(100f * (Math.pow(1.105f, soloBonus()) - 1f)));
} else {
desc += "\n\n" + Messages.get(this, "typical_stats", new DecimalFormat("#.##").format(12.5f));
desc += "\n\n" + Messages.get(this, "typical_stats", new DecimalFormat("#.##").format(10.5f));
}
}
return desc;
@ -46,7 +46,7 @@ public class RingOfFuror extends Ring {
}
public static float attackDelayMultiplier(Char target ){
return 1f / (float)Math.pow(1.125, getBonus(target, Furor.class));
return 1f / (float)Math.pow(1.105, getBonus(target, Furor.class));
}
public class Furor extends RingBuff {