mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-11-27 01:06:09 +00:00
add OverridesHelper.passiveAbility
This commit is contained in:
parent
dfdba05439
commit
b72a1347b2
@ -88,6 +88,17 @@ export class OverridesHelper {
|
|||||||
return this;
|
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
|
* Override the player (pokemon) {@linkcode Moves | moves}set
|
||||||
* @param moveset the {@linkcode Moves | moves}set to set
|
* @param moveset the {@linkcode Moves | moves}set to set
|
||||||
|
Loading…
Reference in New Issue
Block a user