diff options
Diffstat (limited to 'data.ts')
-rw-r--r-- | data.ts | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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, |