diff options
author | Frans Bongers <fransbongers@franss-mbp.home> | 2024-12-11 22:38:27 +0100 |
---|---|---|
committer | Frans Bongers <fransbongers@franss-mbp.home> | 2024-12-11 22:38:27 +0100 |
commit | 7517f0e485f63c6c97ee2871ca64373375c504b8 (patch) | |
tree | ea0dd0fce5234fc5f81ef1c10b8a451208a502cc /types.d.ts | |
parent | 9ec057935b3d77cc13f898b2ede63cf180443318 (diff) | |
download | land-and-freedom-7517f0e485f63c6c97ee2871ca64373375c504b8.tar.gz |
resolve fascist test and end of year
Diffstat (limited to 'types.d.ts')
-rw-r--r-- | types.d.ts | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -19,7 +19,7 @@ export interface Game { year: number; active: Player | null; state: string | null; - bag_of_glory: Record<FactionId, number>; + bag_of_glory: FactionId[]; blank_markers: number[][]; bonuses: number[]; chosen_cards: Record<FactionId, CardId>; @@ -32,6 +32,7 @@ export interface Game { n: number; s: number; }; + glory: FactionId[]; hands: Record<FactionId, CardId[]>; hero_points: Record<FactionId | 'pool', number>; initiative: FactionId; @@ -63,10 +64,13 @@ export interface View { selected?: string; selected_card: CardId | null; + bag_of_glory: Game['bag_of_glory']; bonuses: Game['bonuses']; current_events: CardId[]; fronts: Game['fronts']; + glory: Game['glory']; hand: CardId[]; + hero_points: Game['hero_points']; medaillons: Game['medaillons']; tableaus: Game['tableaus']; tracks: number[]; |