Apply suggestions from code review

it localization and test styling

Co-authored-by: Niccolò <123510358+NicusPulcis@users.noreply.github.com>
Co-authored-by: flx-sta <50131232+flx-sta@users.noreply.github.com>
This commit is contained in:
DustinLin 2024-08-13 14:03:47 -07:00 committed by GitHub
parent 2ebe8660a9
commit 7a8c5a23c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 7 deletions

View File

@ -59,6 +59,6 @@ export const moveTriggers: SimpleTranslationEntries = {
"copyType": "{{pokemonName}} assume il tipo\ndi {{targetPokemonName}}!",
"suppressAbilities": "Labilità di {{pokemonName}}\nperde ogni efficacia!",
"swapArenaTags": "{{pokemonName}} ha invertito gli effetti attivi\nnelle due metà del campo!",
"chillyReception": "{{pokemonName}} is preparing to tell a chillingly bad joke!",
"exposedMove": "{{pokemonName}} identified\n{{targetPokemonName}}!",
"chillyReception": "{{pokemonName}} sta per fare una battuta!",
"exposedMove": "{{targetPokemonName}} è stato identificato\nda {{pokemonName}}!",
} as const;

View File

@ -26,11 +26,11 @@ describe("Moves - Chilly Reception", () => {
beforeEach(() => {
game = new GameManager(phaserGame);
game.override.battleType("single");
game.override.moveset([Moves.CHILLY_RECEPTION, Moves.SPLASH, Moves.SNOWSCAPE]);
game.override.enemyMoveset(SPLASH_ONLY);
game.override.startingLevel(5);
game.override.enemyLevel(5);
game.override.battleType("single")
.moveset([Moves.CHILLY_RECEPTION, Moves.SPLASH, Moves.SNOWSCAPE])
.enemyMoveset(SPLASH_ONLY)
.startingLevel(5)
.enemyLevel(5);
});