From e0504ca98c94ce568499cc6d4420cdfe40a6e96f Mon Sep 17 00:00:00 2001 From: frutescens Date: Sat, 12 Oct 2024 20:07:12 -0700 Subject: [PATCH] move go --- 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 1f03324b6ed..e887c2b55f5 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -2867,7 +2867,7 @@ export class StatStageChangeAttr extends MoveEffectAttr { } } -export class BiomeBasedSecondaryEffectAttr extends MoveEffectAttr { +export class SecretPowerAttr extends MoveEffectAttr { constructor() { super(false); } @@ -7920,7 +7920,7 @@ export function initMoves() { .unimplemented(), new AttackMove(Moves.SECRET_POWER, Type.NORMAL, MoveCategory.PHYSICAL, 70, 100, 20, 30, 0, 3) .makesContact(false) - .attr(BiomeBasedSecondaryEffectAttr), + .attr(SecretPowerAttr), new AttackMove(Moves.DIVE, Type.WATER, MoveCategory.PHYSICAL, 80, 100, 10, -1, 0, 3) .attr(ChargeAttr, ChargeAnim.DIVE_CHARGING, i18next.t("moveTriggers:hidUnderwater", { pokemonName: "{USER}" }), BattlerTagType.UNDERWATER, true) .attr(GulpMissileTagAttr)