diff options
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -47,8 +47,7 @@ CARD 5 - Le Figaro endswitch CARD 6 - Général Louis Valentin - # remove_different_up_to 2 (where_present(PARIS)) - asm game.count = 2 + asm game.vm.count = 2 asm game.vm.spaces = where_present(PARIS) if (can_vm_remove()) goto "general_louis_valentin" @@ -105,7 +104,6 @@ CARD 14 - Colonel de Lochner CARD 15 - Jules Favre increase_prussian_collaboration - # TODO BUG HERE? - skipped this place_up_to 1 REPUBLICANS CARD 16 - Hostage Decree @@ -200,8 +198,7 @@ CARD 34 - Charles Delescluze # Neutral Cards CARD 35 - Conciliation - # TODO - improve UX here - prompt is confusing - prompt "Move up to 2 from Public Opinion or Paris to the other." + prompt "Move up to 2 from Public Opinion or Paris." switch ["public_opinion","paris"] case "public_opinion" prompt "Move up to 2 from Public Opinion to Paris." @@ -331,7 +328,12 @@ CARD 49 - Pius IX prompt "Replace in 2 different Political or remove 1 from any space." switch ["replace","remove"] case "replace" - replace_different 2 POLITICAL + asm game.vm.count = 2 + asm game.vm.spaces = POLITICAL.slice() + if (can_vm_replace()) + goto "pius_ix" + endif + endif case "remove" remove 1 ANY endswitch |