first version of enitites damageables weapons item and effects workflow

This commit is contained in:
Strieglitz
2025-03-09 23:56:19 +01:00
parent b90e0369bf
commit cb65c3a266
42 changed files with 263 additions and 180 deletions

View File

@@ -2,7 +2,7 @@ extends Resource
class_name EntityResource
@export var entity_stats: entityStats
@export var entity_stats: EntityStats
@export var entity_scene: PackedScene

View File

@@ -2,8 +2,9 @@ extends Resource
class_name EntityStats
@export var max_health: MaxHealth
@export var health: Health
@export var armor: Armor
@export var shield: Shield
@export var movementSpeed: MovementSpeed
@export var max_health: MaxHealthStat
@export var health: HealthStat
@export var armor: ArmorStat
@export var shield: ShieldStat
@export var max_shield: MaxShieldStat
@export var movementSpeed: MovementSpeedStat