diff options
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 24 |
1 files changed, 22 insertions, 2 deletions
@@ -18,6 +18,7 @@ CARD 3 - Brassardiers replace 1 (where_present(MILITARY)) CARD 4 - Jules Ferry + prompt "Place up to 2 in Republicans or replace 1 in National Assembly." switch ["place","replace"] case "place" place_up_to 2 REPUBLICANS @@ -26,6 +27,7 @@ CARD 4 - Jules Ferry endswitch CARD 5 - Le Figaro + prompt "Place up to 2 in Press or replace 1 in Public Opinion." switch ["place","replace"] case "place" place_up_to 2 PRESS @@ -70,6 +72,7 @@ CARD 13 - Général Ernest de Cissey CARD 14 - Colonel de Lochner if (is_versailles_control(MONT_VALERIEN)) + prompt "Use 3 Operation Points in Mont-Valérien or Butte Montmartre." switch ["mont_valerien","butte_montmartre"] case "mont_valerien" ops 3 MONT_VALERIEN @@ -128,6 +131,7 @@ CARD 26 - Gaston Crémieux CARD 27 - Luise Michel increase_revolutionary_momentum + prompt "Use 1 Operations Point in Public Opinion or Paris." switch ["public_opinion","paris"] case "public_opinion" ops 1 PUBLIC_OPINION @@ -158,17 +162,25 @@ CARD 33 - Jules Vallès ops 2 PUBLIC_OPINION CARD 34 - Charles Delescluze + prompt "Use 3 Operations Point in Military or 1 in Political." switch ["military","political"] case "military" ops 3 MILITARY case "political" - ops 3 POLITICAL + ops 1 POLITICAL endswitch # Neutral Cards CARD 35 - Conciliation - move_between_up_to 2 PUBLIC_OPINION PARIS + # move_between_up_to 2 PUBLIC_OPINION PARIS + prompt "Move up to 2 from Public Opinion or Paris to the other." + switch ["public_opinion","paris"] + case "public_opinion" + move_up_to 2 PUBLIC_OPINION PARIS + case "paris" + move_up_to 2 PARIS PUBLIC_OPINION + endswitch CARD 36 - Georges Clemenceau move_up_to 3 PARIS INSTITUTIONAL @@ -204,6 +216,7 @@ CARD 40 - Elihu Washburne CARD 41 - Freemason Parade # must have initiative goto "freemason_parade" + prompt "Place up to 2 or replace 1 in Institutional." switch ["place","replace"] case "place" place_up_to 2 INSTITUTIONAL @@ -214,6 +227,7 @@ CARD 41 - Freemason Parade # Objective Cards CARD 42 - Paris Cannons + prompt "Use 3 Operations Points in Paris or increase your Player Momentum." switch ["momentum","ops"] case "momentum" if (game.active === COMMUNE) @@ -231,6 +245,7 @@ CARD 43 - Aux Barricades! may_place_disc BUTTE_AUX_CAILLES CARD 44 - Commune's Stronghold + prompt "Use 2 Operations Points in Military or remove 1 from any space." switch ["ops","remove"] case "ops" ops 2 MILITARY @@ -252,6 +267,7 @@ CARD 46 - Battle of Mont-Valérien endif CARD 47 - Raid on Château de Vincennes + prompt "Use 2 Operations Points in Military or remove 1 from any space." switch ["ops","remove"] case "ops" ops 2 MILITARY @@ -260,6 +276,7 @@ CARD 47 - Raid on Château de Vincennes endswitch CARD 48 - Revolution in the Press + prompt "Use 3 Operations Points in Public Opinion or replace 1 in any space." switch ["ops","replace"] case "ops" ops 3 PUBLIC_OPINION @@ -268,6 +285,7 @@ CARD 48 - Revolution in the Press endswitch CARD 49 - Pius IX + prompt "Replace in 2 differet Political or remove 1 from any space." switch ["replace","remove"] case "replace" # SPECIAL @@ -285,6 +303,7 @@ CARD 50 - Socialist International endif CARD 51 - Royalists Dissension + prompt "Use 2 Operations Points in Institutional or remove 1 from any space." switch ["ops","remove"] case "ops" ops 2 INSTITUTIONAL @@ -293,6 +312,7 @@ CARD 51 - Royalists Dissension endswitch CARD 52 - Rise of Republicanism + prompt "Use 3 Operations Points in Institutional or replace 1 in Military." switch ["ops","replace"] case "ops" ops 3 INSTITUTIONAL |