From 2c23ad1d2810f07c856cbd3bad3de5bfe0bcab04 Mon Sep 17 00:00:00 2001 From: LaukkaE Date: Wed, 3 Apr 2024 12:42:01 +0300 Subject: [PATCH] formatting changes --- src/data/move.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/move.ts b/src/data/move.ts index b64ca4c98f1..493f0e415f1 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -1800,9 +1800,9 @@ export class NeutralDamageAgainstFlyingTypeMultiplierAttr extends VariableMoveTy apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { if (!target.getTag(BattlerTagType.IGNORE_FLYING)) { const multiplier = args[0] as Utils.NumberHolder; - //Before pokemon is grounded, when a flying type is hit, the first hit is always 1x multiplier. Pokemon with air balloon/levitate/telekinesis are instantly affected by typing + //When a flying type is hit, the first hit is always 1x multiplier. Levitating pokemon are instantly affected by typing if (target.isOfType(Type.FLYING)) - multiplier.value = 1; + multiplier.value = 1; target.addTag(BattlerTagType.IGNORE_FLYING, 20, move.id, user.id); //TODO: Grounded effect should not have turn limit } return false;