Player prog

This commit is contained in:
2026-01-11 20:22:15 -06:00
parent 7defac68c4
commit 8a599a054c
6 changed files with 32 additions and 10 deletions

View File

@@ -3,7 +3,9 @@ class_name PartySingleton extends Node
static var PARTY_JOHN = PartyMember.new({
'name': "John",
'team': BattleFighter.FighterTeam.PLAYER,
"maxHealth": 9999999999
"maxHealth": 9999999999,
"movePrimary": BattleMove.MOVE_PUNCH,
"movesMagical": [ BattleMove.MOVE_FIRE1 ],
})
static var BACKPACK = Inventory.new()