summaryrefslogtreecommitdiff
path: root/rules.ts
diff options
context:
space:
mode:
authorFrans Bongers <fransbongers@franss-mbp.home>2024-12-04 21:15:18 +0100
committerFrans Bongers <fransbongers@franss-mbp.home>2024-12-04 21:15:18 +0100
commit9ec057935b3d77cc13f898b2ede63cf180443318 (patch)
tree245017933f0ddbf997cd5aae6dedc634a1eb4386 /rules.ts
parent0341a2e6c13d2b6e401cff21cc51d11d248ddb6e (diff)
downloadland-and-freedom-9ec057935b3d77cc13f898b2ede63cf180443318.tar.gz
add event card data
Diffstat (limited to 'rules.ts')
-rw-r--r--rules.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/rules.ts b/rules.ts
index 51666c3..2b84ab4 100644
--- a/rules.ts
+++ b/rules.ts
@@ -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> = {