mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-30 13:33:01 +02:00
Fixed tests
This commit is contained in:
parent
3876ba93be
commit
18567a2ad6
@ -2672,7 +2672,6 @@ export class RemoveHeldItemAttr extends MoveEffectAttr {
|
|||||||
*/
|
*/
|
||||||
export class EatBerryAttr extends MoveEffectAttr {
|
export class EatBerryAttr extends MoveEffectAttr {
|
||||||
protected chosenBerry: BerryModifier;
|
protected chosenBerry: BerryModifier;
|
||||||
protected chosenBerry: BerryModifier | undefined;
|
|
||||||
constructor(selfTarget: boolean) {
|
constructor(selfTarget: boolean) {
|
||||||
super(selfTarget);
|
super(selfTarget);
|
||||||
}
|
}
|
||||||
@ -3197,7 +3196,7 @@ export class StatStageChangeAttr extends MoveEffectAttr {
|
|||||||
private get showMessage () {
|
private get showMessage () {
|
||||||
return this.options?.showMessage ?? true;
|
return this.options?.showMessage ?? true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Attempts to change stats of the user or target (depending on value of selfTarget) if conditions are met
|
* Attempts to change stats of the user or target (depending on value of selfTarget) if conditions are met
|
||||||
* @param user {@linkcode Pokemon} the user of the move
|
* @param user {@linkcode Pokemon} the user of the move
|
||||||
|
Loading…
Reference in New Issue
Block a user