mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-09-23 15:03:24 +02:00
Remove @description
tags
This commit is contained in:
parent
42b2ea7fc0
commit
4ba9b465cf
@ -2474,10 +2474,7 @@ export class RemovedTypeTag extends SerializableBattlerTag {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/** Battler tag for effects that ground the source, allowing Ground-type moves to hit them. */
|
||||||
* Battler tag for effects that ground the source, allowing Ground-type moves to hit them.
|
|
||||||
* @description `IGNORE_FLYING`: Persistent grounding effects (i.e. from Smack Down and Thousand Waves)
|
|
||||||
*/
|
|
||||||
export class GroundedTag extends SerializableBattlerTag {
|
export class GroundedTag extends SerializableBattlerTag {
|
||||||
public override readonly tagType = BattlerTagType.IGNORE_FLYING;
|
public override readonly tagType = BattlerTagType.IGNORE_FLYING;
|
||||||
constructor(tagType: BattlerTagType.IGNORE_FLYING, lapseType: BattlerTagLapseType, sourceMove: MoveId) {
|
constructor(tagType: BattlerTagType.IGNORE_FLYING, lapseType: BattlerTagLapseType, sourceMove: MoveId) {
|
||||||
@ -2485,11 +2482,7 @@ export class GroundedTag extends SerializableBattlerTag {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/** Removes flying type from a pokemon for a single turn */
|
||||||
* @description `ROOSTED`: Tag for temporary grounding if only source of ungrounding is flying and pokemon uses Roost.
|
|
||||||
* Roost removes flying type from a pokemon for a single turn.
|
|
||||||
*/
|
|
||||||
|
|
||||||
export class RoostedTag extends BattlerTag {
|
export class RoostedTag extends BattlerTag {
|
||||||
private isBaseFlying: boolean;
|
private isBaseFlying: boolean;
|
||||||
private isBasePureFlying: boolean;
|
private isBasePureFlying: boolean;
|
||||||
|
Loading…
Reference in New Issue
Block a user