diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-04-18 21:41:56 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-05-03 18:48:16 +0200 |
commit | 2ba9940a3c7ce78cb8266eca557a7c8664cae4d8 (patch) | |
tree | c49758d3ff831f0e4c632550f3a285b6302a1519 /rules.js | |
parent | 9d58bfa984ba47815376b7341d63f17c356668ff (diff) | |
download | andean-abyss-2ba9940a3c7ce78cb8266eca557a7c8664cae4d8.tar.gz |
Log Alfonso Cano. Implement 1st Division (Support Phase).
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 95 |
1 files changed, 58 insertions, 37 deletions
@@ -1,17 +1,7 @@ "use strict" -// TODO: 1st Devision CAP_1ST_DIV -// TODO: rename LoC - "Bogota-Yopal LoC" - -// TODO: optional place ambush -// TODO: optional place rally // TODO: log_br after free op/special -// TODO: log Alfonso Cano -// TODO: log 1st division - -// TODO: Civic Action - // TODO: if Assault and no valid assault targets, only allow air lift to enable Assault // TODO: can_...operation - for space = ... check them all / can_rally - check that it is dept/city etc @@ -3822,6 +3812,10 @@ states.rally_space = { if (can_stack_piece(game.op.where, game.current, GUERRILLA)) gen_place_piece(game.op.where, game.current, GUERRILLA) + + // You don't have to do anything if you haven't got any available pieces. + if (!has_piece(AVAILABLE, game.current, GUERRILLA)) + view.actions.skip = 1 }, piece(p) { log_summary_place(p, game.op.where) @@ -3839,6 +3833,9 @@ states.rally_space = { push_undo() game.state = "rally_move" }, + skip() { + end_rally_space() + }, } states.rally_guerrillas = { @@ -5908,31 +5905,6 @@ states.drug_profits_choice = { // PROPAGANDA: SUPPORT PHASE -function can_civic_action(s) { - if (can_shift_support(s) && has_govt_control(s)) { - if (has_capability(S_CAP_1ST_DIV)) - return count_pieces(s, GOVT, TROOPS) >= 2 && count_pieces(s, GOVT, POLICE) >= 2 - return has_piece(s, GOVT, TROOPS) && has_piece(s, GOVT, POLICE) - } - return false -} - -function can_agitate(s) { - if (can_shift_opposition(s)) { - if (has_farc_control(s)) - return true - if (!has_govt_control(s)) { - if (game.prop.alfonso) { - if (game.prop.alfonso.length < 3) - return true - if (set_has(game.prop.alfonso, s)) - return true - } - } - } - return false -} - function goto_support_phase() { game.prop.step = 4 log_h2("Support Phase") @@ -5941,11 +5913,16 @@ function goto_support_phase() { function goto_support_civic_action() { log_action("Civic Action") - if (has_momentum(MOM_ALFONSO_CANO)) - game.prop.alfonso = [] + if (has_capability(CAP_1ST_DIV)) { + logi("C1") + game.prop.first_div = [] + } + if (has_capability(S_CAP_1ST_DIV)) + logi("C1 (Shaded)") if (can_any_civic_action()) { game.current = GOVT game.state = "civic_action" + game.prop.count = 0 } else { logi("Nothing") goto_support_agitation() @@ -5960,6 +5937,22 @@ function can_any_civic_action() { return false } +function can_civic_action(s) { + if (can_shift_support(s) && has_govt_control(s)) { + if (has_capability(S_CAP_1ST_DIV)) + return count_pieces(s, GOVT, TROOPS) >= 2 && count_pieces(s, GOVT, POLICE) >= 2 + if (has_piece(s, GOVT, TROOPS) && has_piece(s, GOVT, POLICE)) + return true + if (game.prop.first_div) { + if (set_has(game.prop.first_div, s)) + return true + if (game.prop.first_div.length < 1) + return count_cubes(s) > 0 + } + } + return false +} + states.civic_action = { prompt() { view.prompt = "Civic Action: Build Support in Cities and Departments." @@ -5980,8 +5973,11 @@ states.civic_action = { shift_support(s) logi("S" + s + " to " + support_level_name[game.support[s]]) } + game.prop.count++ }, done() { + if (game.prop.count === 0) + logi("Nothing") clear_undo() goto_support_agitation() }, @@ -5989,9 +5985,14 @@ states.civic_action = { function goto_support_agitation() { log_action("Agitation") + if (has_momentum(MOM_ALFONSO_CANO)) { + logi("C22") + game.prop.alfonso = [] + } if (can_any_agitate()) { game.current = FARC game.state = "agitation" + game.prop.count = 0 } else { logi("Nothing") goto_election() @@ -6006,6 +6007,22 @@ function can_any_agitate() { return false } +function can_agitate(s) { + if (can_shift_opposition(s)) { + if (has_farc_control(s)) + return true + if (!has_govt_control(s)) { + if (game.prop.alfonso) { + if (set_has(game.prop.alfonso, s)) + return true + if (game.prop.alfonso.length < 3) + return has_farc_piece(s) + } + } + } + return false +} + states.agitation = { prompt() { view.prompt = "Agitation: Encourage Opposition in Cities and Departments." @@ -6028,14 +6045,18 @@ states.agitation = { shift_opposition(s) logi("S" + s + " to " + support_level_name[game.support[s]]) } + game.prop.count++ }, done() { + if (game.prop.count === 0) + logi("Nothing") clear_undo() goto_election() }, } function goto_election() { + delete game.prop.first_div delete game.prop.alfonso game.current = GOVT if (game.president === SAMPER && calc_support() <= 60 ) { |