game: add enemy mods

This commit is contained in:
2025-08-22 07:49:02 +02:00
parent 40d6162b95
commit 950d177936
14 changed files with 173 additions and 35 deletions

View File

@@ -9,9 +9,9 @@ extends CharacterBody2D
@onready var contact_damage_cd: Timer = $ContactDamageCD
@onready var animation_player: AnimationPlayer = $AnimationPlayer
var move_speed: float
var health: float
var max_health: float
var move_speed: float = default_move_speed
var health: float = default_max_health
var max_health: float = default_max_health
var god_mode: bool = false
var is_dead: bool = false