add OverridesHelper.startingHeldItems
This commit is contained in:
parent
a7b26355b0
commit
05a3142c13
|
@ -5,6 +5,7 @@ import { Moves } from "#app/enums/moves.js";
|
|||
import { Species } from "#app/enums/species.js";
|
||||
import * as GameMode from "#app/game-mode";
|
||||
import { GameModes, getGameMode } from "#app/game-mode";
|
||||
import { ModifierOverride } from "#app/modifier/modifier-type.js";
|
||||
import Overrides from "#app/overrides";
|
||||
import GameManager from "#test/utils/gameManager";
|
||||
import { vi } from "vitest";
|
||||
|
@ -52,6 +53,17 @@ export class OverridesHelper {
|
|||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Override the player (pokemon) starting held items
|
||||
* @param items the items to hold
|
||||
* @returns this
|
||||
*/
|
||||
startingHeldItems(items: ModifierOverride[]) {
|
||||
vi.spyOn(Overrides, "STARTING_HELD_ITEMS_OVERRIDE", "get").mockReturnValue(items);
|
||||
this.log("Player Pokemon starting held items set to:", items);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Override the player (pokemon) {@linkcode Species | species}
|
||||
* @param species the (pokemon) {@linkcode Species | species} to set
|
||||
|
|
Loading…
Reference in New Issue