v2.0.0: actually implemented nerfs to furor and evasion in changelog
This commit is contained in:
committed by
Evan Debenham
parent
8940c16937
commit
e591debc6e
+3
-3
@@ -35,9 +35,9 @@ public class RingOfEvasion extends Ring {
|
|||||||
|
|
||||||
public String statsInfo() {
|
public String statsInfo() {
|
||||||
if (isIdentified()){
|
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 {
|
} 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 ){
|
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 {
|
public class Evasion extends RingBuff {
|
||||||
|
|||||||
+3
-3
@@ -35,9 +35,9 @@ public class RingOfFuror extends Ring {
|
|||||||
|
|
||||||
public String statsInfo() {
|
public String statsInfo() {
|
||||||
if (isIdentified()){
|
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 {
|
} 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 ){
|
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 {
|
public class Furor extends RingBuff {
|
||||||
|
|||||||
Reference in New Issue
Block a user