mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-25 01:32:21 +02:00
Activate mirror armor interaction test
Also update i18 locales key to `magicCoatActivated`
This commit is contained in:
parent
4695166ca7
commit
dba0151475
@ -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);
|
||||
|
@ -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 ]);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user