mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-07 16:09:27 +02:00
* Standardize filenames to kebab-case Co-authored-by: pymilkmaiden <cassiopeiamahler56@gmail.com> * Move script outside of public folder * Move update_exp_sprites to scripts * Add ls-lint to lint file and directory names * Update lefthook.yml to skip merge / rebase on all pre-commit commands --------- Co-authored-by: pymilkmaiden <cassiopeiamahler56@gmail.com>
61 lines
1.7 KiB
TypeScript
61 lines
1.7 KiB
TypeScript
import { globalScene } from "#app/global-scene";
|
|
import { AbilityId } from "#enums/ability-id";
|
|
import { MoveId } from "#enums/move-id";
|
|
import { SpeciesId } from "#enums/species-id";
|
|
import { GameManager } from "#test/test-utils/game-manager";
|
|
import Phaser from "phaser";
|
|
import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest";
|
|
|
|
describe("Items - Mystical Rock", () => {
|
|
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
|
|
.enemySpecies(SpeciesId.SHUCKLE)
|
|
.enemyMoveset(MoveId.SPLASH)
|
|
.enemyAbility(AbilityId.BALL_FETCH)
|
|
.moveset([MoveId.SUNNY_DAY, MoveId.GRASSY_TERRAIN])
|
|
.startingHeldItems([{ name: "MYSTICAL_ROCK", count: 2 }])
|
|
.battleStyle("single");
|
|
});
|
|
|
|
it("should increase weather duration by +2 turns per stack", async () => {
|
|
await game.classicMode.startBattle([SpeciesId.GASTLY]);
|
|
|
|
game.move.select(MoveId.SUNNY_DAY);
|
|
|
|
await game.phaseInterceptor.to("MoveEndPhase");
|
|
|
|
const weather = globalScene.arena.weather;
|
|
|
|
expect(weather).toBeDefined();
|
|
expect(weather!.turnsLeft).to.equal(9);
|
|
});
|
|
|
|
it("should increase terrain duration by +2 turns per stack", async () => {
|
|
await game.classicMode.startBattle([SpeciesId.GASTLY]);
|
|
|
|
game.move.select(MoveId.GRASSY_TERRAIN);
|
|
|
|
await game.phaseInterceptor.to("MoveEndPhase");
|
|
|
|
const terrain = globalScene.arena.terrain;
|
|
|
|
expect(terrain).toBeDefined();
|
|
expect(terrain!.turnsLeft).to.equal(9);
|
|
});
|
|
});
|