diff --git a/src/data/moves/move.ts b/src/data/moves/move.ts index 962a13bb840..82fa5965200 100644 --- a/src/data/moves/move.ts +++ b/src/data/moves/move.ts @@ -8261,8 +8261,6 @@ export const allMoves: Move[] = [ new SelfStatusMove(Moves.NONE, PokemonType.NORMAL, MoveCategory.STATUS, -1, -1, 0, 1), ]; -export const selfStatLowerMoves: Moves[] = []; - export function initMoves() { allMoves.push( new AttackMove(Moves.POUND, PokemonType.NORMAL, MoveCategory.PHYSICAL, 40, 100, 35, -1, 0, 1), @@ -11250,9 +11248,4 @@ export function initMoves() { new AttackMove(Moves.MALIGNANT_CHAIN, PokemonType.POISON, MoveCategory.SPECIAL, 100, 100, 5, 50, 0, 9) .attr(StatusEffectAttr, StatusEffect.TOXIC) ); - allMoves.map(m => { - if (m.getAttrs(StatStageChangeAttr).some(a => a.selfTarget && a.stages < 0)) { - selfStatLowerMoves.push(m.id); - } - }); }