diff options
author | Frans Bongers <fransbongers@macbookpro.home> | 2025-03-21 21:34:05 +0100 |
---|---|---|
committer | Frans Bongers <fransbongers@macbookpro.home> | 2025-03-21 21:34:05 +0100 |
commit | 8f5f3f54a610801a1d739636b49343a122f7113a (patch) | |
tree | bebc0159ea037d3ba7af600d537ff2d5ccdb1750 /data.ts | |
parent | 9f01f50ce897eda24625d292402b6a731c28e1f6 (diff) | |
download | land-and-freedom-8f5f3f54a610801a1d739636b49343a122f7113a.tar.gz |
momentum refactor
Diffstat (limited to 'data.ts')
-rw-r--r-- | data.ts | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -13,7 +13,7 @@ const TEAMWORK_BONUS = 1; const OFF = 0; const ON = 1; -const PLAYER_WITH_MOST_HERO_POINTS = 0; +const PLAYER_WITH_MOST_HERO_POINTS = 6; // Should not overlap with factionId const INITIATIVE_PLAYER = 'i'; const ALL_PLAYERS = 'all'; @@ -53,6 +53,8 @@ const VOLUNTEERS_MEDALLION_ID = 6; const ARCHIVES_MEDALLION_ID = 7; const ORGANIZATION_MEDALLION_ID = 8; +const MOMENTUM = 'momentum'; + // Abilities granted by cards const ANARCHIST_EXTRA_HERO_POINT = 0; const COMMUNIST_EXTRA_HERO_POINT = 1; @@ -116,6 +118,7 @@ export { ANARCHIST_EXTRA_HERO_POINT, COMMUNIST_EXTRA_HERO_POINT, LIBERTY_OR_COLLECTIVIZATION, + MOMENTUM, }; const data: StaticData = { |