10 lines
253 B
GDScript
10 lines
253 B
GDScript
# base ability class containing the main definitions
|
|
class_name AbilityBase
|
|
extends PanelContainer
|
|
|
|
|
|
@export var attack_range := 0
|
|
@export var damage_type := Globals.Ability.PDamageType.SLICE
|
|
@export var auto_damage := 200
|
|
@export var auto_speed := 1.0
|