Update linkcode in damageparams to use proper tsdoc syntax

This commit is contained in:
Sirz Benjie 2025-04-19 22:43:06 -05:00
parent b000d820b7
commit 8aa76880bf
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E

View File

@ -301,10 +301,10 @@ type damageParams = {
effectiveness?: number;
}
/** Type for the parameters of {@linkcode Pokemon#getBaseDamage getBaseDamage} */
/** Type for the parameters of {@linkcode Pokemon#getBaseDamage | getBaseDamage} */
type getBaseDamageParams = Omit<damageParams, "effectiveness">
/** Type for the parameters of {@linkcode Pokemon#getAttackDamage getAttackDamage} */
/** Type for the parameters of {@linkcode Pokemon#getAttackDamage | getAttackDamage} */
type getAttackDamageParams = Omit<damageParams, "moveCategory">;
export default abstract class Pokemon extends Phaser.GameObjects.Container {