19 lines
503 B
GDScript
19 lines
503 B
GDScript
class_name PlayerStats
|
|
extends BaseStats
|
|
|
|
@export var speed: float = 5.0
|
|
@export var jump_velocity: float = 4.5
|
|
@export var target_range: float = 20.0
|
|
@export var combat_timeout: float = 5.0
|
|
@export var respawn_time: float = 3.0
|
|
@export var gcd_time: float = 0.5
|
|
@export var aa_cooldown: float = 0.5
|
|
|
|
@export var level: int = 1
|
|
@export var xp: float = 0.0
|
|
@export var xp_to_next: float = 50.0
|
|
|
|
@export var buff_damage: float = 1.0
|
|
@export var buff_heal: float = 1.0
|
|
@export var buff_shield: float = 1.0
|