This commit is contained in:
2026-01-11 19:32:12 -06:00
parent 6ecbc33cc2
commit 561ab5a983
19 changed files with 245 additions and 203 deletions

View File

@@ -1,6 +1,11 @@
class_name PartySingleton extends Node
static var PARTY_JOHN = PartyMember.new("John")
static var PARTY_JOHN = PartyMember.new({
'name': "John",
'team': BattleFighter.FighterTeam.PLAYER,
})
static var BACKPACK = Inventory.new()
static func getFullParty() -> Array[PartyMember]:
return [