From 2259daf9d117b46a95dd111ba5973023ef78ba0d Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Thu, 25 Apr 2024 00:11:03 +0200 Subject: give up IP when choosing exile at approach --- rules.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rules.ts b/rules.ts index 2a6bd92..125990e 100644 --- a/rules.ts +++ b/rules.ts @@ -5161,13 +5161,16 @@ states.choose_exile = { inactive: "Choose Exile", prompt() { let here = get_lord_locale(game.command) - view.prompt = `Approach: You may choose exile with lords at ${locale_name[here]}.` + view.prompt = `Approach: Choose lords to go into exile from ${locale_name[here]}.` for_each_friendly_lord_in_locale(here, gen_action_lord) view.actions.done = 1 }, lord(lord) { push_undo() give_up_spoils(lord) + + reduce_influence(data.lords[lord].influence + count_vassals_with_lord(lord)) + exile_lord(lord) }, done() { -- cgit v1.2.3