mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-04 15:17:23 +00:00
177 lines
6.6 KiB
TypeScript
177 lines
6.6 KiB
TypeScript
import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
|
|
import Phase from "phaser";
|
|
import GameManager from "#app/test/utils/gameManager";
|
|
import Overrides from "#app/overrides";
|
|
import { Species } from "#enums/species";
|
|
import { Stat } from "#app/data/pokemon-stat";
|
|
import { SpeciesStatBoosterModifier } from "#app/modifier/modifier";
|
|
import { modifierTypes } from "#app/modifier/modifier-type";
|
|
import * as Utils from "#app/utils";
|
|
import i18next from "#app/plugins/i18n";
|
|
|
|
describe("Items - Metal Powder", () => {
|
|
let phaserGame: Phaser.Game;
|
|
let game: GameManager;
|
|
|
|
beforeAll(() => {
|
|
phaserGame = new Phase.Game({
|
|
type: Phaser.HEADLESS,
|
|
});
|
|
});
|
|
|
|
afterEach(() => {
|
|
game.phaseInterceptor.restoreOg();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
game = new GameManager(phaserGame);
|
|
|
|
game.override.battleType("single");
|
|
});
|
|
|
|
it("METAL_POWDER activates in battle correctly", async() => {
|
|
vi.spyOn(Overrides, "STARTING_HELD_ITEMS_OVERRIDE", "get").mockReturnValue([{ name: "SPECIES_STAT_BOOSTER", type: "METAL_POWDER" }]);
|
|
const consoleSpy = vi.spyOn(console, "log");
|
|
await game.startBattle([
|
|
Species.DITTO
|
|
]);
|
|
|
|
const partyMember = game.scene.getParty()[0];
|
|
|
|
// Checking consoe log to make sure Metal Powder is applied when getBattleStat (with the appropriate stat) is called
|
|
partyMember.getBattleStat(Stat.DEF);
|
|
expect(consoleSpy).toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.METAL_POWDER.name"), "");
|
|
|
|
// Printing dummy console messages along the way so subsequent checks don't pass because of the first
|
|
console.log("");
|
|
|
|
partyMember.getBattleStat(Stat.SPDEF);
|
|
expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.METAL_POWDER.name"), "");
|
|
|
|
console.log("");
|
|
|
|
partyMember.getBattleStat(Stat.ATK);
|
|
expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.METAL_POWDER.name"), "");
|
|
|
|
console.log("");
|
|
|
|
partyMember.getBattleStat(Stat.SPATK);
|
|
expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.METAL_POWDER.name"), "");
|
|
|
|
console.log("");
|
|
|
|
partyMember.getBattleStat(Stat.SPD);
|
|
expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.METAL_POWDER.name"), "");
|
|
});
|
|
|
|
it("METAL_POWDER held by DITTO", async() => {
|
|
await game.startBattle([
|
|
Species.DITTO
|
|
]);
|
|
|
|
const partyMember = game.scene.getParty()[0];
|
|
|
|
const defStat = partyMember.getStat(Stat.DEF);
|
|
|
|
// Making sure modifier is not applied without holding item
|
|
const defValue = new Utils.NumberHolder(defStat);
|
|
partyMember.scene.applyModifiers(SpeciesStatBoosterModifier, true, partyMember, Stat.DEF, defValue);
|
|
|
|
expect(defValue.value / defStat).toBe(1);
|
|
|
|
// Giving Eviolite to party member and testing if it applies
|
|
partyMember.scene.addModifier(modifierTypes.SPECIES_STAT_BOOSTER().generateType(null, ["METAL_POWDER"]).newModifier(partyMember), true);
|
|
partyMember.scene.applyModifiers(SpeciesStatBoosterModifier, true, partyMember, Stat.DEF, defValue);
|
|
|
|
expect(defValue.value / defStat).toBe(2);
|
|
}, 20000);
|
|
|
|
it("METAL_POWDER held by fused DITTO (base)", async() => {
|
|
await game.startBattle([
|
|
Species.DITTO,
|
|
Species.MAROWAK
|
|
]);
|
|
|
|
const partyMember = game.scene.getParty()[0];
|
|
const ally = game.scene.getParty()[1];
|
|
|
|
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
|
partyMember.fusionSpecies = ally.species;
|
|
partyMember.fusionFormIndex = ally.formIndex;
|
|
partyMember.fusionAbilityIndex = ally.abilityIndex;
|
|
partyMember.fusionShiny = ally.shiny;
|
|
partyMember.fusionVariant = ally.variant;
|
|
partyMember.fusionGender = ally.gender;
|
|
partyMember.fusionLuck = ally.luck;
|
|
|
|
const defStat = partyMember.getStat(Stat.DEF);
|
|
|
|
// Making sure modifier is not applied without holding item
|
|
const defValue = new Utils.NumberHolder(defStat);
|
|
partyMember.scene.applyModifiers(SpeciesStatBoosterModifier, true, partyMember, Stat.DEF, defValue);
|
|
|
|
expect(defValue.value / defStat).toBe(1);
|
|
|
|
// Giving Eviolite to party member and testing if it applies
|
|
partyMember.scene.addModifier(modifierTypes.SPECIES_STAT_BOOSTER().generateType(null, ["METAL_POWDER"]).newModifier(partyMember), true);
|
|
partyMember.scene.applyModifiers(SpeciesStatBoosterModifier, true, partyMember, Stat.DEF, defValue);
|
|
|
|
expect(defValue.value / defStat).toBe(2);
|
|
}, 20000);
|
|
|
|
it("METAL_POWDER held by fused DITTO (part)", async() => {
|
|
await game.startBattle([
|
|
Species.MAROWAK,
|
|
Species.DITTO
|
|
]);
|
|
|
|
const partyMember = game.scene.getParty()[0];
|
|
const ally = game.scene.getParty()[1];
|
|
|
|
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
|
partyMember.fusionSpecies = ally.species;
|
|
partyMember.fusionFormIndex = ally.formIndex;
|
|
partyMember.fusionAbilityIndex = ally.abilityIndex;
|
|
partyMember.fusionShiny = ally.shiny;
|
|
partyMember.fusionVariant = ally.variant;
|
|
partyMember.fusionGender = ally.gender;
|
|
partyMember.fusionLuck = ally.luck;
|
|
|
|
const defStat = partyMember.getStat(Stat.DEF);
|
|
|
|
// Making sure modifier is not applied without holding item
|
|
const defValue = new Utils.NumberHolder(defStat);
|
|
partyMember.scene.applyModifiers(SpeciesStatBoosterModifier, true, partyMember, Stat.DEF, defValue);
|
|
|
|
expect(defValue.value / defStat).toBe(1);
|
|
|
|
// Giving Eviolite to party member and testing if it applies
|
|
partyMember.scene.addModifier(modifierTypes.SPECIES_STAT_BOOSTER().generateType(null, ["METAL_POWDER"]).newModifier(partyMember), true);
|
|
partyMember.scene.applyModifiers(SpeciesStatBoosterModifier, true, partyMember, Stat.DEF, defValue);
|
|
|
|
expect(defValue.value / defStat).toBe(2);
|
|
}, 20000);
|
|
|
|
it("METAL_POWDER not held by DITTO", async() => {
|
|
await game.startBattle([
|
|
Species.MAROWAK
|
|
]);
|
|
|
|
const partyMember = game.scene.getParty()[0];
|
|
|
|
const defStat = partyMember.getStat(Stat.DEF);
|
|
|
|
// Making sure modifier is not applied without holding item
|
|
const defValue = new Utils.NumberHolder(defStat);
|
|
partyMember.scene.applyModifiers(SpeciesStatBoosterModifier, true, partyMember, Stat.DEF, defValue);
|
|
|
|
expect(defValue.value / defStat).toBe(1);
|
|
|
|
// Giving Eviolite to party member and testing if it applies
|
|
partyMember.scene.addModifier(modifierTypes.SPECIES_STAT_BOOSTER().generateType(null, ["METAL_POWDER"]).newModifier(partyMember), true);
|
|
partyMember.scene.applyModifiers(SpeciesStatBoosterModifier, true, partyMember, Stat.DEF, defValue);
|
|
|
|
expect(defValue.value / defStat).toBe(1);
|
|
}, 20000);
|
|
});
|