v0.4.1: reduced the power of ring of force past 18 strength

This commit is contained in:
Evan Debenham 2016-07-05 02:59:01 -04:00 committed by Evan Debenham
parent ba9de0be47
commit 7ef2252cac

View File

@ -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 ){