diff options
-rw-r--r-- | info/rules.html | 8 | ||||
-rw-r--r-- | rules.js | 10 |
2 files changed, 13 insertions, 5 deletions
diff --git a/info/rules.html b/info/rules.html index 96595aa..d557210 100644 --- a/info/rules.html +++ b/info/rules.html @@ -642,8 +642,8 @@ up). If the FLN unit(s) survived the return fire, place it in the Operations Completed (OC) box. <p class="note">Note that one or both player's PSLs will be affected by units being hit, reduced or eliminated; see - the PSL Adjustments Summary. Also note that Government units are never eliminated, only potentially - Neutralized.</p> + the <a href="charts.html#psl-adjustment">PSL Adjustments Summary</a>. + Also note that Government units are never eliminated, only potentially Neutralized.</p> <h3> <a href="#9.2" id="9.2">9.2 GOVERNMENT PLAYER MISSIONS</a> @@ -870,8 +870,8 @@ </h3> <p>First, the Government player must check for a coup d'etat if his PSL is less than 30 - (see <a href="#11.3">11.3</a>). Then both sides adjust their PSL as directed in the PSL Adjustment Summary for - this Phase. + (see <a href="#11.4">11.4</a>). Then both sides adjust their PSL as directed in the <a href="charts.html#psl-adjustment">PSL Adjustments Summary</a> + for this Phase. <h2> <a href="#11" id="11">11. SPECIAL RULES</a> @@ -2718,6 +2718,14 @@ function unit_redeployment() { log(`Air Avail = ${game.air_avail}, Helo Avail = ${game.helo_avail}`) } +function final_psl_adjustment() { + log_h3("Final PSL Adjustment. TODO") + + if (game.gov_psl < 30) { + log("Check for Coup d'etat TODO") + } +} + function goto_turn_interphase() { // clear_undo() game.active = BOTH @@ -2733,7 +2741,7 @@ function goto_turn_interphase() { unit_and_area_recovery() unit_redeployment() - // log_h3("Final PSL Adjustment") + final_psl_adjustment() } states.turn_interphase = { |