diff options
author | Joël Simoneau <simoneaujoel@gmail.com> | 2025-04-03 15:55:55 -0400 |
---|---|---|
committer | Joël Simoneau <simoneaujoel@gmail.com> | 2025-04-03 15:55:55 -0400 |
commit | c68489555f1fecb8769791ee02335cb163b150d1 (patch) | |
tree | 8be1333f10b9060708668d8ee121c3307943c888 | |
parent | 42790f78e5b6775e5702f4ba5b602ac9c500aa12 (diff) | |
download | vijayanagara-c68489555f1fecb8769791ee02335cb163b150d1.tar.gz |
Event 32 fliiped names
-rw-r--r-- | events.txt | 2 | ||||
-rw-r--r-- | rules.js | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -719,7 +719,7 @@ EVENT 32 current REBEL_FACTIONS add_influence (game.current) remove_influence (other_rebel_faction(game.current)) - prompt `Replace up to 2 ${PIECE_FACTION_TYPE_NAME[game.current][ELITE]}s with 2 ${PIECE_FACTION_TYPE_NAME[other_rebel_faction(game.current)][ELITE]}s.` + prompt `Replace up to 2 ${PIECE_FACTION_TYPE_NAME[other_rebel_faction(game.current)][ELITE]}s with 2 ${PIECE_FACTION_TYPE_NAME[game.current][ELITE]}s.` piece_opt 2 is_enemy_piece(p) && is_rebel_faction_elite(p) && is_piece_on_map(p) replace (game.current) ELITE endpiece @@ -6724,7 +6724,7 @@ CODE[32 * 2 + 0] = [ [ vm_current, REBEL_FACTIONS ], [ vm_add_influence, ()=>(game.current) ], [ vm_remove_influence, ()=>(other_rebel_faction(game.current)) ], - [ vm_prompt, ()=>`Replace up to 2 ${PIECE_FACTION_TYPE_NAME[game.current][ELITE]}s with 2 ${PIECE_FACTION_TYPE_NAME[other_rebel_faction(game.current)][ELITE]}s.` ], + [ vm_prompt, ()=>`Replace up to 2 ${PIECE_FACTION_TYPE_NAME[other_rebel_faction(game.current)][ELITE]}s with 2 ${PIECE_FACTION_TYPE_NAME[game.current][ELITE]}s.` ], [ vm_piece, false, 0, 2, (p,s)=>is_enemy_piece(p) && is_rebel_faction_elite(p) && is_piece_on_map(p) ], [ vm_replace, ()=>(game.current), ELITE, false, false ], [ vm_endpiece ], |