From fac8d82157e41a156ea299b4fd52a6c06222e53a 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: Mon, 4 May 2026 21:39:56 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E8=A7=92=E8=89=B2=E5=B9=B3=E8=A1=A1):=20?= =?UTF-8?q?=E8=B0=83=E6=95=B4=E7=89=A7=E7=BE=8A=E7=8A=AC=E6=A0=BC=E6=8C=A1?= =?UTF-8?q?=E5=86=B7=E5=8D=B4=E6=97=B6=E9=97=B4=E5=92=8C=E6=B2=BB=E7=96=97?= =?UTF-8?q?=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将牧羊犬的格挡冷却时间从5秒减少到3秒 将HCN的治疗量从3点提升到5点 移除牧羊犬卡片的clickToRebuild属性 --- components/CharacterCards/MuyangDog.tscn | 5 ++--- scripts/Contents/Characters/HCN.gd | 2 +- scripts/Contents/Characters/MuyangDog.gd | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/components/CharacterCards/MuyangDog.tscn b/components/CharacterCards/MuyangDog.tscn index f2e26de..a89abc8 100644 --- a/components/CharacterCards/MuyangDog.tscn +++ b/components/CharacterCards/MuyangDog.tscn @@ -19,10 +19,9 @@ theme_override_styles/panel = SubResource("StyleBoxFlat_fi2nw") displayName = "牧羊犬" slogan = "以身挡险,恪守使命不离不弃" avatar = ExtResource("2_fi2nw") -description = "每5秒发动格挡,弹反一切子弹。" +description = "每3秒发动格挡,弹反一切子弹。" fields = Array[int]([0, 8, 3]) fieldValues = Array[float]([50.0, 0.15, -0.2]) -clickToRebuild = true [node name="avatarTexture" parent="wrapper" parent_id_path=PackedInt32Array(2023039659) index="0" unique_id=1334645594] texture = ExtResource("2_fi2nw") @@ -34,4 +33,4 @@ text = "牧羊犬" text = "“以身挡险,恪守使命不离不弃”" [node name="descriptionLabel" parent="wrapper/infoContainer" parent_id_path=PackedInt32Array(143242635) index="1" unique_id=808054282] -text = "每5秒发动格挡,弹反一切子弹。" +text = "每3秒发动格挡,弹反一切子弹。" diff --git a/scripts/Contents/Characters/HCN.gd b/scripts/Contents/Characters/HCN.gd index 75c8e18..80697f4 100644 --- a/scripts/Contents/Characters/HCN.gd +++ b/scripts/Contents/Characters/HCN.gd @@ -1,4 +1,4 @@ extends PlayerBase func summoned(entity: SummonBase): - entity.died.connect(func(): tryHeal(3)) + entity.died.connect(func(): tryHeal(5)) diff --git a/scripts/Contents/Characters/MuyangDog.gd b/scripts/Contents/Characters/MuyangDog.gd index 1fd0060..ac6bd33 100644 --- a/scripts/Contents/Characters/MuyangDog.gd +++ b/scripts/Contents/Characters/MuyangDog.gd @@ -1,6 +1,6 @@ extends PlayerBase -var parryCounter: CooldownTimer = CooldownTimer.new(5000) +var parryCounter: CooldownTimer = CooldownTimer.new(3000) func ai(): super.ai()