[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.
This commit is contained in:
damocleas 2025-12-13 13:35:28 -05:00
parent 7456c11be1
commit 95c85f68af

View File

@ -259,15 +259,10 @@ export const noAbilityTypeOverrideMoves: ReadonlySet<MoveId> = new Set([
/** Set of all moves that cannot be copied by {@linkcode MoveId.SKETCH}. */ /** Set of all moves that cannot be copied by {@linkcode MoveId.SKETCH}. */
export const invalidSketchMoves: ReadonlySet<MoveId> = new Set([ export const invalidSketchMoves: ReadonlySet<MoveId> = new Set([
MoveId.NONE, MoveId.NONE,
MoveId.CHATTER,
MoveId.MIRROR_MOVE, MoveId.MIRROR_MOVE,
MoveId.SLEEP_TALK, MoveId.SLEEP_TALK,
MoveId.STRUGGLE, MoveId.STRUGGLE,
MoveId.SKETCH, 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}. */ /** Set of all moves that cannot be locked into by {@linkcode MoveId.ENCORE}. */