diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -444,6 +444,11 @@ function can_play_event(c) { if (!has_versailles_cube(NATIONAL_ASSEMBLY)) return false + // Banque de France - must decrease red momentum + if (c === 20) + if (game.red_momentum < 1) + return false + // Le Reveil - cannot be played if Socialist Newspaper Ban if (c === 21) if (game.snb) @@ -3861,6 +3866,7 @@ CODE[25] = [ // Paul Cluseret CODE[26] = [ // Gaston Crémieux [ vm_increase_revolutionary_momentum ], + [ vm_prompt, "Place up to 2 in Social Movements." ], [ vm_place_up_to, 2, SOCIAL_MOVEMENTS ], [ vm_return ], ] |