summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js13
1 files changed, 10 insertions, 3 deletions
diff --git a/rules.js b/rules.js
index 13d080e..5c87168 100644
--- a/rules.js
+++ b/rules.js
@@ -5498,9 +5498,16 @@ states.send_expeditionary_corps = {
inactive: "send expeditionary corps off map",
prompt() {
prompt("Send expeditionary corps to off map box.")
- for (let p of all_power_generals[game.power])
- if (is_piece_on_map_or_eliminated(p))
- gen_action_piece(p)
+
+ let tc_in_hand = 0
+ for_each_card_in_hand(c => tc_in_hand += to_value(c))
+
+ for (let p of all_power_generals[game.power]) {
+ if (is_piece_on_map_or_eliminated(p)) {
+ if (game.troops[p] > 0 || tc_in_hand >= 8)
+ gen_action_piece(p)
+ }
+ }
},
piece(p) {
push_undo()