new features, play menu, deck builder, deck selection

This commit is contained in:
2026-01-28 20:22:09 -05:00
parent f4c7bab6b0
commit bf9aa3fa23
80 changed files with 4501 additions and 58 deletions

View File

@@ -121,6 +121,15 @@ static func card_type_to_string(t: CardType) -> String:
CardType.MONSTER: return "Monster"
return "Unknown"
## Helper functions for AbilityType
static func ability_type_to_string(t: AbilityType) -> String:
match t:
AbilityType.FIELD: return "FIELD"
AbilityType.AUTO: return "AUTO"
AbilityType.ACTION: return "ACTION"
AbilityType.SPECIAL: return "SPECIAL"
return "Unknown"
## Helper functions for TurnPhase
static func phase_to_string(p: TurnPhase) -> String:
match p: