mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-08 19:09:00 +00:00
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
|
import { Abilities } from "#enums/abilities";
|
||
|
import { Moves } from "#enums/moves";
|
||
|
import { Species } from "#enums/species";
|
||
|
import GameManager from "#test/utils/gameManager";
|
||
|
import Phaser from "phaser";
|
||
|
import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest";
|
||
|
|
||
|
describe("Moves - Chloroblast", () => {
|
||
|
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
|
||
|
.moveset([ Moves.CHLOROBLAST ])
|
||
|
.ability(Abilities.BALL_FETCH)
|
||
|
.battleType("single")
|
||
|
.disableCrits()
|
||
|
.enemySpecies(Species.MAGIKARP)
|
||
|
.enemyAbility(Abilities.BALL_FETCH)
|
||
|
.enemyMoveset(Moves.PROTECT);
|
||
|
});
|
||
|
|
||
|
it("should not deal recoil damage if the opponent uses protect", async () => {
|
||
|
await game.classicMode.startBattle([ Species.FEEBAS ]);
|
||
|
|
||
|
game.move.select(Moves.CHLOROBLAST);
|
||
|
await game.phaseInterceptor.to("BerryPhase");
|
||
|
|
||
|
expect(game.scene.getPlayerPokemon()!.isFullHp()).toBe(true);
|
||
|
});
|
||
|
});
|