boss start, some enemies

This commit is contained in:
Daniel Kauss Serna 2026-04-16 18:53:36 +02:00
parent 93968ff9fb
commit 66ecb04bd1
123 changed files with 1884 additions and 499 deletions

View file

@ -9,9 +9,9 @@ extends MaskAbility
var traveled: float = 0.0
var bouncing = false
var target : Enemy = null
var target : Entity = null
var bounces := max_bounces
var already_hit : Array[Enemy] = []
var already_hit : Array[Entity] = []
func mask_ready():
super.mask_ready()
@ -66,3 +66,5 @@ func _on_hitbox_hit_entity(entity : Entity) -> void:
target = entity
already_hit = [entity]
#change_target()
else:
entity.damage()