mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-12 03:05:48 +00:00
79 lines
3.1 KiB
TypeScript
79 lines
3.1 KiB
TypeScript
|
import {afterEach, beforeAll, beforeEach, describe, expect, it, vi} from "vitest";
|
||
|
import Phaser from "phaser";
|
||
|
import GameManager from "#app/test/utils/gameManager";
|
||
|
import Overrides from "#app/overrides";
|
||
|
import { CommandPhase, MoveEndPhase, TurnInitPhase } from "#app/phases";
|
||
|
import {getMovePosition} from "#app/test/utils/gameManagerUtils";
|
||
|
import {BattleStat} from "#app/data/battle-stat";
|
||
|
import { Abilities } from "#enums/abilities";
|
||
|
import { Moves } from "#enums/moves";
|
||
|
import { Species } from "#enums/species";
|
||
|
import { TrappedTag } from "#app/data/battler-tags.js";
|
||
|
|
||
|
describe("Moves - Octolock", () => {
|
||
|
describe("integration tests", () => {
|
||
|
let phaserGame: Phaser.Game;
|
||
|
let game: GameManager;
|
||
|
|
||
|
beforeAll(() => {
|
||
|
phaserGame = new Phaser.Game({
|
||
|
type: Phaser.HEADLESS,
|
||
|
});
|
||
|
});
|
||
|
|
||
|
afterEach(() => {
|
||
|
game.phaseInterceptor.restoreOg();
|
||
|
});
|
||
|
|
||
|
beforeEach(() => {
|
||
|
game = new GameManager(phaserGame);
|
||
|
|
||
|
vi.spyOn(Overrides, "BATTLE_TYPE_OVERRIDE", "get").mockReturnValue("single");
|
||
|
|
||
|
vi.spyOn(Overrides, "OPP_SPECIES_OVERRIDE", "get").mockReturnValue(Species.RATTATA);
|
||
|
vi.spyOn(Overrides, "OPP_MOVESET_OVERRIDE", "get").mockReturnValue([Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]);
|
||
|
vi.spyOn(Overrides, "OPP_ABILITY_OVERRIDE", "get").mockReturnValue(Abilities.NONE);
|
||
|
|
||
|
vi.spyOn(Overrides, "STARTING_LEVEL_OVERRIDE", "get").mockReturnValue(2000);
|
||
|
vi.spyOn(Overrides, "MOVESET_OVERRIDE", "get").mockReturnValue([Moves.OCTOLOCK, Moves.SPLASH]);
|
||
|
vi.spyOn(Overrides, "ABILITY_OVERRIDE", "get").mockReturnValue(Abilities.NONE);
|
||
|
});
|
||
|
|
||
|
it("Reduces DEf and SPDEF by 1 each turn", { timeout: 10000 }, async () => {
|
||
|
await game.startBattle([Species.GRAPPLOCT]);
|
||
|
|
||
|
const enemyPokemon = game.scene.getEnemyField();
|
||
|
|
||
|
// use Octolock and advance to init phase of next turn to check for stat changes
|
||
|
game.doAttack(getMovePosition(game.scene, 0, Moves.OCTOLOCK));
|
||
|
await game.phaseInterceptor.to(TurnInitPhase);
|
||
|
|
||
|
expect(enemyPokemon[0].summonData.battleStats[BattleStat.DEF]).toBe(-1);
|
||
|
expect(enemyPokemon[0].summonData.battleStats[BattleStat.SPDEF]).toBe(-1);
|
||
|
|
||
|
// take a second turn to make sure stat changes occur again
|
||
|
await game.phaseInterceptor.to(CommandPhase);
|
||
|
game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH));
|
||
|
|
||
|
await game.phaseInterceptor.to(TurnInitPhase);
|
||
|
expect(enemyPokemon[0].summonData.battleStats[BattleStat.DEF]).toBe(-2);
|
||
|
expect(enemyPokemon[0].summonData.battleStats[BattleStat.SPDEF]).toBe(-2);
|
||
|
});
|
||
|
|
||
|
it("Traps the target pokemon", { timeout: 10000 }, async () => {
|
||
|
await game.startBattle([Species.GRAPPLOCT]);
|
||
|
|
||
|
const enemyPokemon = game.scene.getEnemyField();
|
||
|
|
||
|
// before Octolock - enemy should not be trapped
|
||
|
expect(enemyPokemon[0].findTag(t => t instanceof TrappedTag)).toBeUndefined();
|
||
|
|
||
|
game.doAttack(getMovePosition(game.scene, 0, Moves.OCTOLOCK));
|
||
|
|
||
|
// after Octolock - enemy should be trapped
|
||
|
await game.phaseInterceptor.to(MoveEndPhase);
|
||
|
expect(enemyPokemon[0].findTag(t => t instanceof TrappedTag)).toBeDefined();
|
||
|
});
|
||
|
});
|
||
|
});
|