From f0d1599c111110ec9ec29629b9f3575ad82cc1c8 Mon Sep 17 00:00:00 2001 From: Dread134 Date: Fri, 17 May 2024 12:13:37 -0400 Subject: [PATCH] Added Spectral Thief Implementation Added attribute to Spectral Thief to steal stat boosts --- src/data/move.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data/move.ts b/src/data/move.ts index 2a7beb9338c..4647917cdc4 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -6426,6 +6426,7 @@ export function initMoves() { new AttackMove(Moves.PRISMATIC_LASER, Type.PSYCHIC, MoveCategory.SPECIAL, 160, 100, 10, -1, 0, 7) .attr(RechargeAttr), new AttackMove(Moves.SPECTRAL_THIEF, Type.GHOST, MoveCategory.PHYSICAL, 90, 100, 10, -1, 0, 7) + .attr(StealPositiveStatsAttr) .partial(), new AttackMove(Moves.SUNSTEEL_STRIKE, Type.STEEL, MoveCategory.PHYSICAL, 100, 100, 5, -1, 0, 7) .ignoresAbilities()