From ba8579e69049a1edc9d345d396cc9a60bbbd2ac7 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 4 Jan 2023 01:22:31 +0100 Subject: Proposed "No Event" handling. --- rules.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/rules.js b/rules.js index 2f9fa26..ce9ad21 100644 --- a/rules.js +++ b/rules.js @@ -83,7 +83,9 @@ const scenario_last_turn = { } function should_remove_no_event_card() { - return game.scenario !== "Crusade on Novgorod" + if (game.scenario === "Crusade on Novgorod") + return current_turn() >= 9 + return true } // unit types @@ -1676,6 +1678,10 @@ exports.setup = function (seed, scenario, options) { function setup_pleskau() { game.turn = 1 << 1 + // Remove all No Event cards in this scenario + game.no1 = 0 + game.no2 = 0 + game.pieces.veche_vp = 1 muster_lord(LORD_HERMANN, LOC_DORPAT, 4) -- cgit v1.2.3