From c403574b746076c64bd4321dbd270e3275659660 Mon Sep 17 00:00:00 2001 From: schmidtc1 <62030095+schmidtc1@users.noreply.github.com> Date: Sun, 29 Dec 2024 10:06:32 -0500 Subject: [PATCH] Update src/data/move.ts Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/data/move.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/data/move.ts b/src/data/move.ts index 175ab0835a9..cca0ad30949 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -6514,12 +6514,12 @@ export class RandomMoveAttr extends CallMoveAttr { /** * User calls a random moveId - * @param {Pokemon} user Pokemon that used the move and will call a random move - * @param {Pokemon} target Pokemon that will be targeted by the random move (if single target) - * @param {Move} move Move being used - * @param {any[]} args Unused - * @returns {Promise} - * Invalid moves are indicated by what is passed in to invalidMoves: @constant {invalidMetronomeMoves} + * + * Invalid moves are indicated by what is passed in to invalidMoves: {@linkcode invalidMetronomeMoves} + * @param user Pokemon that used the move and will call a random move + * @param target Pokemon that will be targeted by the random move (if single target) + * @param move Move being used + * @param args Unused */ apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): Promise { const moveIds = Utils.getEnumValues(Moves).map(m => !this.invalidMoves.includes(m) && !allMoves[m].name.endsWith(" (N)") ? m : Moves.NONE);