This commit is contained in:
2026-01-17 13:59:18 -06:00
parent c46afdac76
commit fbc4e070da
10 changed files with 145 additions and 52 deletions

View File

@@ -2,12 +2,15 @@ class_name BattleDecision
var action:BattleAction
var user:BattleFighter
var target:BattleFighter
var targets:Array[BattleFighter]
func _init(_action:BattleAction, _user:BattleFighter, _target:BattleFighter) -> void:
func _init(_action:BattleAction, _user:BattleFighter, _targets:Array[BattleFighter]) -> void:
action = _action
user = _user
target = _target
targets = _targets
func getPriority() -> float:
return 1.0
func execute(cutscene:Cutscene) -> void:
pass