v0.4.1a: buffed the damage on ring of force

This commit is contained in:
Evan Debenham 2016-08-08 15:19:55 -04:00
parent c7613926f5
commit 64080163b2

View File

@ -55,11 +55,11 @@ public class RingOfForce extends Ring {
); );
} }
//20% reduced from equivalent tier weapon //same as equivalent tier weapon
private static int max(int lvl, float tier){ private static int max(int lvl, float tier){
return Math.round( return Math.round(
4*(tier+1) + //base, 20% reduced from equivalent tier 5*(tier+1) + //base
lvl*(tier) //level scaling, 1 reduced from equivalent tier lvl*(tier+1) //level scaling
); );
} }