2025-01-12 15:33:05 -08:00
|
|
|
import type { EnemyPokemon } from "#app/field/pokemon";
|
2024-11-08 14:44:34 -08:00
|
|
|
import { Abilities } from "#enums/abilities";
|
2024-08-25 19:11:01 -07:00
|
|
|
import { Moves } from "#enums/moves";
|
|
|
|
import { Species } from "#enums/species";
|
2024-11-08 14:44:34 -08:00
|
|
|
import { StatusEffect } from "#enums/status-effect";
|
2025-02-22 22:52:07 -06:00
|
|
|
import GameManager from "#test/testUtils/gameManager";
|
2024-08-25 19:11:01 -07:00
|
|
|
import Phaser from "phaser";
|
|
|
|
import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest";
|
|
|
|
|
2024-09-20 14:05:45 -07:00
|
|
|
|
2024-08-25 19:11:01 -07:00
|
|
|
describe("Moves - Thunder Wave", () => {
|
|
|
|
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
|
|
|
|
.battleType("single")
|
|
|
|
.starterSpecies(Species.PIKACHU)
|
2024-10-04 13:08:31 +08:00
|
|
|
.moveset([ Moves.THUNDER_WAVE ])
|
2024-09-09 09:55:11 -07:00
|
|
|
.enemyMoveset(Moves.SPLASH);
|
2024-08-25 19:11:01 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
// References: https://bulbapedia.bulbagarden.net/wiki/Thunder_Wave_(move)
|
|
|
|
|
|
|
|
it("paralyzes non-statused Pokemon that are not Ground types", async () => {
|
|
|
|
game.override.enemySpecies(Species.MAGIKARP);
|
|
|
|
await game.startBattle();
|
|
|
|
|
|
|
|
const enemyPokemon: EnemyPokemon = game.scene.getEnemyPokemon()!;
|
|
|
|
|
|
|
|
game.move.select(Moves.THUNDER_WAVE);
|
|
|
|
await game.move.forceHit();
|
|
|
|
await game.phaseInterceptor.to("BerryPhase", false);
|
|
|
|
|
|
|
|
expect(enemyPokemon.status?.effect).toBe(StatusEffect.PARALYSIS);
|
2024-09-20 14:05:45 -07:00
|
|
|
});
|
2024-08-25 19:11:01 -07:00
|
|
|
|
|
|
|
it("does not paralyze if the Pokemon is a Ground-type", async () => {
|
|
|
|
game.override.enemySpecies(Species.DIGLETT);
|
|
|
|
await game.startBattle();
|
|
|
|
|
|
|
|
const enemyPokemon: EnemyPokemon = game.scene.getEnemyPokemon()!;
|
|
|
|
|
|
|
|
game.move.select(Moves.THUNDER_WAVE);
|
|
|
|
await game.move.forceHit();
|
|
|
|
await game.phaseInterceptor.to("BerryPhase", false);
|
|
|
|
|
|
|
|
expect(enemyPokemon.status).toBeUndefined();
|
2024-09-20 14:05:45 -07:00
|
|
|
});
|
2024-08-25 19:11:01 -07:00
|
|
|
|
|
|
|
it("does not paralyze if the Pokemon already has a status effect", async () => {
|
|
|
|
game.override.enemySpecies(Species.MAGIKARP).enemyStatusEffect(StatusEffect.BURN);
|
|
|
|
await game.startBattle();
|
|
|
|
|
|
|
|
const enemyPokemon: EnemyPokemon = game.scene.getEnemyPokemon()!;
|
|
|
|
|
|
|
|
game.move.select(Moves.THUNDER_WAVE);
|
|
|
|
await game.move.forceHit();
|
|
|
|
await game.phaseInterceptor.to("BerryPhase", false);
|
|
|
|
|
|
|
|
expect(enemyPokemon.status?.effect).not.toBe(StatusEffect.PARALYSIS);
|
2024-09-20 14:05:45 -07:00
|
|
|
});
|
2024-08-25 19:11:01 -07:00
|
|
|
|
|
|
|
it("affects Ground types if the user has Normalize", async () => {
|
|
|
|
game.override.ability(Abilities.NORMALIZE).enemySpecies(Species.DIGLETT);
|
|
|
|
await game.startBattle();
|
|
|
|
|
|
|
|
const enemyPokemon: EnemyPokemon = game.scene.getEnemyPokemon()!;
|
|
|
|
|
|
|
|
game.move.select(Moves.THUNDER_WAVE);
|
|
|
|
await game.move.forceHit();
|
|
|
|
await game.phaseInterceptor.to("BerryPhase", false);
|
|
|
|
|
|
|
|
expect(enemyPokemon.status?.effect).toBe(StatusEffect.PARALYSIS);
|
2024-09-20 14:05:45 -07:00
|
|
|
});
|
2024-08-25 19:11:01 -07:00
|
|
|
|
|
|
|
it("does not affect Ghost types if the user has Normalize", async () => {
|
|
|
|
game.override.ability(Abilities.NORMALIZE).enemySpecies(Species.HAUNTER);
|
|
|
|
await game.startBattle();
|
|
|
|
|
|
|
|
const enemyPokemon: EnemyPokemon = game.scene.getEnemyPokemon()!;
|
|
|
|
|
|
|
|
game.move.select(Moves.THUNDER_WAVE);
|
|
|
|
await game.move.forceHit();
|
|
|
|
await game.phaseInterceptor.to("BerryPhase", false);
|
|
|
|
|
|
|
|
expect(enemyPokemon.status).toBeUndefined();
|
2024-09-20 14:05:45 -07:00
|
|
|
});
|
2024-08-25 19:11:01 -07:00
|
|
|
});
|