13 lines
267 B
GDScript
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
|