diff options
-rw-r--r-- | rules.js | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -6414,9 +6414,7 @@ states.intercept = { view.prompt = `Choose lord to intercept moving lords?` let to = get_lord_locale(game.command) - // TODO : FLANK ATTACK through the held intercept - // or held event but with more conditions (for example state = "intercept") - // prompt_held_event_intercept() + prompt_held_event_intercept() if (game.who === NOBODY) { for (let next of data.locales[to].not_paths) @@ -6446,6 +6444,10 @@ states.intercept = { set_toggle(game.intercept_group, lord) } }, + card(c) { + push_undo() + play_held_event(c) + }, pass() { set_active_enemy() end_intercept() |