From e5221e217c951815a1be0a70048d4b45d8a69d7d Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sat, 25 May 2024 16:38:14 +0200 Subject: add test scenario with sorted card deck --- rules.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rules.js b/rules.js index 6518e55..ad784e3 100644 --- a/rules.js +++ b/rules.js @@ -10,6 +10,7 @@ const SCENARIO_INDEX = { "3P": 3, "The War in the West": 1, "The Austrian Theatre": 2, + "TEST": 4 } const ROLE_NAME_1 = [ @@ -3623,6 +3624,9 @@ exports.setup = function (seed, scenario, options) { shuffle_bigint(game.deck) + if (scenario === "TEST") + game.clock = [ 1,2,3,4,5,6,7,8,9,10,11,12, 13,14,15,16,17,18 ] + if (game.scenario === 1) log("# The War in the West") if (game.scenario === 2) -- cgit v1.2.3