From d94bd602fb124ca128fd899620f989bb8c52411e 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, 26 Sep 2025 22:37:28 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B0=83=E6=95=B4SevenSoul=E5=AD=90?= =?UTF-8?q?=E5=BC=B9=E7=9A=84=E8=83=BD=E9=87=8F=E5=AD=98=E5=82=A8=E5=92=8C?= =?UTF-8?q?=E7=94=9F=E5=91=BD=E6=81=A2=E5=A4=8D=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 移除生成时的固定生命恢复效果,并将能量存储系数从0.25降低到0.1,以平衡游戏性 --- scripts/Contents/Bullets/SevenSoul.gd | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/Contents/Bullets/SevenSoul.gd b/scripts/Contents/Bullets/SevenSoul.gd index 8e03c0e..3d19dca 100644 --- a/scripts/Contents/Bullets/SevenSoul.gd +++ b/scripts/Contents/Bullets/SevenSoul.gd @@ -21,12 +21,11 @@ func register(): var bullet = BulletTool.fromArea(area) if bullet and BulletTool.canDamage(bullet, launcher): launcher.tryHeal(1) - launcher.storeEnergy(damage * 0.25) + launcher.storeEnergy(damage * 0.1) ) func spawn(): modulate = Color(colors[index % colors.size()]) effect.emitting = true - launcher.tryHeal(5) func ai(): rotation_degrees = 360.0 / colors.size() * index + timeLived() / generationDuration * 360 - index / 6.0 * 360.0