From 41674d78d349cd55f651f36807e110e391fddd23 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Thu, 17 Oct 2024 12:46:04 +0200 Subject: Revert change to AM start VP, and add alternative scenario for 2 VP start. --- create.html | 19 +++++++++++++------ rules.js | 8 ++++++++ 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/create.html b/create.html index cd35099..b3831b7 100644 --- a/create.html +++ b/create.html @@ -25,15 +25,20 @@ but ensured.

This scenario involves just six hands of cards and can be completed in two to three hours. - -

-NOTE: -For balance this scenario has been modified to start VP at French 2. - + +

+

+Annus Mirabilis scenario alternative where VP starts at French 3. +

+ +
+

+Annus Mirabilis scenario alternative where VP starts at French 2. +

-
+

This variant of the Annus Mirabilis scenario uses the WBC tournament rules: @@ -157,6 +162,8 @@ scenario.onchange = function (evt) { document.getElementById(scenario.value).classList.add("show"); switch (scenario.value) { case "Annus Mirabilis": + case "Annus Mirabilis (2VP)": + case "Annus Mirabilis (3VP)": case "Annus Mirabilis (WBC)": document.querySelector(".not_am").classList.add("hide"); document.querySelector(".not_am").querySelectorAll("input").forEach(input => input.checked = false); diff --git a/rules.js b/rules.js index 61dad6b..7e353ad 100644 --- a/rules.js +++ b/rules.js @@ -9476,6 +9476,8 @@ states.intrigues_against_shirley = { exports.scenarios = [ "Annus Mirabilis", + // "Annus Mirabilis (3VP)", // do not list + // "Annus Mirabilis (2VP)", // do not list "Annus Mirabilis (WBC)", "Early War Campaign", "Late War Campaign", @@ -9882,6 +9884,12 @@ exports.setup = function (seed, scenario, options) { default: // fallthrough case "Annus Mirabilis": + setup_1757(1759, 4) + break + case "Annus Mirabilis (3VP)": + setup_1757(1759, 3) + break + case "Annus Mirabilis (2VP)": // Start at 2VP for balance. // See https://boardgamegeek.com/thread/1366550/article/19163465#19163465 setup_1757(1759, 2) -- cgit v1.2.3