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()