apply missing game.override.startingLevel
This commit is contained in:
parent
e8859d2b62
commit
a025e30200
|
@ -29,7 +29,7 @@ describe("Abilities - Hustle", () => {
|
||||||
game = new GameManager(phaserGame);
|
game = new GameManager(phaserGame);
|
||||||
game.override.ability(Abilities.HUSTLE);
|
game.override.ability(Abilities.HUSTLE);
|
||||||
game.override.moveset([Moves.TACKLE, Moves.GIGA_DRAIN, Moves.FISSURE]);
|
game.override.moveset([Moves.TACKLE, Moves.GIGA_DRAIN, Moves.FISSURE]);
|
||||||
vi.spyOn(overrides, "STARTING_LEVEL_OVERRIDE", "get").mockReturnValue(5);
|
game.override.startingLevel(5);
|
||||||
vi.spyOn(overrides, "NEVER_CRIT_OVERRIDE", "get").mockReturnValue(true);
|
vi.spyOn(overrides, "NEVER_CRIT_OVERRIDE", "get").mockReturnValue(true);
|
||||||
game.override.enemyLevel(5);
|
game.override.enemyLevel(5);
|
||||||
game.override.enemyMoveset(SPLASH_ONLY);
|
game.override.enemyMoveset(SPLASH_ONLY);
|
||||||
|
@ -80,7 +80,7 @@ describe("Abilities - Hustle", () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it("does not affect OHKO moves", async () => {
|
it("does not affect OHKO moves", async () => {
|
||||||
vi.spyOn(overrides, "STARTING_LEVEL_OVERRIDE", "get").mockReturnValue(100);
|
game.override.startingLevel(100);
|
||||||
game.override.enemyLevel(30);
|
game.override.enemyLevel(30);
|
||||||
|
|
||||||
await game.startBattle([Species.PIKACHU]);
|
await game.startBattle([Species.PIKACHU]);
|
||||||
|
|
|
@ -26,7 +26,7 @@ describe("Items - Leftovers", () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
game = new GameManager(phaserGame);
|
game = new GameManager(phaserGame);
|
||||||
game.override.battleType("single");
|
game.override.battleType("single");
|
||||||
vi.spyOn(overrides, "STARTING_LEVEL_OVERRIDE", "get").mockReturnValue(2000);
|
game.override.startingLevel(2000);
|
||||||
game.override.ability(Abilities.UNNERVE);
|
game.override.ability(Abilities.UNNERVE);
|
||||||
game.override.moveset([Moves.SPLASH]);
|
game.override.moveset([Moves.SPLASH]);
|
||||||
game.override.enemySpecies(Species.SHUCKLE);
|
game.override.enemySpecies(Species.SHUCKLE);
|
||||||
|
|
|
@ -1,15 +1,14 @@
|
||||||
import {afterEach, beforeAll, beforeEach, describe, expect, it, vi} from "vitest";
|
|
||||||
import Phaser from "phaser";
|
|
||||||
import GameManager from "#app/test/utils/gameManager";
|
|
||||||
import overrides from "#app/overrides";
|
|
||||||
import { CommandPhase, TurnInitPhase } from "#app/phases";
|
|
||||||
import { getMovePosition } from "#app/test/utils/gameManagerUtils";
|
|
||||||
import { BattleStat } from "#app/data/battle-stat";
|
import { BattleStat } from "#app/data/battle-stat";
|
||||||
|
import { StockpilingTag } from "#app/data/battler-tags.js";
|
||||||
|
import { MoveResult, TurnMove } from "#app/field/pokemon.js";
|
||||||
|
import { CommandPhase, TurnInitPhase } from "#app/phases";
|
||||||
|
import GameManager from "#app/test/utils/gameManager";
|
||||||
|
import { getMovePosition } from "#app/test/utils/gameManagerUtils";
|
||||||
import { Abilities } from "#enums/abilities";
|
import { Abilities } from "#enums/abilities";
|
||||||
import { Moves } from "#enums/moves";
|
import { Moves } from "#enums/moves";
|
||||||
import { Species } from "#enums/species";
|
import { Species } from "#enums/species";
|
||||||
import { StockpilingTag } from "#app/data/battler-tags.js";
|
import Phaser from "phaser";
|
||||||
import { MoveResult, TurnMove } from "#app/field/pokemon.js";
|
import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest";
|
||||||
import { SPLASH_ONLY } from "../utils/testUtils";
|
import { SPLASH_ONLY } from "../utils/testUtils";
|
||||||
|
|
||||||
describe("Moves - Stockpile", () => {
|
describe("Moves - Stockpile", () => {
|
||||||
|
@ -34,7 +33,7 @@ describe("Moves - Stockpile", () => {
|
||||||
game.override.enemyMoveset(SPLASH_ONLY);
|
game.override.enemyMoveset(SPLASH_ONLY);
|
||||||
game.override.enemyAbility(Abilities.NONE);
|
game.override.enemyAbility(Abilities.NONE);
|
||||||
|
|
||||||
vi.spyOn(overrides, "STARTING_LEVEL_OVERRIDE", "get").mockReturnValue(2000);
|
game.override.startingLevel(2000);
|
||||||
game.override.moveset([Moves.STOCKPILE, Moves.SPLASH]);
|
game.override.moveset([Moves.STOCKPILE, Moves.SPLASH]);
|
||||||
game.override.ability(Abilities.NONE);
|
game.override.ability(Abilities.NONE);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue