add OverridesHelper.passiveAbility

This commit is contained in:
Felix Staud 2024-07-25 16:30:28 -07:00
parent dfdba05439
commit b72a1347b2
1 changed files with 11 additions and 0 deletions

View File

@ -88,6 +88,17 @@ export class OverridesHelper {
return this;
}
/**
* Override the player (pokemon) **passive** {@linkcode Abilities | ability}
* @param passiveAbility the (pokemon) **passive** {@linkcode Abilities | ability} to set
* @returns this
*/
passiveAbility(passiveAbility: Abilities): this {
vi.spyOn(Overrides, "PASSIVE_ABILITY_OVERRIDE", "get").mockReturnValue(passiveAbility);
this.log(`Player Pokemon PASSIVE ability set to ${Abilities[passiveAbility]} (=${passiveAbility})!`);
return this;
}
/**
* Override the player (pokemon) {@linkcode Moves | moves}set
* @param moveset the {@linkcode Moves | moves}set to set