From afe89282cc89a0ad4b24c611a4b10955353faa8f Mon Sep 17 00:00:00 2001 From: torranx Date: Fri, 6 Sep 2024 22:07:32 +0800 Subject: [PATCH] update docs --- src/data/battler-tags.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index cab756dc1b5..08011219692 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -1995,7 +1995,7 @@ export class TarShotTag extends BattlerTag { /** * If the Pokemon is terastallized, the tag cannot be added. - * @param pokemon the pokemon to which the tag is added + * @param {Pokemon} pokemon the {@linkcode Pokemon} to which the tag is added * @returns whether the tag is applied */ override canAdd(pokemon: Pokemon): boolean { @@ -2010,11 +2010,11 @@ export class TarShotTag extends BattlerTag { /** * Retrieves a BattlerTag based on the provided tag type, turn count, source move, and source ID. * - * @param {BattlerTagType} tagType - The type of the BattlerTag. - * @param {number} turnCount - The turn count. - * @param {Moves} sourceMove - The source move. - * @param {number} sourceId - The source ID. - * @returns {BattlerTag} The corresponding BattlerTag object. + * @param {BattlerTagType} tagType the type of the {@linkcode BattlerTagType}. + * @param turnCount the turn count. + * @param {Moves} sourceMove the source {@linkcode Moves}. + * @param sourceId the source ID. + * @returns {BattlerTag} the corresponding {@linkcode BattlerTag} object. */ export function getBattlerTag(tagType: BattlerTagType, turnCount: number, sourceMove: Moves, sourceId: number): BattlerTag { switch (tagType) {