mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-16 06:45:24 +01:00
* Stage release v1.10.0
* [GitHub] Workflows will now run on `release` branch (#6329)
* [Beta] [Balance] Add Wild Evo Delay to Gallade / Froslass (#6324)
* Update pokemon-evolutions.ts
---------
Co-authored-by: damocleas <damocleas25@gmail.com>
Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
* [Beta] [Balance] Fix Wrong Teras in Trainer Config (#6326)
* Update trainer-config.ts
---------
Co-authored-by: damocleas <damocleas25@gmail.com>
* Revert #6307 "Remove duplicate animation json for ... variants" (#6332)
Revert "[Refactor][Sprite] Remove duplicate animation json for shinies, sprite-based variants (#6307)"
This reverts commit 7bdb62ed1d.
* [Beta] Fresh Start no longer overrides IV unlocks (#6333)
Unpack ivs when copying dexData
* [UI/UX] Always show starter's natures and ivs in evolution's dex entry (#6335)
Natures and ivs use starter's dexEntry
* [Bug] Sheer Force no longer boosts Fickle Beam; Focus Energy gives +2 crit instead of +1 (#6331)
[Bug] Sheer Force no longer boosts Fickle Beam; Focus Energy correctly gives +2 crit stages instead of +1
* Restricted party options for fainted mons in hardcore (#6336)
* [Challenge] No hardcore breeder (#6334)
Disallow expert breeder encounter in space
Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com>
* [Bug] [Beta] Fix trick room message (#6327)
Fix trick room's arena tag message
* [Beta][Bug][UI/UX] Fix broken candy upgrades (#6322)
* Candy upgrades change permanent starter data again
* Updating cost icon and passive bg in starter select after buying pokédex upgrades
* [Beta] [Balance] Even More 1.10 Balance Changes (Egg Moves + Passive Changes) (#6339)
1.10 Egg Moves and Passives pt 3
* [Bug][Sprite] Remove fake Deerling variants (#6330)
* Remove fake Deerling variants
* Remove unused json
* [Bug] Ensure MEs disabled in a challenge mode only do so while challenge is active (#6337)
* Ensure MEs disabled in a challenge mode only do so while challenge is active
* Optimize checking disallowed challenges
* [Misc] Moved `scrapeTrainerNames` to a script; removed `selfStatLowerMoves` (#6258)
* Removed scrape trainer names
* Removed `selfStatLowerMoves`
* Update move.ts
Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
* Started work on the script again
* Made script actually work
* Made finishing touches on script
* Fixed main repo code to not expect snake cased locale strings
* Update trainer.ts
Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com>
* Remove biome ignore range
* Fix typedoc.json
* rename `getRandomLocaleKey` to `getRandomLocaleEntry`
---------
Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com>
* Update locales
* [Balance] [ME] Trash to Treasure Option 1 Adjustment (#6341)
* Update trash-to-treasure-encounter.ts
* Update trash-to-treasure-encounter.test.ts tests
* [Misc] [UX] Add Daily Run Achievement, Re-Arrange Achievements, Replace some Icon Sprites (#6292)
* wip achievement changes
* Adjust egg image sizes, re-export item atlas
* painful eggs
* Add egg to legacy UI, re-export item atlas
* run biome
* Update achievement.test.ts
* Fix achievement test file
* Fix tera stellar missing icon path
* Fix achievement test file
* egg s
* Optimize new images, re-export item atlas
* update pngs and locale
* add daily achv and other sorting
* Optimize ribbons, re-export item atlas
* Bump to version 1.11.0
* more changes, waiting on pngs
* Update package.json
* ribbon fixes
* images!
* Optimize images, re-export item atlas
* final fix
---------
Co-authored-by: Madmadness65 <blaze.the.fireman@gmail.com>
Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com>
* [Bug] [UI/UX] [Beta] Fix visibility of egg moves in ssui (#6343)
Fix visibility of egg moves when backing out of fresh start and back into ssui
---------
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
Co-authored-by: Blitzy <118096277+Blitz425@users.noreply.github.com>
Co-authored-by: damocleas <damocleas25@gmail.com>
Co-authored-by: Wlowscha <54003515+Wlowscha@users.noreply.github.com>
Co-authored-by: Bertie690 <136088738+Bertie690@users.noreply.github.com>
Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com>
Co-authored-by: AJ Fontaine <36677462+Fontbane@users.noreply.github.com>
Co-authored-by: Madmadness65 <blaze.the.fireman@gmail.com>
273 lines
12 KiB
TypeScript
273 lines
12 KiB
TypeScript
import type { BattleScene } from "#app/battle-scene";
|
|
import * as BattleAnims from "#data/battle-anims";
|
|
import { modifierTypes } from "#data/data-lists";
|
|
import { BiomeId } from "#enums/biome-id";
|
|
import { ModifierTier } from "#enums/modifier-tier";
|
|
import { MoveId } from "#enums/move-id";
|
|
import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode";
|
|
import { MysteryEncounterTier } from "#enums/mystery-encounter-tier";
|
|
import { MysteryEncounterType } from "#enums/mystery-encounter-type";
|
|
import { SpeciesId } from "#enums/species-id";
|
|
import { UiMode } from "#enums/ui-mode";
|
|
import { HealShopCostModifier, HitHealModifier, TurnHealModifier } from "#modifiers/modifier";
|
|
import type { PokemonHeldItemModifierType } from "#modifiers/modifier-type";
|
|
import { PokemonMove } from "#moves/pokemon-move";
|
|
import * as EncounterPhaseUtils from "#mystery-encounters/encounter-phase-utils";
|
|
import {
|
|
type EnemyPartyConfig,
|
|
type EnemyPokemonConfig,
|
|
generateModifierType,
|
|
} from "#mystery-encounters/encounter-phase-utils";
|
|
import * as MysteryEncounters from "#mystery-encounters/mystery-encounters";
|
|
import { TrashToTreasureEncounter } from "#mystery-encounters/trash-to-treasure-encounter";
|
|
import { CommandPhase } from "#phases/command-phase";
|
|
import { MovePhase } from "#phases/move-phase";
|
|
import { SelectModifierPhase } from "#phases/select-modifier-phase";
|
|
import {
|
|
runMysteryEncounterToEnd,
|
|
skipBattleRunMysteryEncounterRewardsPhase,
|
|
} from "#test/mystery-encounter/encounter-test-utils";
|
|
import { GameManager } from "#test/test-utils/game-manager";
|
|
import { initSceneWithoutEncounterPhase } from "#test/test-utils/game-manager-utils";
|
|
import { ModifierSelectUiHandler } from "#ui/modifier-select-ui-handler";
|
|
import * as Utils from "#utils/common";
|
|
import { getPokemonSpecies } from "#utils/pokemon-utils";
|
|
import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
|
|
|
|
const namespace = "mysteryEncounters/trashToTreasure";
|
|
const defaultParty = [SpeciesId.LAPRAS, SpeciesId.GENGAR, SpeciesId.ABRA];
|
|
const defaultBiome = BiomeId.CAVE;
|
|
const defaultWave = 45;
|
|
|
|
describe("Trash to Treasure - Mystery Encounter", () => {
|
|
let phaserGame: Phaser.Game;
|
|
let game: GameManager;
|
|
let scene: BattleScene;
|
|
|
|
beforeAll(() => {
|
|
phaserGame = new Phaser.Game({ type: Phaser.HEADLESS });
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
game = new GameManager(phaserGame);
|
|
scene = game.scene;
|
|
game.override
|
|
.mysteryEncounterChance(100)
|
|
.startingWave(defaultWave)
|
|
.startingBiome(defaultBiome)
|
|
.disableTrainerWaves();
|
|
|
|
vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue(
|
|
new Map<BiomeId, MysteryEncounterType[]>([[BiomeId.CAVE, [MysteryEncounterType.TRASH_TO_TREASURE]]]),
|
|
);
|
|
});
|
|
|
|
afterEach(() => {
|
|
game.phaseInterceptor.restoreOg();
|
|
});
|
|
|
|
it("should have the correct properties", async () => {
|
|
await game.runToMysteryEncounter(MysteryEncounterType.TRASH_TO_TREASURE, defaultParty);
|
|
|
|
expect(TrashToTreasureEncounter.encounterType).toBe(MysteryEncounterType.TRASH_TO_TREASURE);
|
|
expect(TrashToTreasureEncounter.encounterTier).toBe(MysteryEncounterTier.ULTRA);
|
|
expect(TrashToTreasureEncounter.dialogue).toBeDefined();
|
|
expect(TrashToTreasureEncounter.dialogue.intro).toStrictEqual([{ text: `${namespace}:intro` }]);
|
|
expect(TrashToTreasureEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}:title`);
|
|
expect(TrashToTreasureEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}:description`);
|
|
expect(TrashToTreasureEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}:query`);
|
|
expect(TrashToTreasureEncounter.options.length).toBe(2);
|
|
});
|
|
|
|
it("should initialize fully", async () => {
|
|
vi.spyOn(Utils, "randSeedInt").mockImplementation((range, min = 0) => min + range - 1);
|
|
initSceneWithoutEncounterPhase(scene, defaultParty);
|
|
scene.currentBattle.mysteryEncounter = TrashToTreasureEncounter;
|
|
const moveInitSpy = vi.spyOn(BattleAnims, "initMoveAnim");
|
|
const moveLoadSpy = vi.spyOn(BattleAnims, "loadMoveAnimAssets");
|
|
|
|
const { onInit } = TrashToTreasureEncounter;
|
|
|
|
expect(TrashToTreasureEncounter.onInit).toBeDefined();
|
|
|
|
TrashToTreasureEncounter.populateDialogueTokensFromRequirements();
|
|
const onInitResult = onInit!();
|
|
|
|
const bossSpecies = getPokemonSpecies(SpeciesId.GARBODOR);
|
|
const pokemonConfig: EnemyPokemonConfig = {
|
|
species: bossSpecies,
|
|
isBoss: true,
|
|
shiny: false, // Shiny lock because of custom intro sprite
|
|
formIndex: 1, // Gmax
|
|
bossSegmentModifier: 1, // +1 Segment from normal
|
|
moveSet: [MoveId.GUNK_SHOT, MoveId.STOMPING_TANTRUM, MoveId.HAMMER_ARM, MoveId.PAYBACK],
|
|
modifierConfigs: [
|
|
{
|
|
modifier: generateModifierType(modifierTypes.BERRY) as PokemonHeldItemModifierType,
|
|
},
|
|
{
|
|
modifier: generateModifierType(modifierTypes.BERRY) as PokemonHeldItemModifierType,
|
|
},
|
|
{
|
|
modifier: generateModifierType(modifierTypes.BERRY) as PokemonHeldItemModifierType,
|
|
},
|
|
{
|
|
modifier: generateModifierType(modifierTypes.BERRY) as PokemonHeldItemModifierType,
|
|
},
|
|
{
|
|
modifier: generateModifierType(modifierTypes.BASE_STAT_BOOSTER) as PokemonHeldItemModifierType,
|
|
},
|
|
{
|
|
modifier: generateModifierType(modifierTypes.BASE_STAT_BOOSTER) as PokemonHeldItemModifierType,
|
|
},
|
|
{
|
|
modifier: generateModifierType(modifierTypes.TOXIC_ORB) as PokemonHeldItemModifierType,
|
|
stackCount: Utils.randSeedInt(2, 0),
|
|
},
|
|
{
|
|
modifier: generateModifierType(modifierTypes.SOOTHE_BELL) as PokemonHeldItemModifierType,
|
|
stackCount: Utils.randSeedInt(2, 1),
|
|
},
|
|
{
|
|
modifier: generateModifierType(modifierTypes.LUCKY_EGG) as PokemonHeldItemModifierType,
|
|
stackCount: Utils.randSeedInt(3, 1),
|
|
},
|
|
{
|
|
modifier: generateModifierType(modifierTypes.GOLDEN_EGG) as PokemonHeldItemModifierType,
|
|
stackCount: Utils.randSeedInt(2, 0),
|
|
},
|
|
],
|
|
};
|
|
const config: EnemyPartyConfig = {
|
|
levelAdditiveModifier: 0.5,
|
|
pokemonConfigs: [pokemonConfig],
|
|
disableSwitch: true,
|
|
};
|
|
const enemyPartyConfigs = [config];
|
|
|
|
expect(JSON.stringify(TrashToTreasureEncounter.enemyPartyConfigs, undefined, 2)).toEqual(
|
|
JSON.stringify(enemyPartyConfigs, undefined, 2),
|
|
);
|
|
await vi.waitFor(() => expect(moveInitSpy).toHaveBeenCalled());
|
|
await vi.waitFor(() => expect(moveLoadSpy).toHaveBeenCalled());
|
|
expect(onInitResult).toBe(true);
|
|
});
|
|
|
|
describe("Option 1 - Dig for Valuables", () => {
|
|
it("should have the correct properties", () => {
|
|
const option1 = TrashToTreasureEncounter.options[0];
|
|
expect(option1.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT);
|
|
expect(option1.dialogue).toBeDefined();
|
|
expect(option1.dialogue).toStrictEqual({
|
|
buttonLabel: `${namespace}:option.1.label`,
|
|
buttonTooltip: `${namespace}:option.1.tooltip`,
|
|
selected: [
|
|
{
|
|
text: `${namespace}:option.1.selected`,
|
|
},
|
|
],
|
|
});
|
|
});
|
|
|
|
it("should give 1 Leftovers, 1 Shell Bell, and Black Sludge", async () => {
|
|
await game.runToMysteryEncounter(MysteryEncounterType.TRASH_TO_TREASURE, defaultParty);
|
|
await runMysteryEncounterToEnd(game, 1);
|
|
await game.phaseInterceptor.to("SelectModifierPhase", false);
|
|
expect(scene.phaseManager.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name);
|
|
|
|
const leftovers = scene.findModifier(m => m instanceof TurnHealModifier) as TurnHealModifier;
|
|
expect(leftovers).toBeDefined();
|
|
expect(leftovers?.stackCount).toBe(1);
|
|
|
|
const shellBell = scene.findModifier(m => m instanceof HitHealModifier) as HitHealModifier;
|
|
expect(shellBell).toBeDefined();
|
|
expect(shellBell?.stackCount).toBe(1);
|
|
|
|
const blackSludge = scene.findModifier(m => m instanceof HealShopCostModifier) as HealShopCostModifier;
|
|
expect(blackSludge).toBeDefined();
|
|
expect(blackSludge?.stackCount).toBe(1);
|
|
});
|
|
|
|
it("should leave encounter without battle", async () => {
|
|
const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle");
|
|
|
|
await game.runToMysteryEncounter(MysteryEncounterType.TRASH_TO_TREASURE, defaultParty);
|
|
await runMysteryEncounterToEnd(game, 1);
|
|
|
|
expect(leaveEncounterWithoutBattleSpy).toBeCalled();
|
|
});
|
|
});
|
|
|
|
describe("Option 2 - Battle Garbodor", () => {
|
|
it("should have the correct properties", () => {
|
|
const option1 = TrashToTreasureEncounter.options[1];
|
|
expect(option1.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT);
|
|
expect(option1.dialogue).toBeDefined();
|
|
expect(option1.dialogue).toStrictEqual({
|
|
buttonLabel: `${namespace}:option.2.label`,
|
|
buttonTooltip: `${namespace}:option.2.tooltip`,
|
|
selected: [
|
|
{
|
|
text: `${namespace}:option.2.selected`,
|
|
},
|
|
],
|
|
});
|
|
});
|
|
|
|
it("should start battle against Garbodor", async () => {
|
|
const phaseSpy = vi.spyOn(scene.phaseManager, "pushPhase");
|
|
|
|
await game.runToMysteryEncounter(MysteryEncounterType.TRASH_TO_TREASURE, defaultParty);
|
|
await runMysteryEncounterToEnd(game, 2, undefined, true);
|
|
|
|
const enemyField = scene.getEnemyField();
|
|
expect(scene.phaseManager.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name);
|
|
expect(enemyField.length).toBe(1);
|
|
expect(enemyField[0].species.speciesId).toBe(SpeciesId.GARBODOR);
|
|
expect(enemyField[0].moveset).toEqual([
|
|
new PokemonMove(MoveId.GUNK_SHOT),
|
|
new PokemonMove(MoveId.STOMPING_TANTRUM),
|
|
new PokemonMove(MoveId.HAMMER_ARM),
|
|
new PokemonMove(MoveId.PAYBACK),
|
|
]);
|
|
|
|
// Should have used moves pre-battle
|
|
const movePhases = phaseSpy.mock.calls.filter(p => p[0] instanceof MovePhase).map(p => p[0]);
|
|
expect(movePhases.length).toBe(2);
|
|
expect(movePhases.filter(p => (p as MovePhase).move.moveId === MoveId.TOXIC).length).toBe(1);
|
|
expect(movePhases.filter(p => (p as MovePhase).move.moveId === MoveId.STOCKPILE).length).toBe(1);
|
|
});
|
|
|
|
it("should have 2 Rogue, 1 Ultra, 1 Great in rewards", async () => {
|
|
await game.runToMysteryEncounter(MysteryEncounterType.TRASH_TO_TREASURE, defaultParty);
|
|
await runMysteryEncounterToEnd(game, 2, undefined, true);
|
|
await skipBattleRunMysteryEncounterRewardsPhase(game);
|
|
await game.phaseInterceptor.to("SelectModifierPhase", false);
|
|
expect(scene.phaseManager.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name);
|
|
await game.phaseInterceptor.to("SelectModifierPhase");
|
|
|
|
expect(scene.ui.getMode()).to.equal(UiMode.MODIFIER_SELECT);
|
|
const modifierSelectHandler = scene.ui.handlers.find(
|
|
h => h instanceof ModifierSelectUiHandler,
|
|
) as ModifierSelectUiHandler;
|
|
expect(modifierSelectHandler.options.length).toEqual(4);
|
|
expect(
|
|
modifierSelectHandler.options[0].modifierTypeOption.type.tier -
|
|
modifierSelectHandler.options[0].modifierTypeOption.upgradeCount,
|
|
).toEqual(ModifierTier.ROGUE);
|
|
expect(
|
|
modifierSelectHandler.options[1].modifierTypeOption.type.tier -
|
|
modifierSelectHandler.options[1].modifierTypeOption.upgradeCount,
|
|
).toEqual(ModifierTier.ROGUE);
|
|
expect(
|
|
modifierSelectHandler.options[2].modifierTypeOption.type.tier -
|
|
modifierSelectHandler.options[2].modifierTypeOption.upgradeCount,
|
|
).toEqual(ModifierTier.ULTRA);
|
|
expect(
|
|
modifierSelectHandler.options[3].modifierTypeOption.type.tier -
|
|
modifierSelectHandler.options[3].modifierTypeOption.upgradeCount,
|
|
).toEqual(ModifierTier.GREAT);
|
|
});
|
|
});
|
|
});
|