From 11c5c0a3d92e52d14593e22301fbabd21a766730 Mon Sep 17 00:00:00 2001 From: Tempoanon <163687446+Tempo-anon@users.noreply.github.com> Date: Tue, 23 Jul 2024 11:17:32 -0400 Subject: [PATCH] [Move] Aeroblast is a wind move (#3109) * Hardcoded Pokemon should have proper names * Aeroblast is a wind move --- src/data/move.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data/move.ts b/src/data/move.ts index 5e2fbb5e207..2efedd2bedf 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -6311,6 +6311,7 @@ export function initMoves() { .attr(ResistLastMoveTypeAttr) .partial(), // Checks the move's original typing and not if its type is changed through some other means new AttackMove(Moves.AEROBLAST, Type.FLYING, MoveCategory.SPECIAL, 100, 95, 5, -1, 0, 2) + .windMove() .attr(HighCritAttr), new StatusMove(Moves.COTTON_SPORE, Type.GRASS, 100, 40, -1, 0, 2) .attr(StatChangeAttr, BattleStat.SPD, -2)