RAIDER_Survivor/scripts/resources/Character/Equipment/EquipmentStats.gd
2025-02-18 23:38:21 +01:00

13 lines
267 B
GDScript

extends Resource
class_name EquipmentStats
@export var max_health: MaxHealth
@export var armor: Armor
@export var shield: Shield
@export var movementSpeed: MovementSpeed
@export var damage: Damage
func combine (other: EquipmentStats)->EquipmentStats:
return null