Reorganized files, started splitting up unit
This commit is contained in:
16
scripts/battle/combat_engine/combat_proposal.gd
Normal file
16
scripts/battle/combat_engine/combat_proposal.gd
Normal file
@@ -0,0 +1,16 @@
|
||||
class_name CombatProposal extends Resource
|
||||
|
||||
class CombatantStats:
|
||||
var unit: Unit
|
||||
var max_hp: int
|
||||
var hp: int
|
||||
var sp: int
|
||||
var hit: int
|
||||
var atk: int
|
||||
var def: int
|
||||
var spd: int
|
||||
var available_tactics: Array[CombatTactic] = []
|
||||
var selected_tactic: CombatTactic
|
||||
|
||||
var attacker: CombatantStats
|
||||
var defender: CombatantStats
|
||||
Reference in New Issue
Block a user