diff options
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 21 |
1 files changed, 19 insertions, 2 deletions
@@ -173,10 +173,27 @@ SHADED 14 log "NOT IMPLEMENTED" EVENT 15 - log "NOT IMPLEMENTED" + prompt "Replace Governors with Rebelling Amirs in Provinces adjacent to Devagiri." + piece_opt all is_adjacent_to_city(C_DEVAGIRI, piece_space(p)) && can_place_piece(piece_space(p), BK, ELITE) && is_governor(p) + set_piece_space + mark_space + remove + auto_place_rebel BK ELITE + set_space -1 + endpiece + prompt "Remove a Tributary marker in one Province." + space_opt 1 is_tributary(s) && set_has(game.vm.m, s) + remove_tributary + endspace SHADED 15 - log "NOT IMPLEMENTED" + prompt "Replace an Amir with a Governor and place a Tributary marker in a Province adjacent to Devagiri." + space 1 is_adjacent_to_city(C_DEVAGIRI, s) && can_place_piece(s, DS, ELITE) && !is_tributary(s) + asm game.vm.p = find_piece(game.vm.s, BK, ELITE) + remove + auto_place DS ELITE + place_tributary + endspace EVENT 16 log "NOT IMPLEMENTED" |