diff options
-rw-r--r-- | rules.js | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -6509,6 +6509,9 @@ const SCENARIOS = { allied_deployment: sort_deployment_for_allied([...EGYPT, TOBRUK]), axis_initial_supply: 10, allied_initial_supply: 12, + deployment_limit: { + [TOBRUK]: 5 + }, }, "Battleaxe": { start: 4, @@ -6517,6 +6520,9 @@ const SCENARIOS = { allied_deployment: sort_deployment_for_allied([...EGYPT, TOBRUK]), axis_initial_supply: 4, allied_initial_supply: 8, + deployment_limit: { + [TOBRUK]: 5 + }, }, "1942": { start: 11, @@ -6864,7 +6870,16 @@ function setup(scenario_name) { exports.roles = [ "Axis", "Allied" ] -exports.scenarios = Object.keys(SCENARIOS) +exports.scenarios = [ + "1940", + "1941", + "1942", + "Battleaxe", + "Crusader", + "Gazala", + "Pursuit to Alamein", + "1941-42" +] exports.setup = function (seed, scenario, options) { load_state({ |