mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-06 18:09:10 +00:00
63 lines
2.0 KiB
TypeScript
63 lines
2.0 KiB
TypeScript
|
import { WeatherType } from "#app/data/weather";
|
||
|
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";
|
||
|
import { SPLASH_ONLY } from "../utils/testUtils";
|
||
|
import { BattlerIndex } from "#app/battle";
|
||
|
|
||
|
describe("Weather - Hail", () => {
|
||
|
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
|
||
|
.weather(WeatherType.HAIL)
|
||
|
.battleType("single")
|
||
|
.moveset(SPLASH_ONLY)
|
||
|
.enemyMoveset(SPLASH_ONLY)
|
||
|
.enemySpecies(Species.MAGIKARP);
|
||
|
});
|
||
|
|
||
|
it("inflicts damage equal to 1/16 of Pokemon's max HP at turn end", async () => {
|
||
|
await game.classicMode.startBattle([Species.MAGIKARP]);
|
||
|
|
||
|
game.move.select(Moves.SPLASH);
|
||
|
await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]);
|
||
|
|
||
|
await game.phaseInterceptor.to("TurnEndPhase");
|
||
|
|
||
|
game.scene.getField(true).forEach(pokemon => {
|
||
|
expect(pokemon.hp).toBeLessThan(pokemon.getMaxHp() - Math.floor(pokemon.getMaxHp() / 16));
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it("does not inflict damage to a Pokemon that is underwater (Dive) or underground (Dig)", async () => {
|
||
|
game.override.moveset([Moves.DIG]);
|
||
|
await game.classicMode.startBattle([Species.MAGIKARP]);
|
||
|
|
||
|
game.move.select(Moves.DIG);
|
||
|
await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]);
|
||
|
|
||
|
await game.phaseInterceptor.to("TurnEndPhase");
|
||
|
|
||
|
const playerPokemon = game.scene.getPlayerPokemon()!;
|
||
|
const enemyPokemon = game.scene.getEnemyPokemon()!;
|
||
|
|
||
|
expect(playerPokemon.hp).toBe(playerPokemon.getMaxHp());
|
||
|
expect(enemyPokemon.hp).toBeLessThan(enemyPokemon.getMaxHp() - Math.floor(enemyPokemon.getMaxHp() / 16));
|
||
|
});
|
||
|
});
|