missdemandrake.gd 330 B

1234567891011121314
  1. extends Plant
  2. class_name Mandrake
  3. func _ready():
  4. super()
  5. connect("shoot", _on_shoot)
  6. func _process(delta):
  7. super(delta)
  8. $Eyes.set_modulate(Color(1, 1, 1, 1.0 - (attack_timer.get_time_left() / 10.0)))
  9. func _on_shoot(victim: UFO):
  10. if victim != null and not dead:
  11. victim.deal_damage(attack_damage)