diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-01-17 15:50:15 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 13:02:39 +0100 |
commit | d29a6161b735dd7bcf34f6fda61596e6c277dce9 (patch) | |
tree | 0fe30c65dfd873d1602a4a55e6a7fa98e10396e6 /rules.js | |
parent | ffa7bed574c405e8bb0a421c1077300d8557870a (diff) | |
download | nevsky-d29a6161b735dd7bcf34f6fda61596e6c277dce9.tar.gz |
Call to Arms - Veche change - 1 cylinder 2 boxes for 1 vp.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -3895,8 +3895,6 @@ states.novgorod_veche = { view.actions.delay = 1 } - // TODO: 2E 3.5.2 Shift all Russian cylinders at once - if (game.pieces.veche_vp > 0) { for (let lord = first_friendly_lord; lord <= last_friendly_lord; ++lord) { if (no_muster_of_or_by_lord(lord)) @@ -3940,8 +3938,9 @@ states.novgorod_veche = { } else if (is_lord_on_calendar(lord)) { - log(`Slid L${lord} one box left.`) - shift_lord_cylinder(lord, -1) + // NOTE: 2E 3.5.2 Shift one Russian cylinder two boxes (from one in 1E). + log(`Slid L${lord} two boxes left.`) + shift_lord_cylinder(lord, -2) } else { |