diff options
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> = { |