mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-18 15:55:10 +00:00
363 lines
14 KiB
TypeScript
363 lines
14 KiB
TypeScript
import { BattlerIndex } from "#app/battle";
|
|
import { allAbilities } from "#app/data/ability";
|
|
import { ArenaTagSide } from "#app/data/arena-tag";
|
|
import { allMoves } from "#app/data/moves/move";
|
|
import { ArenaTagType } from "#app/enums/arena-tag-type";
|
|
import { BattlerTagType } from "#app/enums/battler-tag-type";
|
|
import { Stat } from "#app/enums/stat";
|
|
import { StatusEffect } from "#app/enums/status-effect";
|
|
import { Abilities } from "#enums/abilities";
|
|
import { Moves } from "#enums/moves";
|
|
import { Species } from "#enums/species";
|
|
import GameManager from "#test/testUtils/gameManager";
|
|
import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
|
|
|
|
describe("Abilities - Magic Bounce", () => {
|
|
let phaserGame: Phaser.Game;
|
|
let game: GameManager;
|
|
|
|
beforeAll(() => {
|
|
phaserGame = new Phaser.Game({
|
|
type: Phaser.HEADLESS,
|
|
});
|
|
});
|
|
|
|
afterEach(() => {
|
|
game.phaseInterceptor.restoreOg();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
game = new GameManager(phaserGame);
|
|
game.override
|
|
.ability(Abilities.BALL_FETCH)
|
|
.battleType("single")
|
|
.moveset([Moves.GROWL, Moves.SPLASH])
|
|
.disableCrits()
|
|
.enemySpecies(Species.MAGIKARP)
|
|
.enemyAbility(Abilities.MAGIC_BOUNCE)
|
|
.enemyMoveset(Moves.SPLASH);
|
|
});
|
|
|
|
it("should reflect basic status moves", async () => {
|
|
await game.classicMode.startBattle([Species.MAGIKARP]);
|
|
|
|
game.move.select(Moves.GROWL);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(game.scene.getPlayerPokemon()!.getStatStage(Stat.ATK)).toBe(-1);
|
|
});
|
|
|
|
it("should not bounce moves while the target is in the semi-invulnerable state", async () => {
|
|
await game.classicMode.startBattle([Species.MAGIKARP]);
|
|
game.override.moveset([Moves.GROWL]);
|
|
game.override.enemyMoveset([Moves.FLY]);
|
|
|
|
game.move.select(Moves.GROWL);
|
|
await game.forceEnemyMove(Moves.FLY);
|
|
await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
|
|
expect(game.scene.getPlayerPokemon()!.getStatStage(Stat.ATK)).toBe(0);
|
|
});
|
|
|
|
it("should individually bounce back multi-target moves", async () => {
|
|
game.override.battleType("double");
|
|
game.override.moveset([Moves.GROWL, Moves.SPLASH]);
|
|
await game.classicMode.startBattle([Species.MAGIKARP, Species.MAGIKARP]);
|
|
|
|
game.move.select(Moves.GROWL, 0);
|
|
game.move.select(Moves.SPLASH, 1);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
|
|
const user = game.scene.getPlayerField()[0];
|
|
expect(user.getStatStage(Stat.ATK)).toBe(-2);
|
|
});
|
|
|
|
it("should still bounce back a move that would otherwise fail", async () => {
|
|
await game.classicMode.startBattle([Species.MAGIKARP]);
|
|
game.scene.getEnemyPokemon()?.setStatStage(Stat.ATK, -6);
|
|
game.override.moveset([Moves.GROWL]);
|
|
|
|
game.move.select(Moves.GROWL);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
|
|
expect(game.scene.getPlayerPokemon()!.getStatStage(Stat.ATK)).toBe(-1);
|
|
});
|
|
|
|
it("should not bounce back a move that was just bounced", async () => {
|
|
game.override.ability(Abilities.MAGIC_BOUNCE);
|
|
await game.classicMode.startBattle([Species.MAGIKARP]);
|
|
|
|
game.move.select(Moves.GROWL);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
|
|
expect(game.scene.getPlayerPokemon()!.getStatStage(Stat.ATK)).toBe(-1);
|
|
});
|
|
|
|
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]);
|
|
|
|
game.move.select(Moves.GROWL);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
|
|
expect(game.scene.getEnemyPokemon()!.getStatStage(Stat.ATK)).toBe(-1);
|
|
});
|
|
|
|
it("should not bounce back a move from a mold breaker user", async () => {
|
|
game.override.ability(Abilities.MOLD_BREAKER);
|
|
await game.classicMode.startBattle([Species.MAGIKARP]);
|
|
|
|
game.move.select(Moves.GROWL);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
|
|
expect(game.scene.getEnemyPokemon()!.getStatStage(Stat.ATK)).toBe(-1);
|
|
});
|
|
|
|
it("should bounce back a spread status move against both pokemon", async () => {
|
|
game.override.battleType("double");
|
|
game.override.moveset([Moves.GROWL, Moves.SPLASH]);
|
|
game.override.enemyMoveset([Moves.SPLASH]);
|
|
await game.classicMode.startBattle([Species.MAGIKARP, Species.MAGIKARP]);
|
|
|
|
game.move.select(Moves.GROWL, 0);
|
|
game.move.select(Moves.SPLASH, 1);
|
|
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(game.scene.getPlayerField().every(p => p.getStatStage(Stat.ATK) === -2)).toBeTruthy();
|
|
});
|
|
|
|
it("should only bounce spikes back once in doubles when both targets have magic bounce", async () => {
|
|
game.override.battleType("double");
|
|
await game.classicMode.startBattle([Species.MAGIKARP]);
|
|
game.override.moveset([Moves.SPIKES]);
|
|
|
|
game.move.select(Moves.SPIKES);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
|
|
expect(game.scene.arena.getTagOnSide(ArenaTagType.SPIKES, ArenaTagSide.PLAYER)!["layers"]).toBe(1);
|
|
expect(game.scene.arena.getTagOnSide(ArenaTagType.SPIKES, ArenaTagSide.ENEMY)).toBeUndefined();
|
|
});
|
|
|
|
it("should bounce spikes even when the target is protected", async () => {
|
|
game.override.moveset([Moves.SPIKES]);
|
|
game.override.enemyMoveset([Moves.PROTECT]);
|
|
await game.classicMode.startBattle([Species.MAGIKARP]);
|
|
|
|
game.move.select(Moves.SPIKES);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(game.scene.arena.getTagOnSide(ArenaTagType.SPIKES, ArenaTagSide.PLAYER)!["layers"]).toBe(1);
|
|
});
|
|
|
|
it("should not bounce spikes when the target is in the semi-invulnerable state", async () => {
|
|
game.override.moveset([Moves.SPIKES]);
|
|
game.override.enemyMoveset([Moves.FLY]);
|
|
await game.classicMode.startBattle([Species.MAGIKARP]);
|
|
|
|
game.move.select(Moves.SPIKES);
|
|
await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(game.scene.arena.getTagOnSide(ArenaTagType.SPIKES, ArenaTagSide.ENEMY)!["layers"]).toBe(1);
|
|
});
|
|
|
|
it("should not bounce back curse", async () => {
|
|
game.override.starterSpecies(Species.GASTLY);
|
|
await game.classicMode.startBattle([Species.GASTLY]);
|
|
game.override.moveset([Moves.CURSE]);
|
|
|
|
game.move.select(Moves.CURSE);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
|
|
expect(game.scene.getEnemyPokemon()!.getTag(BattlerTagType.CURSED)).toBeDefined();
|
|
});
|
|
|
|
it("should not cause encore to be interrupted after bouncing", async () => {
|
|
game.override.moveset([Moves.SPLASH, Moves.GROWL, Moves.ENCORE]);
|
|
game.override.enemyMoveset([Moves.TACKLE, Moves.GROWL]);
|
|
// game.override.ability(Abilities.MOLD_BREAKER);
|
|
await game.classicMode.startBattle([Species.MAGIKARP]);
|
|
const playerPokemon = game.scene.getPlayerPokemon()!;
|
|
const enemyPokemon = game.scene.getEnemyPokemon()!;
|
|
|
|
// Give the player MOLD_BREAKER for this turn to bypass Magic Bounce.
|
|
vi.spyOn(playerPokemon, "getAbility").mockReturnValue(allAbilities[Abilities.MOLD_BREAKER]);
|
|
|
|
// turn 1
|
|
game.move.select(Moves.ENCORE);
|
|
await game.forceEnemyMove(Moves.TACKLE);
|
|
await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]);
|
|
await game.toNextTurn();
|
|
expect(enemyPokemon.getTag(BattlerTagType.ENCORE)!["moveId"]).toBe(Moves.TACKLE);
|
|
|
|
// turn 2
|
|
vi.spyOn(playerPokemon, "getAbility").mockRestore();
|
|
game.move.select(Moves.GROWL);
|
|
await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(enemyPokemon.getTag(BattlerTagType.ENCORE)!["moveId"]).toBe(Moves.TACKLE);
|
|
expect(enemyPokemon.getLastXMoves()[0].move).toBe(Moves.TACKLE);
|
|
});
|
|
|
|
// TODO: encore is failing if the last move was virtual.
|
|
it.todo("should not cause the bounced move to count for encore", async () => {
|
|
game.override.moveset([Moves.SPLASH, Moves.GROWL, Moves.ENCORE]);
|
|
game.override.enemyMoveset([Moves.GROWL, Moves.TACKLE]);
|
|
game.override.enemyAbility(Abilities.MAGIC_BOUNCE);
|
|
|
|
await game.classicMode.startBattle([Species.MAGIKARP]);
|
|
const playerPokemon = game.scene.getPlayerPokemon()!;
|
|
const enemyPokemon = game.scene.getEnemyPokemon()!;
|
|
|
|
// turn 1
|
|
game.move.select(Moves.GROWL);
|
|
await game.forceEnemyMove(Moves.TACKLE);
|
|
await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]);
|
|
await game.toNextTurn();
|
|
|
|
// Give the player MOLD_BREAKER for this turn to bypass Magic Bounce.
|
|
vi.spyOn(playerPokemon, "getAbility").mockReturnValue(allAbilities[Abilities.MOLD_BREAKER]);
|
|
|
|
// turn 2
|
|
game.move.select(Moves.ENCORE);
|
|
await game.forceEnemyMove(Moves.TACKLE);
|
|
await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(enemyPokemon.getTag(BattlerTagType.ENCORE)!["moveId"]).toBe(Moves.TACKLE);
|
|
expect(enemyPokemon.getLastXMoves()[0].move).toBe(Moves.TACKLE);
|
|
});
|
|
|
|
// TODO: stomping tantrum should consider moves that were bounced.
|
|
it.todo("should cause stomping tantrum to double in power when the last move was bounced", async () => {
|
|
game.override.battleType("single");
|
|
await game.classicMode.startBattle([Species.MAGIKARP]);
|
|
game.override.moveset([Moves.STOMPING_TANTRUM, Moves.CHARM]);
|
|
|
|
const stomping_tantrum = allMoves[Moves.STOMPING_TANTRUM];
|
|
vi.spyOn(stomping_tantrum, "calculateBattlePower");
|
|
|
|
game.move.select(Moves.CHARM);
|
|
await game.toNextTurn();
|
|
|
|
game.move.select(Moves.STOMPING_TANTRUM);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(stomping_tantrum.calculateBattlePower).toHaveReturnedWith(150);
|
|
});
|
|
|
|
// TODO: stomping tantrum should consider moves that were bounced.
|
|
it.todo(
|
|
"should properly cause the enemy's stomping tantrum to be doubled in power after bouncing and failing",
|
|
async () => {
|
|
game.override.enemyMoveset([Moves.STOMPING_TANTRUM, Moves.SPLASH, Moves.CHARM]);
|
|
await game.classicMode.startBattle([Species.BULBASAUR]);
|
|
|
|
const stomping_tantrum = allMoves[Moves.STOMPING_TANTRUM];
|
|
const enemy = game.scene.getEnemyPokemon()!;
|
|
vi.spyOn(stomping_tantrum, "calculateBattlePower");
|
|
|
|
game.move.select(Moves.SPORE);
|
|
await game.forceEnemyMove(Moves.CHARM);
|
|
await game.phaseInterceptor.to("TurnEndPhase");
|
|
expect(enemy.getLastXMoves(1)[0].result).toBe("success");
|
|
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(stomping_tantrum.calculateBattlePower).toHaveReturnedWith(75);
|
|
|
|
await game.toNextTurn();
|
|
game.move.select(Moves.GROWL);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(stomping_tantrum.calculateBattlePower).toHaveReturnedWith(75);
|
|
},
|
|
);
|
|
|
|
it("should respect immunities when bouncing a move", async () => {
|
|
vi.spyOn(allMoves[Moves.THUNDER_WAVE], "accuracy", "get").mockReturnValue(100);
|
|
game.override.moveset([Moves.THUNDER_WAVE, Moves.GROWL]);
|
|
game.override.ability(Abilities.SOUNDPROOF);
|
|
await game.classicMode.startBattle([Species.PHANPY]);
|
|
|
|
// Turn 1 - thunder wave immunity test
|
|
game.move.select(Moves.THUNDER_WAVE);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(game.scene.getPlayerPokemon()!.status).toBeUndefined();
|
|
|
|
// Turn 2 - soundproof immunity test
|
|
game.move.select(Moves.GROWL);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(game.scene.getPlayerPokemon()!.getStatStage(Stat.ATK)).toBe(0);
|
|
});
|
|
|
|
it("should bounce back a move before the accuracy check", async () => {
|
|
game.override.moveset([Moves.SPORE]);
|
|
await game.classicMode.startBattle([Species.MAGIKARP]);
|
|
|
|
const attacker = game.scene.getPlayerPokemon()!;
|
|
|
|
vi.spyOn(attacker, "getAccuracyMultiplier").mockReturnValue(0.0);
|
|
game.move.select(Moves.SPORE);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(game.scene.getPlayerPokemon()!.status?.effect).toBe(StatusEffect.SLEEP);
|
|
});
|
|
|
|
it("should take the accuracy of the magic bounce user into account", async () => {
|
|
game.override.moveset([Moves.SPORE]);
|
|
await game.classicMode.startBattle([Species.MAGIKARP]);
|
|
const opponent = game.scene.getEnemyPokemon()!;
|
|
|
|
vi.spyOn(opponent, "getAccuracyMultiplier").mockReturnValue(0);
|
|
game.move.select(Moves.SPORE);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(game.scene.getPlayerPokemon()!.status).toBeUndefined();
|
|
});
|
|
|
|
it("should always apply the leftmost available target's magic bounce when bouncing moves like sticky webs in doubles", async () => {
|
|
game.override.battleType("double");
|
|
game.override.moveset([Moves.STICKY_WEB, Moves.SPLASH, Moves.TRICK_ROOM]);
|
|
|
|
await game.classicMode.startBattle([Species.MAGIKARP, Species.MAGIKARP]);
|
|
const [enemy_1, enemy_2] = game.scene.getEnemyField();
|
|
// set speed just incase logic erroneously checks for speed order
|
|
enemy_1.setStat(Stat.SPD, enemy_2.getStat(Stat.SPD) + 1);
|
|
|
|
// turn 1
|
|
game.move.select(Moves.STICKY_WEB, 0);
|
|
game.move.select(Moves.TRICK_ROOM, 1);
|
|
await game.phaseInterceptor.to("TurnEndPhase");
|
|
|
|
expect(
|
|
game.scene.arena
|
|
.getTagOnSide(ArenaTagType.STICKY_WEB, ArenaTagSide.PLAYER)
|
|
?.getSourcePokemon()
|
|
?.getBattlerIndex(),
|
|
).toBe(BattlerIndex.ENEMY);
|
|
game.scene.arena.removeTagOnSide(ArenaTagType.STICKY_WEB, ArenaTagSide.PLAYER, true);
|
|
|
|
// turn 2
|
|
game.move.select(Moves.STICKY_WEB, 0);
|
|
game.move.select(Moves.TRICK_ROOM, 1);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(
|
|
game.scene.arena
|
|
.getTagOnSide(ArenaTagType.STICKY_WEB, ArenaTagSide.PLAYER)
|
|
?.getSourcePokemon()
|
|
?.getBattlerIndex(),
|
|
).toBe(BattlerIndex.ENEMY);
|
|
});
|
|
|
|
it("should not bounce back status moves that hit through semi-invulnerable states", async () => {
|
|
game.override.moveset([Moves.TOXIC, Moves.CHARM]);
|
|
await game.classicMode.startBattle([Species.BULBASAUR]);
|
|
game.move.select(Moves.TOXIC);
|
|
await game.forceEnemyMove(Moves.FLY);
|
|
await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(game.scene.getEnemyPokemon()!.status?.effect).toBe(StatusEffect.TOXIC);
|
|
expect(game.scene.getPlayerPokemon()!.status).toBeUndefined();
|
|
|
|
game.override.ability(Abilities.NO_GUARD);
|
|
game.move.select(Moves.CHARM);
|
|
await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]);
|
|
await game.phaseInterceptor.to("BerryPhase");
|
|
expect(game.scene.getEnemyPokemon()!.getStatStage(Stat.ATK)).toBe(-2);
|
|
expect(game.scene.getPlayerPokemon()!.getStatStage(Stat.ATK)).toBe(0);
|
|
});
|
|
});
|