diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-04-16 12:53:06 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-04-16 12:53:06 +0200 |
commit | 98914500c9d2e985ea76f9e50714f0e0ba088e1f (patch) | |
tree | 65c3cc042b695657aad052c8efed229f86fdf1b2 /rules.js | |
parent | 9439bebe87983db2bd6ac89bbe9f2f114901e1b4 (diff) | |
download | plantagenet-98914500c9d2e985ea76f9e50714f0e0ba088e1f.tar.gz |
Add TODO about handling spoils after choosing exile.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4720,6 +4720,7 @@ states.choose_exile = { }, lord(lord) { push_undo() + // TODO: give up assets as if spoils? exile_lord(lord) }, done() { @@ -4737,8 +4738,9 @@ function exile_lord(lord) { } } +// === 4.3.5 APPROACH - SPOILS AFTER CHOOSING EXILE === -// === 4.3.5 APPROACH - EXILE (SPOILS) === +// TODO: spoils after choosing exile function has_any_spoils() { return game.spoils && game.spoils[PROV] + game.spoils[COIN] + game.spoils[CART] + game.spoils[SHIP] > 0 |