v0.4.1: reduced the power of ring of force past 18 strength
This commit is contained in:
parent
ba9de0be47
commit
7ef2252cac
|
@ -33,7 +33,12 @@ public class RingOfForce extends Ring {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static float tier(int str){
|
private static float tier(int str){
|
||||||
return Math.max(1, (str - 8)/2f);
|
float tier = Math.max(1, (str - 8)/2f);
|
||||||
|
//each str point after 18 is half as effective
|
||||||
|
if (tier > 5){
|
||||||
|
tier = 5 + (tier - 5) / 2f;
|
||||||
|
}
|
||||||
|
return tier;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static int damageRoll( Hero hero ){
|
public static int damageRoll( Hero hero ){
|
||||||
|
|
Loading…
Reference in New Issue
Block a user