diff options
author | Joël Simoneau <simoneaujoel@gmail.com> | 2025-04-01 17:26:46 -0400 |
---|---|---|
committer | Joël Simoneau <simoneaujoel@gmail.com> | 2025-04-01 17:26:46 -0400 |
commit | 36d3870eb9eaa056203741c9644cc383902129af (patch) | |
tree | 11268303ec7c8938074c1eb49b3ce24da47688d5 /rules.js | |
parent | 515ada94a8ec8c91f5c633995ae589bbf5e4ac7c (diff) | |
download | vijayanagara-36d3870eb9eaa056203741c9644cc383902129af.tar.gz |
Adding more logo
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -2352,7 +2352,7 @@ states.compel_space_influencial = { } }, piece(p) { - logi("Removed " + piece_name(p) + " from S" + piece_space(p)) + logi("Removed " + piece_symbol(p) + " from S" + piece_space(p)) let f = piece_faction(p) remove_piece(p) @@ -4553,7 +4553,7 @@ function pop_vm_prompt() { } function vm_remove() { - log("Removed " + piece_name(game.vm.p) + " from S" + piece_space(game.vm.p) + ".") + log("Removed " + piece_symbol(game.vm.p) + " from S" + piece_space(game.vm.p) + ".") remove_piece(game.vm.p) vm_next() } @@ -5691,9 +5691,9 @@ const PIECE_FACTION_TYPE_NAME = [ [ null, null, "Invader" ] ] const PIECE_FACTION_TYPE_SYMBOL = [ - [ null, null, null ], - [ null, null, null ], - [ null, null, null ], + [ null, "EDS", "CDS" ], + [ null, "EBK", null ], + [ null, "EVE", null ], [ null, null, "CMI" ] ] const LAST_CAVALRY = 9 |