From 78d394d8642a28fcfa8c4a93ae744bfdaee3f53e Mon Sep 17 00:00:00 2001 From: PrabbyDD Date: Tue, 10 Sep 2024 20:14:49 -0700 Subject: [PATCH] cleaned up message for roost --- src/data/battler-tags.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index ee67d3ee985..61a1b3e2291 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -1639,7 +1639,7 @@ export class BurnedUpTag extends BattlerTag { } /** - * Battler tag for effects that ground the source, allowing Ground-type moves to hit them. Encompasses two tag types: + * Battler tag for effects that ground the source, allowing Ground-type moves to hit them. * @item `IGNORE_FLYING`: Persistent grounding effects (i.e. from Smack Down and Thousand Waves) */ export class GroundedTag extends BattlerTag { @@ -1649,11 +1649,8 @@ export class GroundedTag extends BattlerTag { } /** - * @item `ROOSTED`: Roost removes flying from the friendly pokemon until end of turn. If this is the only thing keeping it ungrounded, it becomes - * grounded until end of turn. - * - * If a pokemon was pure flying, it becomes normal type until end of turn. (even if it was affected by forests curse/trick or treat). - * If a pokemon used burn up (losing its fire type), then uses roost, it becomes TYPELESS (stored as UNKNOWN) until end of turn. + * @item `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 {