balance: 回调过度难度——精力消耗4(持续时间翻倍)/恢复8,初始HC170,怪物HP/速度适度降低至合理区间

This commit is contained in:
Cloud Bot
2026-03-24 09:02:02 +00:00
parent 4fec1ebe9d
commit 6843d2b74c
8 changed files with 17 additions and 16 deletions

View File

@@ -98,7 +98,7 @@ export abstract class TowerBase {
const target = this.findTarget(enemies)
if (target && this.attackCooldown <= 0) {
this.attack(target)
this.stamina -= 8 // 精力消耗:5→8更快进入摸鱼状态
this.stamina -= 4 // 精力消耗:8→4持续战斗时间翻倍
// 应用 PUA 攻速倍率(倍率越高冷却越短)
this.attackCooldown = 1000 / (this.attackSpeed * this._puaSpeedMult)
this.updateStaminaBar()