make applyPostDamage public

Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
muscode 2024-11-01 10:30:35 -06:00 committed by GitHub
parent 0ff40e6b5b
commit 809e710b87
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4880,7 +4880,7 @@ function calculateShellBellRecovery(pokemon: Pokemon): number {
* @extends AbAttr * @extends AbAttr
*/ */
export class PostDamageAbAttr extends AbAttr { export class PostDamageAbAttr extends AbAttr {
applyPostDamage(pokemon: Pokemon, damage: number, passive: boolean, simulated: boolean, args: any[]): boolean | Promise<boolean> { public applyPostDamage(pokemon: Pokemon, damage: number, passive: boolean, simulated: boolean, args: any[]): boolean | Promise<boolean> {
return false; return false;
} }
} }