From 7207c3b6ab4d6dcbeca2ddb0875523cd3e69b38d 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 6aa7378e838..95a7f0f9ced 100644 --- a/src/data/moves/move.ts +++ b/src/data/moves/move.ts @@ -122,11 +122,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[] = []; /** @@ -695,7 +696,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