From f77d860265a97eb3fba0ab03b5acfcadaebe818b Mon Sep 17 00:00:00 2001 From: Frederico Santos Date: Tue, 14 May 2024 19:59:41 +0100 Subject: [PATCH] New description for getStat() --- src/field/pokemon.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index a4c74c570ab..95ce815e569 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -545,9 +545,9 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { } /** - * Returns the value of the specified stat. Depending on whether the pokemon has been summoned or not, it may use the base stats or the current stats. - * @param {Stat} stat Stat to get the value of. - * @returns {integer} Returns the value of the stat. If the pokemon is already summoned, it uses those values, otherwise uses the base stats. + * Returns the value of the specified stat. + * @param {Stat} stat Stat to get the value of. {@link Stat} + * @returns The value of the stat. If the pokemon is already summoned, it uses those values, otherwise uses the base stats. {@link integer} */ getStat(stat: Stat): integer { if (!this.summonData) {