mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-05-27 22:41:56 +08:00
2a864ae607
调整Lynx的冲刺倍率从2改为1.5,下调牧羊犬的技能冷却时间从1000ms到500ms,并更新其技能描述文本
12 lines
176 B
GDScript
12 lines
176 B
GDScript
extends PlayerBase
|
|
|
|
var healCounter = CooldownTimer.new(500)
|
|
|
|
func register():
|
|
super.register()
|
|
madeDamage.connect(
|
|
func(_w, _b):
|
|
if healCounter.start():
|
|
heal(1)
|
|
)
|