v0.4.1a: nerfed runic blade
This commit is contained in:
parent
2dff690c5f
commit
98a8a36039
|
@ -30,18 +30,12 @@ public class RunicBlade extends MeleeWeapon {
|
||||||
tier = 4;
|
tier = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
//Essentially it's a tier 4 weapon, with tier 3 base damage, and tier 6 scaling.
|
//Essentially it's a tier 4 weapon, with tier 3 base max damage, and slightly more than tier 5 scaling.
|
||||||
//equal to tier 4 in damage at +3, equal to tier 5 at +
|
//equal to tier 4 in damage at +4
|
||||||
|
|
||||||
@Override
|
|
||||||
public int min(int lvl) {
|
|
||||||
return tier-1 + //3 base, down from 4
|
|
||||||
lvl*2; //+2 per level, up from +1
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int max(int lvl) {
|
public int max(int lvl) {
|
||||||
return 5*(tier) + //20 base, down from 25
|
return 5*(tier) + //20 base, down from 25
|
||||||
lvl*(tier+2); //+6 per level, up from +5
|
Math.round(lvl*(tier+2.25f)); //+6.25 per level, up from +5
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user