diff options
author | teisuru <31881306+teisuru@users.noreply.github.com> | 2023-12-06 16:32:04 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-10 18:16:55 +0100 |
commit | 2b7aa56ec308e5a6f411b8c2567187e38c70dd0c (patch) | |
tree | 054f6d9495349fc492aa854526c005fc7d661491 | |
parent | a86fab43fc083ac9072d5ffc97ed108f7b6cb736 (diff) | |
download | plantagenet-2b7aa56ec308e5a6f411b8c2567187e38c70dd0c.tar.gz |
Y35 Kingdom United
-rw-r--r-- | rules.js | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -422,7 +422,7 @@ const AOW_YORK_WOODWILLES = Y31 const AOW_YORK_FINAL_CHARGE = Y32 // TODO const AOW_YORK_BLOODY_THOU_ART = Y33 const AOW_YORK_SO_WISE_SO_YOUNG = Y34 -const AOW_YORK_KINGDOM_UNITED = Y35 // TODO +const AOW_YORK_KINGDOM_UNITED = Y35 const AOW_YORK_VANGUARD = Y36 // TODO const AOW_YORK_PERCYS_NORTH2 = Y37 @@ -469,9 +469,7 @@ const EVENT_LANCASTER_ASPIELLES = L13 // TODO // Play when you're the active player. Show all enemy Hidden cards and then // select one of enemy's Lord mats to show it to you. Perhaps write those in the log ? const EVENT_LANCASTER_SCOTS = L14 -// The addition by events are NEVER mandatory. const EVENT_LANCASTER_HENRY_PRESSURES_PARLIAMENT = L15 -// count enemy vassals on all enemy lords and yorkists lose that amount of influence const EVENT_LANCASTER_WARDEN_OF_THE_MARCHES = L16 // TODO // Play during Death and Disband step of Battle. All routed (flee or not) // select a stronghold in the north and go there (they will need to feed) @@ -490,7 +488,6 @@ const EVENT_LANCASTER_PARLIAMENT_TRUCE = L20 // TODO const EVENT_LANCASTER_FRENCH_FLEET = L21 // TODO // Forbid sail const EVENT_LANCASTER_FRENCH_TROOPS = L22 -// Select one lord at a port, then he MAY add 0, 1, 2 of each of Militia or Men-at-arms const EVENT_LANCASTER_WARWICKS_PROPAGANDA = [ L23, L24 ] // TODO // Select 1 stronghold, then Yorkists may pay to keep. Then select a second, then Yorkist may pay to keep. Then select a third, then Yorkist may pay to keep const EVENT_LANCASTER_WELSH_REBELLION = L25 // TODO @@ -5382,6 +5379,10 @@ function add_battle_capability_troops() { if (lord_has_capability(lord, AOW_YORK_PERCYS_NORTH2) && can_supply_at(LOC_CARLISLE, 0)) { add_lord_forces(lord, MILITIA, 4) } + if (lord_has_capability(lord, AOW_YORK_KINGDOM_UNITED) && (data.locales[here].region === "North" || data.locales[here].region === "South" || data.locales[here].region === "Wales")) { + add_lord_forces(lord, MILITIA, 3) + } + if (is_lord_on_map(lord) && !is_lord_on_calendar(lord) && lord_has_capability(lord, AOW_LANCASTER_PHILIBERT_DE_CHANDEE) && @@ -5416,6 +5417,9 @@ function remove_battle_capability_troops() { if (lord_has_capability(lord, AOW_YORK_PERCYS_NORTH2) && can_supply_at(LOC_CARLISLE, 0)) { add_lord_forces(lord, MILITIA, -4) } + if (lord_has_capability(lord, AOW_YORK_KINGDOM_UNITED) && (data.locales[here].region === "North" || data.locales[here].region === "South" || data.locales[here].region === "Wales")) { + add_lord_forces(lord, MILITIA, -3) + } if (is_lord_on_map(lord) && !is_lord_on_calendar(lord) && lord_has_capability(lord, AOW_LANCASTER_PHILIBERT_DE_CHANDEE) && |