diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-10-26 19:27:25 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-10-26 19:27:25 +0200 |
commit | ba47081f804c907202cca065a0d7e654dd26fc5f (patch) | |
tree | bb2583704c1bd98f1d12c0df1031f0d6932d8c59 /rules.js | |
parent | 090ad9501c5295034c7fd5c2a511771498ae86c7 (diff) | |
download | maria-ba47081f804c907202cca065a0d7e654dd26fc5f.tar.gz |
Add supply check back to sequence of play.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1109,6 +1109,7 @@ const sequence_of_play = [ { power: P_FRANCE, action: start_action_stage }, { power: P_FRANCE, action: goto_tactical_cards }, { power: P_BAVARIA, action: goto_tactical_cards }, + { power: P_FRANCE, action: goto_supply }, { power: P_FRANCE, action: init_movement }, { power: P_FRANCE, action: goto_movement_global }, { power: P_FRANCE, action: end_movement }, @@ -1127,6 +1128,7 @@ const sequence_of_play = [ next_sequence_of_play() }, }, + { power: P_PRUSSIA, action: goto_supply }, { power: P_PRUSSIA, action: init_movement }, { power: P_PRUSSIA, action: goto_movement_global }, { power: P_PRUSSIA, action: end_movement }, @@ -1136,6 +1138,7 @@ const sequence_of_play = [ { power: P_PRUSSIA, action: goto_prussia_annexes_silesia }, { power: P_AUSTRIA, action: start_action_stage }, + { power: P_AUSTRIA, action: goto_tactical_cards }, { power: P_SAXONY, @@ -1146,7 +1149,10 @@ const sequence_of_play = [ goto_tactical_cards() }, }, + { power: P_AUSTRIA, action: goto_supply }, + { power: P_PRAGMATIC, action: goto_tactical_cards }, + { power: P_PRAGMATIC, action: goto_supply }, // alternate moves on flanders starting with pragmatic army { power: P_PRAGMATIC, action: init_movement }, |