summaryrefslogtreecommitdiff
path: root/types.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'types.d.ts')
-rw-r--r--types.d.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/types.d.ts b/types.d.ts
index 7c2e648..1f179cd 100644
--- a/types.d.ts
+++ b/types.d.ts
@@ -59,6 +59,7 @@ export interface Game {
initiative: FactionId;
medallions: Record<FactionId, number[]> & { pool: Array<number | null> };
played_card: CardId | null;
+ player_order: Player[];
selected_cards: Record<FactionId, CardId[]>;
selectable_cards: CardId[]; // used for specific events
tableaus: Record<FactionId, CardId[]>;
@@ -80,7 +81,7 @@ export interface View {
prompt: string | null;
actions?: any;
victory?: string;
-
+ current: Player | 'Observer';
selected_cards: CardId[];
bag_of_glory: Game['bag_of_glory'];
bonuses: Game['bonuses'];
@@ -92,6 +93,7 @@ export interface View {
initiative: Game['initiative'];
medallions: Game['medallions'];
played_card: Game['played_card'];
+ player_order: Game['player_order'];
selectable_cards: Game['selectable_cards'];
tableaus: Game['tableaus'];
tracks: number[];