v0.9.4: decreased the base damage on the mage's staff from 8 to 7.
This commit is contained in:
parent
c0f3355da6
commit
43aa79e265
|
@ -88,8 +88,8 @@ public class MagesStaff extends MeleeWeapon {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int max(int lvl) {
|
public int max(int lvl) {
|
||||||
return 4*(tier+1) + //8 base damage, down from 10
|
return Math.round(3.5f*(tier+1)) + //7 base damage, down from 10
|
||||||
lvl*(tier+1); //scaling unaffected
|
lvl*(tier+1); //scaling unaffected
|
||||||
}
|
}
|
||||||
|
|
||||||
public MagesStaff(Wand wand){
|
public MagesStaff(Wand wand){
|
||||||
|
|
Loading…
Reference in New Issue
Block a user