v2.0.0: slightly nerfed Duelist weapon charge speed

This commit is contained in:
Evan Debenham
2022-12-12 12:38:29 -05:00
parent c9e6747474
commit f046dcf096

View File

@@ -279,7 +279,7 @@ public class MeleeWeapon extends Weapon {
LockedFloor lock = target.buff(LockedFloor.class);
if (charges < chargeCap()){
if (lock == null || lock.regenOn()){
partialCharge += 1/(45f-(chargeCap()-charges)); // 45 to 35 turns per charge
partialCharge += 1/(50f-(chargeCap()-charges)); // 50 to 40 turns per charge
if (partialCharge >= 1){
charges++;
partialCharge--;