summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data.js2
-rw-r--r--rules.ts10
-rw-r--r--tools/gendata.js2
3 files changed, 8 insertions, 6 deletions
diff --git a/data.js b/data.js
index 817cd6a..84a83e3 100644
--- a/data.js
+++ b/data.js
@@ -209,7 +209,7 @@ cards:[
{"name":"Y9","event":"Escape Ship","roses":0,"when":"hold","capability":"Barricades","lords":[0,1,2,3,4,5,6,7,8,9,10,11,12,13]},
{"name":"Y10","event":"Tax Collectors","roses":0,"when":"now","capability":"Agitators","lords":[0,1,2,3,4,5,6,7,8,9,10,11,12,13]},
{"name":"Y11","event":"Blocked Ford","roses":0,"when":"hold","capability":"Yorkists Never Wait","lords":[0,1,2,3,4,5,6,7,8,9,10,11,12,13]},
-{"name":"Y12","event":"Parliament's Truce","roses":0,"when":"hold","capability":"Soldiers of fortune","lords":[0,1,2,3,4,5,6,7,8,9,10,11,12,13]},
+{"name":"Y12","event":"Parliament's Truce","roses":0,"when":"hold","capability":"Soldiers of Fortune","lords":[0,1,2,3,4,5,6,7,8,9,10,11,12,13]},
{"name":"Y13","event":"Aspielles","roses":0,"when":"hold","capability":"Scourers","lords":[0,1,2,3,4,5,6,7,8,9,10,11,12,13]},
{"name":"Y14","event":"Richard of York","roses":1,"when":"this_levy","capability":"Burgundians","lords":[0,1]},
{"name":"Y15","event":"London for York","roses":1,"when":"now","capability":"Naval Blockade","lords":[13]},
diff --git a/rules.ts b/rules.ts
index 527221d..f1e667e 100644
--- a/rules.ts
+++ b/rules.ts
@@ -1914,7 +1914,7 @@ function get_parley_influence_cost() {
} else {
if (game.levy_flags.parliament_votes > 0)
cost -= 1
- else if (game.levy_flags.succession > 0)
+ if (game.levy_flags.succession > 0)
cost -= 1
}
}
@@ -4581,7 +4581,7 @@ function end_parley(success: boolean) {
// Parliament Votes / Succession: reduced cost and success
if (game.levy_flags.parliament_votes > 0)
--game.levy_flags.parliament_votes
- else if (game.levy_flags.succession > 0)
+ if (game.levy_flags.succession > 0)
--game.levy_flags.succession
// My crown / as heir: free action
@@ -10262,11 +10262,13 @@ function apply_lordship_effects(lord: Lord) {
game.levy_flags.parliament_votes = 0
if (is_event_in_play(EVENT_LANCASTER_PARLIAMENT_VOTES))
- game.levy_flags.parliament_votes = 1
+ if (game.active === LANCASTER)
+ game.levy_flags.parliament_votes = 1
game.levy_flags.succession = 0
if (is_event_in_play(EVENT_YORK_SUCCESSION))
- game.levy_flags.succession = 1
+ if (game.active === YORK)
+ game.levy_flags.succession = 1
game.levy_flags.jack_cade = 0
if (is_jack_cade_eligible(lord))
diff --git a/tools/gendata.js b/tools/gendata.js
index d4b4c9d..ac5f75f 100644
--- a/tools/gendata.js
+++ b/tools/gendata.js
@@ -1616,7 +1616,7 @@ arts_of_war_capability("Y8", "England is my home", "any")
arts_of_war_capability("Y9", "Barricades", "any")
arts_of_war_capability("Y10", "Agitators", "any")
arts_of_war_capability("Y11", "Yorkists Never Wait", "any")
-arts_of_war_capability("Y12", "Soldiers of fortune", "any")
+arts_of_war_capability("Y12", "Soldiers of Fortune", "any")
arts_of_war_capability("Y13", "Scourers", "any",)
arts_of_war_capability("Y14", "Burgundians", ["York", "March"])
arts_of_war_capability("Y15", "Naval Blockade", ["Warwick Y"])