summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorteisuru <31881306+teisuru@users.noreply.github.com>2023-10-16 20:37:10 +0200
committerTor Andersson <tor@ccxvii.net>2023-12-10 18:16:55 +0100
commit8978f968a967848bb848d9260a5a4385ee7c7c04 (patch)
tree3ed2459fefe4faeda69962b84badeb9328b23c39
parent5e7c9fb6179985daeabc72663ccded0c238de3eb (diff)
downloadplantagenet-8978f968a967848bb848d9260a5a4385ee7c7c04.tar.gz
Capability L33
-rw-r--r--rules.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/rules.js b/rules.js
index c0c3bca..0625fc9 100644
--- a/rules.js
+++ b/rules.js
@@ -5020,6 +5020,13 @@ 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 (is_lord_on_map(lord) &&
+ !is_lord_on_calendar(lord) &&
+ lord_has_capability(lord, AOW_LANCASTER_PHILIBERT_DE_CHANDEE) &&
+ (((is_friendly_locale(data.locales[here])) && data.port_2.includes(here)) ||
+ is_adjacent_friendly_port_english_channel(here))) {
+ add_lord_forces(lord, MEN_AT_ARMS, 2)
+ }
}
}
@@ -5047,6 +5054,13 @@ 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 (is_lord_on_map(lord) &&
+ !is_lord_on_calendar(lord) &&
+ lord_has_capability(lord, AOW_LANCASTER_PHILIBERT_DE_CHANDEE) &&
+ (((is_friendly_locale(data.locales[here])) && data.port_2.includes(here)) ||
+ is_adjacent_friendly_port_english_channel(here))) {
+ add_lord_forces(lord, MEN_AT_ARMS, -2)
+ }
}
}