From aeda27ef616c10c13a6a8a84c892d942de800c91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=A8=E8=90=BD=E5=9F=BA=E5=9B=B4=E8=99=BE?= <3161880837@qq.com> Date: Fri, 19 Sep 2025 21:59:15 +0800 Subject: [PATCH] =?UTF-8?q?fix(BossAttack/HeavyCrystal):=20=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E4=BC=A4=E5=AE=B3=E8=AE=A1=E7=AE=97=E9=80=BB=E8=BE=91?= =?UTF-8?q?=E5=B9=B6=E4=BC=98=E5=8C=96=E9=80=9F=E5=BA=A6=E5=A2=9E=E9=95=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 调整伤害计算方式,改为基于速度动态计算伤害值 移除初始固定伤害值,避免与动态计算冲突 优化子弹速度增长逻辑 --- scripts/Contents/Bullets/BossAttack/KukeMC/HeavyCrystal.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Contents/Bullets/BossAttack/KukeMC/HeavyCrystal.gd b/scripts/Contents/Bullets/BossAttack/KukeMC/HeavyCrystal.gd index 26aa2a2..6c7bed6 100644 --- a/scripts/Contents/Bullets/BossAttack/KukeMC/HeavyCrystal.gd +++ b/scripts/Contents/Bullets/BossAttack/KukeMC/HeavyCrystal.gd @@ -6,7 +6,6 @@ var readyTime: float = 1000 func register(): speed = 10 - damage = 30 func ai(): if timeLived() < readyTime: PresetBulletAI.lockLauncher(self, launcher, true) @@ -16,4 +15,5 @@ func ai(): track.visible = false hitbox.disabled = false PresetBulletAI.forward(self, rotation) + damage = speed / 5 speed *= 1.15