From 95c85f68af5752cc8e4bb2d85f5bdb27ad5fa799 Mon Sep 17 00:00:00 2001 From: damocleas Date: Sat, 13 Dec 2025 13:35:28 -0500 Subject: [PATCH] [Balance] Update Invalid Sketch Moves - Removed Chatter, Revival Blessing, and Tera Starstorm from being invalid moves to be gained with the move Sketch This seems to have been an oversight when implementing the list to work with the game, as there is no reason to restrict these with the game systems here. --- src/data/moves/invalid-moves.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/data/moves/invalid-moves.ts b/src/data/moves/invalid-moves.ts index e55eedc29aa..98ab419ab46 100644 --- a/src/data/moves/invalid-moves.ts +++ b/src/data/moves/invalid-moves.ts @@ -259,15 +259,10 @@ export const noAbilityTypeOverrideMoves: ReadonlySet = new Set([ /** Set of all moves that cannot be copied by {@linkcode MoveId.SKETCH}. */ export const invalidSketchMoves: ReadonlySet = new Set([ MoveId.NONE, - MoveId.CHATTER, MoveId.MIRROR_MOVE, MoveId.SLEEP_TALK, MoveId.STRUGGLE, MoveId.SKETCH, - MoveId.REVIVAL_BLESSING, - MoveId.TERA_STARSTORM, - MoveId.BREAKNECK_BLITZ__PHYSICAL, - MoveId.BREAKNECK_BLITZ__SPECIAL, ]); /** Set of all moves that cannot be locked into by {@linkcode MoveId.ENCORE}. */