diff options
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 22 |
1 files changed, 19 insertions, 3 deletions
@@ -40,7 +40,7 @@ SHADED 4 EVENT 5 current REBEL_FACTIONS - prompt `Replace up to three Delhi Sultanate Units with Rebelling ${PIECE_FACTION_TYPE_NAME[game.current][ELITE]}.` + prompt `Replace up to 3 Delhi Sultanate Units with Rebelling ${PIECE_FACTION_TYPE_NAME[game.current][ELITE]}.` piece_undo_opt 3 (is_adjacent_to_city(C_CHITTOR, piece_space(p)) && can_place_piece(piece_space(p), game.current, ELITE) && is_ds_unit(p)) set_piece_space remove @@ -197,10 +197,26 @@ SHADED 18 log "NOT IMPLEMENTED" EVENT 19 - log "NOT IMPLEMENTED" + current REBEL_FACTIONS + prompt `Place up to 2 ${PIECE_FACTION_TYPE_NAME[game.current][ELITE]} in Jaunpur and Bengal.` + space_opt all (s === S_BENGAL || s === S_JAUNPUR) && can_place_piece(s, game.current, ELITE) + place_opt 2 (game.current) ELITE + endspace + prompt "Remove a Tributary marker in Jaunpur or Bengal." + space_opt 1 (s === S_BENGAL || s === S_JAUNPUR) && is_tributary(s) + remove_tributary + endspace SHADED 19 - log "NOT IMPLEMENTED" + current DS + prompt `Place up to 4 ${PIECE_FACTION_TYPE_NAME[game.current][TROOPS]} in Jaunpur and Bengal.` + space_opt all (s === S_BENGAL || s === S_JAUNPUR) && can_place_piece(s, game.current, TROOPS) + place_opt 4 (game.current) TROOPS + endspace + prompt "Place a Tributary marker in Jaunpur or Bengal." + space_opt 1 (s === S_BENGAL || s === S_JAUNPUR) && !is_tributary(s) + place_tributary + endspace EVENT 20 log "NOT IMPLEMENTED" |