Activate mirror armor interaction test

Also update i18 locales key to `magicCoatActivated`
This commit is contained in:
Sirz Benjie 2025-02-10 20:01:30 -06:00
parent 4695166ca7
commit dba0151475
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E
2 changed files with 2 additions and 3 deletions

View File

@ -547,7 +547,7 @@ export class MovePhase extends BattlePhase {
return;
}
globalScene.queueMessage(i18next.t(this.reflected ? "battle:magicCoatExe" : "battle:useMove", {
globalScene.queueMessage(i18next.t(this.reflected ? "battle:magicCoatActivated" : "battle:useMove", {
pokemonNameWithAffix: getPokemonNameWithAffix(this.pokemon),
moveName: this.move.getName()
}), 500);

View File

@ -93,8 +93,7 @@ describe("Abilities - Magic Bounce", () => {
expect(game.scene.getPlayerPokemon()!.getStatStage(Stat.ATK)).toBe(-1);
});
// todo while Mirror Armor is not implemented
it.todo("should receive the stat change after reflecting a move back to a mirror armor user", async () => {
it("should receive the stat change after reflecting a move back to a mirror armor user", async () => {
game.override.ability(Abilities.MIRROR_ARMOR);
await game.classicMode.startBattle([ Species.MAGIKARP ]);