diff options
author | Frans Bongers <fransbongers@franss-mbp.home> | 2024-12-04 21:15:18 +0100 |
---|---|---|
committer | Frans Bongers <fransbongers@franss-mbp.home> | 2024-12-04 21:15:18 +0100 |
commit | 9ec057935b3d77cc13f898b2ede63cf180443318 (patch) | |
tree | 245017933f0ddbf997cd5aae6dedc634a1eb4386 /rules.ts | |
parent | 0341a2e6c13d2b6e401cff21cc51d11d248ddb6e (diff) | |
download | land-and-freedom-9ec057935b3d77cc13f898b2ede63cf180443318.tar.gz |
add event card data
Diffstat (limited to 'rules.ts')
-rw-r--r-- | rules.ts | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -18,6 +18,9 @@ import { } from './types'; import data, { + ANARCHISTS_ID, + COMMUNISTS_ID, + MODERATES_ID, // LIBERTY, // COLLECTIVIZATION, // GOVERNMENT, @@ -57,10 +60,6 @@ export const ANARCHIST = 'Anarchist' as Player; export const COMMUNIST = 'Communist' as Player; export const MODERATE = 'Moderate' as Player; -const ANARCHISTS_ID = 'a' as FactionId; -const COMMUNISTS_ID = 'c' as FactionId; -const MODERATES_ID = 'm' as FactionId; - const role_ids = [ANARCHISTS_ID, COMMUNISTS_ID, MODERATES_ID]; const faction_player_map: Record<FactionId, Player> = { |