2024-10-04 00:58:21 +08:00
|
|
|
import { BattlerIndex } from "#app/battle";
|
2024-11-08 14:44:34 -08:00
|
|
|
import { Type } from "#enums/type";
|
2024-10-04 00:58:21 +08:00
|
|
|
import { Abilities } from "#enums/abilities";
|
|
|
|
import { Moves } from "#enums/moves";
|
|
|
|
import { Species } from "#enums/species";
|
2025-02-22 22:52:07 -06:00
|
|
|
import GameManager from "#test/testUtils/gameManager";
|
2024-10-04 00:58:21 +08:00
|
|
|
import Phaser from "phaser";
|
|
|
|
import { afterEach, beforeAll, beforeEach, describe, it, expect, vi } from "vitest";
|
|
|
|
|
|
|
|
describe("Moves - Tera Starstorm", () => {
|
|
|
|
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
|
2024-10-04 13:08:31 +08:00
|
|
|
.moveset([ Moves.TERA_STARSTORM, Moves.SPLASH ])
|
2024-10-04 00:58:21 +08:00
|
|
|
.battleType("double")
|
|
|
|
.enemyAbility(Abilities.BALL_FETCH)
|
|
|
|
.enemyMoveset(Moves.SPLASH)
|
|
|
|
.enemyLevel(30)
|
2025-02-17 08:20:50 +11:00
|
|
|
.enemySpecies(Species.MAGIKARP);
|
2024-10-04 00:58:21 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("changes type to Stellar when used by Terapagos in its Stellar Form", async () => {
|
|
|
|
game.override.battleType("single");
|
2024-10-04 13:08:31 +08:00
|
|
|
await game.classicMode.startBattle([ Species.TERAPAGOS ]);
|
2024-10-04 00:58:21 +08:00
|
|
|
|
|
|
|
const terapagos = game.scene.getPlayerPokemon()!;
|
2025-02-17 08:20:50 +11:00
|
|
|
terapagos.isTerastallized = true;
|
2024-10-04 00:58:21 +08:00
|
|
|
|
|
|
|
vi.spyOn(terapagos, "getMoveType");
|
|
|
|
|
|
|
|
game.move.select(Moves.TERA_STARSTORM);
|
|
|
|
await game.phaseInterceptor.to("TurnEndPhase");
|
|
|
|
|
|
|
|
expect(terapagos.getMoveType).toHaveReturnedWith(Type.STELLAR);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("targets both opponents in a double battle when used by Terapagos in its Stellar Form", async () => {
|
2024-10-04 13:08:31 +08:00
|
|
|
await game.classicMode.startBattle([ Species.MAGIKARP, Species.TERAPAGOS ]);
|
2024-10-04 00:58:21 +08:00
|
|
|
|
2025-02-17 08:20:50 +11:00
|
|
|
const terapagos = game.scene.getPlayerParty()[1];
|
|
|
|
terapagos.isTerastallized = true;
|
|
|
|
|
2024-10-04 00:58:21 +08:00
|
|
|
game.move.select(Moves.TERA_STARSTORM, 0, BattlerIndex.ENEMY);
|
|
|
|
game.move.select(Moves.TERA_STARSTORM, 1);
|
|
|
|
|
2024-10-04 13:08:31 +08:00
|
|
|
await game.setTurnOrder([ BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2 ]);
|
2024-10-04 00:58:21 +08:00
|
|
|
|
|
|
|
const enemyField = game.scene.getEnemyField();
|
|
|
|
|
|
|
|
// Pokemon other than Terapagos should not be affected - only hits one target
|
|
|
|
await game.phaseInterceptor.to("MoveEndPhase");
|
|
|
|
expect(enemyField.some(pokemon => pokemon.isFullHp())).toBe(true);
|
|
|
|
|
|
|
|
// Terapagos in Stellar Form should hit both targets
|
|
|
|
await game.phaseInterceptor.to("MoveEndPhase");
|
|
|
|
expect(enemyField.every(pokemon => pokemon.isFullHp())).toBe(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("applies the effects when Terapagos in Stellar Form is fused with another Pokemon", async () => {
|
2024-10-04 13:08:31 +08:00
|
|
|
await game.classicMode.startBattle([ Species.TERAPAGOS, Species.CHARMANDER, Species.MAGIKARP ]);
|
2024-10-04 00:58:21 +08:00
|
|
|
|
2024-11-03 18:53:52 -08:00
|
|
|
const fusionedMon = game.scene.getPlayerParty()[0];
|
|
|
|
const magikarp = game.scene.getPlayerParty()[2];
|
2024-10-04 00:58:21 +08:00
|
|
|
|
|
|
|
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
|
|
|
fusionedMon.fusionSpecies = magikarp.species;
|
|
|
|
fusionedMon.fusionFormIndex = magikarp.formIndex;
|
|
|
|
fusionedMon.fusionAbilityIndex = magikarp.abilityIndex;
|
|
|
|
fusionedMon.fusionShiny = magikarp.shiny;
|
|
|
|
fusionedMon.fusionVariant = magikarp.variant;
|
|
|
|
fusionedMon.fusionGender = magikarp.gender;
|
|
|
|
fusionedMon.fusionLuck = magikarp.luck;
|
|
|
|
|
2025-02-17 08:20:50 +11:00
|
|
|
fusionedMon.isTerastallized = true;
|
|
|
|
|
2024-10-04 00:58:21 +08:00
|
|
|
vi.spyOn(fusionedMon, "getMoveType");
|
|
|
|
|
|
|
|
game.move.select(Moves.TERA_STARSTORM, 0);
|
|
|
|
game.move.select(Moves.SPLASH, 1);
|
|
|
|
await game.phaseInterceptor.to("TurnEndPhase");
|
|
|
|
|
|
|
|
// Fusion and terastallized
|
|
|
|
expect(fusionedMon.isFusion()).toBe(true);
|
|
|
|
// Move effects should be applied
|
|
|
|
expect(fusionedMon.getMoveType).toHaveReturnedWith(Type.STELLAR);
|
|
|
|
expect(game.scene.getEnemyField().every(pokemon => pokemon.isFullHp())).toBe(false);
|
|
|
|
});
|
|
|
|
});
|