summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-10-27 12:27:39 +0200
committerMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-10-27 12:27:39 +0200
commit839ed32e446fb7f1110664a3773a9eeb57895bac (patch)
tree332124db6fe3da0f433e1fe507ea18b8e19a91f3
parentbbe0839e106bec63bdaa7f13580c89cb14cc2f4e (diff)
downloadalgeria-839ed32e446fb7f1110664a3773a9eeb57895bac.tar.gz
operation counts
-rw-r--r--rules.js13
1 files changed, 11 insertions, 2 deletions
diff --git a/rules.js b/rules.js
index 8b70b0b..dbd5f17 100644
--- a/rules.js
+++ b/rules.js
@@ -2823,6 +2823,8 @@ function goto_operations_phase() {
game.passes = 0
delete game.fln_auto_pass
delete game.gov_auto_pass
+ game.fln_ops = 0
+ game.gov_ops = 0
// In Algeria, the OAS marker will automatically conduct one Suppression mission in the Operations Phase, at no cost in PSP and no requirement for a Police unit.
if (is_area_algerian(game.oas)) {
@@ -2847,7 +2849,10 @@ function goto_operations_phase() {
function goto_fln_operations_phase() {
game.phasing = FLN_NAME
set_active_player()
- log_h2(`${game.active} Operations`)
+
+ // XXX backwards compatiblity for ongoing games; replace with game.fln_ops += 1
+ game.fln_ops = (game.fln_ops ?? 0) + 1
+ log_h2(`${game.active} Operation ${game.fln_ops}`)
clear_combat()
if (game.fln_auto_pass) {
@@ -3768,7 +3773,9 @@ states.fln_combat_fln_losses = {
function goto_gov_operations_phase() {
game.phasing = GOV_NAME
set_active_player()
- log_h2(`${game.active} Operations`)
+ // XXX backwards compatiblity for ongoing games; replace with game.gov_ops += 1
+ game.gov_ops = (game.gov_ops ?? 0) + 1
+ log_h2(`${game.active} Operation ${game.gov_ops}`)
clear_combat()
if (game.gov_auto_pass) {
@@ -4514,6 +4521,8 @@ function end_operations_phase() {
game.passes = 0
delete game.fln_auto_pass
delete game.gov_auto_pass
+ delete game.fln_ops
+ delete game.gov_ops
clear_combat()
goto_turn_interphase()
}