From 6587118413cd2275ad2ca45df0cc80ea883a5644 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, 5 Feb 2026 07:38:04 +0800 Subject: [PATCH] =?UTF-8?q?fix(Bullets/HXD):=20=E4=BF=AE=E5=A4=8D=E5=87=BB?= =?UTF-8?q?=E4=B8=ADboss=E6=97=B6=E9=94=99=E8=AF=AF=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E6=94=BB=E5=87=BB=E9=80=9F=E5=BA=A6=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将击中boss时增加的属性从攻击速度修正为伤害倍率,以符合预期设计 --- scripts/Contents/Bullets/HXD.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Contents/Bullets/HXD.gd b/scripts/Contents/Bullets/HXD.gd index 1f53f44..774d494 100644 --- a/scripts/Contents/Bullets/HXD.gd +++ b/scripts/Contents/Bullets/HXD.gd @@ -15,7 +15,7 @@ func destroy(_beacuseMap: bool): launcher.fields[FieldStore.Entity.DAMAGE_MULTIPILER] -= addTimes * delta func succeedToHit(_dmg: float, entity: EntityBase): if entity.isBoss: - launcher.fields[FieldStore.Entity.ATTACK_SPEED] += delta + launcher.fields[FieldStore.Entity.DAMAGE_MULTIPILER] += delta addTimes += 1 if is_instance_valid(lastHit): if lastHit.get_class() == entity.get_class():