Update pokemon.ts comment fix

Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
Bertie690 2025-01-16 21:33:50 -05:00 committed by GitHub
parent e0600a9476
commit 4526a5b1b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 3 deletions

View File

@ -1108,9 +1108,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
return this.getStat(Stat.HP); return this.getStat(Stat.HP);
} }
/** /** Returns the amount of hp currently missing from this {@linkcode Pokemon} (max - current) */
Returns the amount of hp currently missing from this {@linkcode Pokemon} (max - current)
*/
getInverseHp(): integer { getInverseHp(): integer {
return this.getMaxHp() - this.hp; return this.getMaxHp() - this.hp;
} }