diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 00a79dc3800..56c724ef51a 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -1108,9 +1108,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { 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 { return this.getMaxHp() - this.hp; }