## Player: | Property | Type | Description | -------- | ---- | ----------- | name | String | The player's name. | id | String | The player's unique ID. ## Deck | Property | Type | Description | -------- | ---- | ----------- | discard | String[] | The used cards | deck | String[] | The unused cards ## Game: | Property | Type | Description | -------- | ---- | ----------- | id | String | The game's ID to join with. | teams | Team[] | The teams that are a part of this game. | players | Player[] | All of the players that are in this game. | questons | Deck | The deck and discard of the question cards. | objects | Deck | The deck and discard of the object cards. ## Team | Property | Type | Description | -------- | ---- | ----------- | players | Player[] | All the Players that are on this team. | spirit | Player | The player that is acting as the team's spirit. | hand | String[] | The cards that are in this team's hand. | questions | String[] | The questions that the mediums have asked the spirit. | answers | String[] | The answers that the spirit has given.