From 8e68d8775b320ce462e33ee7f4a3dc71c835140b 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: Thu, 18 Sep 2025 22:30:56 +0800 Subject: [PATCH] =?UTF-8?q?fix(BossAttack):=20=E8=B0=83=E6=95=B4=E9=87=8D?= =?UTF-8?q?=E5=9E=8B=E6=B0=B4=E6=99=B6=E5=AD=90=E5=BC=B9=E7=9A=84=E4=BC=A4?= =?UTF-8?q?=E5=AE=B3=E8=AE=A1=E7=AE=97=E6=AF=94=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将伤害计算从速度的1/4改为1/5,以平衡游戏难度 --- 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 b1aec93..03ff863 100644 --- a/scripts/Contents/Bullets/BossAttack/KukeMC/HeavyCrystal.gd +++ b/scripts/Contents/Bullets/BossAttack/KukeMC/HeavyCrystal.gd @@ -12,7 +12,7 @@ func ai(): rotation = launcher.position.angle_to_point(launcher.currentFocusedBoss.getTrackingAnchor()) hitbox.disabled = true else: - damage = speed / 4 + damage = speed / 5 PresetBulletAI.forward(self, rotation) speed *= 1.2 track.visible = false