v1.1.0: reduced the mage's staff base damage to 1-6 from 1-7

This commit is contained in:
Evan Debenham 2021-11-22 21:24:57 -05:00
parent 15237fb585
commit 195b3a34ca

View File

@ -88,7 +88,7 @@ public class MagesStaff extends MeleeWeapon {
@Override @Override
public int max(int lvl) { public int max(int lvl) {
return Math.round(3.5f*(tier+1)) + //7 base damage, down from 10 return Math.round(3f*(tier+1)) + //6 base damage, down from 10
lvl*(tier+1); //scaling unaffected lvl*(tier+1); //scaling unaffected
} }