summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoël Simoneau <simoneaujoel@gmail.com>2025-04-10 08:49:59 -0400
committerJoël Simoneau <simoneaujoel@gmail.com>2025-04-10 08:49:59 -0400
commit0e0180cf6a0552088dead19de67b090f40b974a3 (patch)
tree690babe756db7ab5b172b9aeab8499981141f235
parentde30035396202a4efda022e5edc99370f8397ff7 (diff)
downloadvijayanagara-0e0180cf6a0552088dead19de67b090f40b974a3.tar.gz
Event typos
-rw-r--r--events.txt4
-rw-r--r--rules.js4
2 files changed, 4 insertions, 4 deletions
diff --git a/events.txt b/events.txt
index 93f51ff..90c71d5 100644
--- a/events.txt
+++ b/events.txt
@@ -160,7 +160,7 @@ EVENT 8
current REBEL_FACTIONS
prompt `In each Province adjacent to Devagiri and/or Gulbarga, replace a Delhi Sultanate Unit with a ${PIECE_FACTION_TYPE_NAME[game.current][ELITE]}.`
space_opt all (is_adjacent_to_city(C_DEVAGIRI, s) || is_adjacent_to_city(C_GULBARGA, s)) && has_ds_unit(s)
- prompt `Peplace a Delhi Sultanate Unit with a ${PIECE_FACTION_TYPE_NAME[game.current][ELITE]}.`
+ prompt `Replace a Delhi Sultanate Unit with a ${PIECE_FACTION_TYPE_NAME[game.current][ELITE]}.`
piece 1 is_ds_unit(p) && is_piece_in_event_space(p)
replace (game.current) ELITE
endpiece
@@ -289,7 +289,7 @@ SHADED 13
endspace
prompt "Select a destination Province for the Rajas."
space 1 (is_adjacent(s, game.vm.m) && has_piece_faction(s, BK))
- prompt `Move any number of Rajas into `${SPACE_NAME[game.vm.m[0]]}.`
+ prompt `Move any number of Rajas into ${SPACE_NAME[game.vm.m[0]]}.`
piece_opt all (is_raja(p) && (piece_space(p) === game.vm.m[0]))
move
endpiece
diff --git a/rules.js b/rules.js
index 2a6e2f7..e80059f 100644
--- a/rules.js
+++ b/rules.js
@@ -6119,7 +6119,7 @@ CODE[8 * 2 + 0] = [
[ vm_current, REBEL_FACTIONS ],
[ vm_prompt, ()=>`In each Province adjacent to Devagiri and/or Gulbarga, replace a Delhi Sultanate Unit with a ${PIECE_FACTION_TYPE_NAME[game.current][ELITE]}.` ],
[ vm_space, true, 0, 999, (s)=>(is_adjacent_to_city(C_DEVAGIRI, s) || is_adjacent_to_city(C_GULBARGA, s)) && has_ds_unit(s) ],
- [ vm_prompt, ()=>`Peplace a Delhi Sultanate Unit with a ${PIECE_FACTION_TYPE_NAME[game.current][ELITE]}.` ],
+ [ vm_prompt, ()=>`Replace a Delhi Sultanate Unit with a ${PIECE_FACTION_TYPE_NAME[game.current][ELITE]}.` ],
[ vm_piece, false, 1, 1, (p,s)=>is_ds_unit(p) && is_piece_in_event_space(p) ],
[ vm_replace, ()=>(game.current), ELITE, false, false ],
[ vm_endpiece ],
@@ -6281,7 +6281,7 @@ CODE[13 * 2 + 1] = [
[ vm_endspace ],
[ vm_prompt, "Select a destination Province for the Rajas." ],
[ vm_space, true, 1, 1, (s)=>(is_adjacent(s, game.vm.m) && has_piece_faction(s, BK)) ],
- [ vm_prompt, ()=>`Move any number of Rajas into `${SPACE_NAME[game.vm.m[0]]}.` ],
+ [ vm_prompt, ()=>`Move any number of Rajas into ${SPACE_NAME[game.vm.m[0]]}.` ],
[ vm_piece, false, 0, 999, (p,s)=>(is_raja(p) && (piece_space(p) === game.vm.m[0])) ],
[ vm_move ],
[ vm_endpiece ],