From 158eb9748b46927c2b9b213b754138d30480d058 Mon Sep 17 00:00:00 2001 From: Luc Dube Date: Sun, 21 Apr 2024 01:43:19 -0400 Subject: [PATCH] implemented magic powder --- 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 293852d2591..bc52c416719 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -5675,8 +5675,8 @@ export function initMoves() { .attr(StatChangeAttr, BattleStat.SPD, -1) .partial(), new StatusMove(Moves.MAGIC_POWDER, Type.PSYCHIC, 100, 20, -1, 0, 8) - .powderMove() - .unimplemented(), + .attr(ChangeTypeAttr, Type.PSYCHIC) + .powderMove(), new AttackMove(Moves.DRAGON_DARTS, Type.DRAGON, MoveCategory.PHYSICAL, 50, 100, 10, -1, 0, 8) .attr(MultiHitAttr, MultiHitType._2) .makesContact(false)