summaryrefslogtreecommitdiff
path: root/data.ts
diff options
context:
space:
mode:
authorFrans Bongers <fransbongers@franss-mbp.home>2024-12-11 22:38:27 +0100
committerFrans Bongers <fransbongers@franss-mbp.home>2024-12-11 22:38:27 +0100
commit7517f0e485f63c6c97ee2871ca64373375c504b8 (patch)
treeea0dd0fce5234fc5f81ef1c10b8a451208a502cc /data.ts
parent9ec057935b3d77cc13f898b2ede63cf180443318 (diff)
downloadland-and-freedom-7517f0e485f63c6c97ee2871ca64373375c504b8.tar.gz
resolve fascist test and end of year
Diffstat (limited to 'data.ts')
-rw-r--r--data.ts9
1 files changed, 8 insertions, 1 deletions
diff --git a/data.ts b/data.ts
index f635e53..1ab4a98 100644
--- a/data.ts
+++ b/data.ts
@@ -1,4 +1,4 @@
-import { Card, Effect, FactionId, StaticData } from './types';
+import { Card, Effect, FactionId, Player, StaticData } from './types';
const LIBERTY = 0;
const COLLECTIVIZATION = 1;
@@ -35,7 +35,14 @@ const ANARCHISTS_ID = 'a' as FactionId;
const COMMUNISTS_ID = 'c' as FactionId;
const MODERATES_ID = 'm' as FactionId;
+const ANARCHIST = 'Anarchist' as Player;
+const COMMUNIST = 'Communist' as Player;
+const MODERATE = 'Moderate' as Player;
+
export {
+ ANARCHIST,
+ COMMUNIST,
+ MODERATE,
ANARCHISTS_ID,
COMMUNISTS_ID,
MODERATES_ID,