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

12 lines
176 B
GDScript
Raw Permalink Normal View History

extends PlayerBase
var healCounter = CooldownTimer.new(500)
func register():
super.register()
madeDamage.connect(
func(_w, _b):
if healCounter.start():
heal(1)
)