v0.9.4: decreased the base damage on the mage's staff from 8 to 7.

This commit is contained in:
Evan Debenham 2021-07-25 22:44:58 -04:00
parent c0f3355da6
commit 43aa79e265

View File

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