mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-11-26 16:56:11 +00:00
06331ccdf6
* Disable Luck in Daily Runs If the Game Mode is Daily Run, the player's Luck is set to 0, and the Luck value is hidden. * Give free map in daily Adds a Map to the player's pool of starting items for Daily Runs. * Disable Eviolite in Daily Runs Disables Eviolite spawning in Daily Run mode. * Write shop test and add new overrides Adds new overrides that allow you to force content to be locked or unlocked These overrides were also added to the OverridesHelper to make them available to tests Adds a new check function for content unlocks, which returns `true` if it is overrode to be unlocked, `false` if it is overrode to be locked, and the unlock data mapped to a Boolean otherwise All existing checks (other than the ones that involve actually unlocking things) for unlockables have been changed to use this Added a pair of new exporting booleans, specifically for my test, that check if Eviolite or Mini Black Hole are in the loot table * Prevent shinies from altering runs Places variant rolls inside of an ExecuteWithSeedOffset block, using the current floor's RNG seed as the seed and the Pokémon's ID as the offset. --------- Co-authored-by: Leo Kim <47556641+KimJeongSun@users.noreply.github.com> Co-authored-by: flx-sta <50131232+flx-sta@users.noreply.github.com> Co-authored-by: Amani H. <109637146+xsn34kzx@users.noreply.github.com> Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com>
175 lines
5.6 KiB
TypeScript
175 lines
5.6 KiB
TypeScript
import { GameModes } from "#app/game-mode";
|
|
import OptionSelectUiHandler from "#app/ui/settings/option-select-ui-handler";
|
|
import { Mode } from "#app/ui/ui";
|
|
import { Biome } from "#enums/biome";
|
|
import { Button } from "#enums/buttons";
|
|
import { Moves } from "#enums/moves";
|
|
import { Species } from "#enums/species";
|
|
import GameManager from "#test/utils/gameManager";
|
|
import { MockClock } from "#test/utils/mocks/mockClock";
|
|
import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest";
|
|
|
|
describe("Reload", () => {
|
|
let phaserGame: Phaser.Game;
|
|
let game: GameManager;
|
|
|
|
beforeAll(() => {
|
|
phaserGame = new Phaser.Game({
|
|
type: Phaser.HEADLESS,
|
|
});
|
|
});
|
|
|
|
afterEach(() => {
|
|
game.phaseInterceptor.restoreOg();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
game = new GameManager(phaserGame);
|
|
});
|
|
|
|
it("should not have RNG inconsistencies in a Classic run", async () => {
|
|
await game.classicMode.startBattle();
|
|
|
|
const preReloadRngState = Phaser.Math.RND.state();
|
|
|
|
await game.reload.reloadSession();
|
|
|
|
const postReloadRngState = Phaser.Math.RND.state();
|
|
|
|
expect(preReloadRngState).toBe(postReloadRngState);
|
|
}, 20000);
|
|
|
|
it("should not have RNG inconsistencies after a biome switch", async () => {
|
|
game.override
|
|
.startingWave(10)
|
|
.battleType("single")
|
|
.startingLevel(100) // Avoid levelling up
|
|
.enemyLevel(1000) // Avoid opponent dying before game.doKillOpponents()
|
|
.disableTrainerWaves()
|
|
.moveset([Moves.KOWTOW_CLEAVE])
|
|
.enemyMoveset(Moves.SPLASH);
|
|
await game.dailyMode.startBattle();
|
|
|
|
// Transition from Wave 10 to Wave 11 in order to trigger biome switch
|
|
game.move.select(Moves.KOWTOW_CLEAVE);
|
|
await game.phaseInterceptor.to("DamagePhase");
|
|
await game.doKillOpponents();
|
|
game.onNextPrompt("SelectBiomePhase", Mode.OPTION_SELECT, () => {
|
|
(game.scene.time as MockClock).overrideDelay = null;
|
|
const optionSelectUiHandler = game.scene.ui.getHandler() as OptionSelectUiHandler;
|
|
game.scene.time.delayedCall(1010, () => optionSelectUiHandler.processInput(Button.ACTION));
|
|
game.endPhase();
|
|
(game.scene.time as MockClock).overrideDelay = 1;
|
|
});
|
|
await game.toNextWave();
|
|
expect(game.phaseInterceptor.log).toContain("NewBiomeEncounterPhase");
|
|
|
|
const preReloadRngState = Phaser.Math.RND.state();
|
|
|
|
await game.reload.reloadSession();
|
|
|
|
const postReloadRngState = Phaser.Math.RND.state();
|
|
|
|
expect(preReloadRngState).toBe(postReloadRngState);
|
|
}, 20000);
|
|
|
|
it("should not have weather inconsistencies after a biome switch", async () => {
|
|
game.override
|
|
.startingWave(10)
|
|
.startingBiome(Biome.ICE_CAVE) // Will lead to Snowy Forest with randomly generated weather
|
|
.battleType("single")
|
|
.startingLevel(100) // Avoid levelling up
|
|
.enemyLevel(1000) // Avoid opponent dying before game.doKillOpponents()
|
|
.disableTrainerWaves()
|
|
.moveset([Moves.KOWTOW_CLEAVE])
|
|
.enemyMoveset(Moves.SPLASH);
|
|
await game.classicMode.startBattle(); // Apparently daily mode would override the biome
|
|
|
|
// Transition from Wave 10 to Wave 11 in order to trigger biome switch
|
|
game.move.select(Moves.KOWTOW_CLEAVE);
|
|
await game.phaseInterceptor.to("DamagePhase");
|
|
await game.doKillOpponents();
|
|
await game.toNextWave();
|
|
expect(game.phaseInterceptor.log).toContain("NewBiomeEncounterPhase");
|
|
|
|
const preReloadWeather = game.scene.arena.weather;
|
|
|
|
await game.reload.reloadSession();
|
|
|
|
const postReloadWeather = game.scene.arena.weather;
|
|
|
|
expect(postReloadWeather).toStrictEqual(preReloadWeather);
|
|
}, 20000);
|
|
|
|
it("should not have RNG inconsistencies at a Daily run wild Pokemon fight", async () => {
|
|
await game.dailyMode.startBattle();
|
|
|
|
const preReloadRngState = Phaser.Math.RND.state();
|
|
|
|
await game.reload.reloadSession();
|
|
|
|
const postReloadRngState = Phaser.Math.RND.state();
|
|
|
|
expect(preReloadRngState).toBe(postReloadRngState);
|
|
}, 20000);
|
|
|
|
it("should not have RNG inconsistencies at a Daily run double battle", async () => {
|
|
game.override
|
|
.battleType("double");
|
|
await game.dailyMode.startBattle();
|
|
|
|
const preReloadRngState = Phaser.Math.RND.state();
|
|
|
|
await game.reload.reloadSession();
|
|
|
|
const postReloadRngState = Phaser.Math.RND.state();
|
|
|
|
expect(preReloadRngState).toBe(postReloadRngState);
|
|
}, 20000);
|
|
|
|
it("should not have RNG inconsistencies at a Daily run Gym Leader fight", async () => {
|
|
game.override
|
|
.battleType("single")
|
|
.startingWave(40);
|
|
await game.dailyMode.startBattle();
|
|
|
|
const preReloadRngState = Phaser.Math.RND.state();
|
|
|
|
await game.reload.reloadSession();
|
|
|
|
const postReloadRngState = Phaser.Math.RND.state();
|
|
|
|
expect(preReloadRngState).toBe(postReloadRngState);
|
|
}, 20000);
|
|
|
|
it("should not have RNG inconsistencies at a Daily run regular trainer fight", async () => {
|
|
game.override
|
|
.battleType("single")
|
|
.startingWave(45);
|
|
await game.dailyMode.startBattle();
|
|
|
|
const preReloadRngState = Phaser.Math.RND.state();
|
|
|
|
await game.reload.reloadSession();
|
|
|
|
const postReloadRngState = Phaser.Math.RND.state();
|
|
|
|
expect(preReloadRngState).toBe(postReloadRngState);
|
|
}, 20000);
|
|
|
|
it("should not have RNG inconsistencies at a Daily run wave 50 Boss fight", async () => {
|
|
game.override
|
|
.battleType("single")
|
|
.startingWave(50);
|
|
await game.runToFinalBossEncounter([Species.BULBASAUR], GameModes.DAILY);
|
|
|
|
const preReloadRngState = Phaser.Math.RND.state();
|
|
|
|
await game.reload.reloadSession();
|
|
|
|
const postReloadRngState = Phaser.Math.RND.state();
|
|
|
|
expect(preReloadRngState).toBe(postReloadRngState);
|
|
}, 20000);
|
|
});
|