1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-28 06:51:54 +08:00

fix(角色平衡): 调整牧羊犬格挡冷却时间和治疗量

将牧羊犬的格挡冷却时间从5秒减少到3秒
将HCN的治疗量从3点提升到5点
移除牧羊犬卡片的clickToRebuild属性
This commit is contained in:
2026-05-04 21:39:56 +08:00
parent dc4b080a09
commit fac8d82157
3 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
extends PlayerBase
func summoned(entity: SummonBase):
entity.died.connect(func(): tryHeal(3))
entity.died.connect(func(): tryHeal(5))
+1 -1
View File
@@ -1,6 +1,6 @@
extends PlayerBase
var parryCounter: CooldownTimer = CooldownTimer.new(5000)
var parryCounter: CooldownTimer = CooldownTimer.new(3000)
func ai():
super.ai()