summaryrefslogtreecommitdiff
path: root/data.ts
diff options
context:
space:
mode:
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,