diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-03-10 00:59:08 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-03-10 11:59:06 +0100 |
commit | 5fa490516ba075eb9ff486449f70f9457dca802d (patch) | |
tree | af63adecd85faf5cf91e313e38a936c060ca414d | |
parent | 80672354a12cd1c6de39c23403636c41184fb859 (diff) | |
download | nevsky-5fa490516ba075eb9ff486449f70f9457dca802d.tar.gz |
Note about Curia able to give ships to lords without "ships" on mat.
-rw-r--r-- | rules.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2836,10 +2836,12 @@ states.heinrich_sees_the_curia_2 = { if (game.count > 0) { view.actions.take_prov = 1 view.actions.take_coin = 1 - view.actions.take_ship = 1 view.actions.take_boat = 1 view.actions.take_cart = 1 view.actions.take_sled = 1 + // NOTE: Card text overrides general rule, + // so Curia can give ships to inland lords + view.actions.take_ship = 1 } view.actions.done = 1 }, @@ -5279,8 +5281,6 @@ function prompt_spoils() { view.actions.take_loot = 1 if (get_spoils(COIN) > 0) view.actions.take_coin = 1 - if (get_spoils(SHIP) > 0) - view.actions.take_ship = 1 if (get_spoils(BOAT) > 0) view.actions.take_boat = 1 if (get_spoils(CART) > 0) |