mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-15 12:52:20 +02:00
Update linkcode in damageparams to use proper tsdoc syntax
This commit is contained in:
parent
b000d820b7
commit
8aa76880bf
@ -301,10 +301,10 @@ type damageParams = {
|
|||||||
effectiveness?: number;
|
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 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">;
|
type getAttackDamageParams = Omit<damageParams, "moveCategory">;
|
||||||
|
|
||||||
export default abstract class Pokemon extends Phaser.GameObjects.Container {
|
export default abstract class Pokemon extends Phaser.GameObjects.Container {
|
||||||
|
Loading…
Reference in New Issue
Block a user