From 81e26a8cbd5d223bb2ebeecefa7b3e32b16d47c5 Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Mon, 18 Aug 2025 21:12:38 -0500 Subject: [PATCH] Address bertie's review comments --- src/data/moves/move.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/data/moves/move.ts b/src/data/moves/move.ts index 495e94828b8..3fc70acb5f4 100644 --- a/src/data/moves/move.ts +++ b/src/data/moves/move.ts @@ -126,11 +126,12 @@ export abstract class Move implements Localizable { * @remarks * These are the default conditions checked during the move effect phase (aka sequence 4). * When adding a new condition, if unsure of where it occurs in the failure checks, it should go here. - * @remarks Different from {@linkcode restrictions}, which is checked when the move is selected + * + * Different from {@linkcode restrictions}, which are checked when the move is selected */ private conditions: MoveCondition[] = []; /** - * Move failure conditions that occur during the second sequence (after move message and before ) + * Move failure conditions that occur during the second sequence (after move message but before the move is recorded as the last move used) */ private conditionsSeq2: MoveCondition[] = []; /** @@ -701,7 +702,7 @@ export abstract class Move implements Localizable { * Sets the {@linkcode MoveFlags.GRAVITY} flag for the calling Move and adds {@linkcode GravityUseRestriction} to the * move's restrictions. * - * @returns The {@linkcode Move} that called this function + * @returns `this` * * @remarks * No {@linkcode condition} is added, as gravity's condition is already checked