Update pokemon.ts

Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
Bertie690 2025-04-29 23:15:14 -04:00 committed by GitHub
parent 9c85e977ca
commit aaf68aa3c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7742,9 +7742,9 @@ export interface AttackMoveResult {
} }
/** /**
Persistent in-battle data for a {@linkcode Pokemon}. * Persistent in-battle data for a {@linkcode Pokemon}.
Resets on switch or new battle. * Resets on switch or new battle.
*/ */
export class PokemonSummonData { export class PokemonSummonData {
/** [Atk, Def, SpAtk, SpDef, Spd, Acc, Eva] */ /** [Atk, Def, SpAtk, SpDef, Spd, Acc, Eva] */
public statStages: number[] = [0, 0, 0, 0, 0, 0, 0]; public statStages: number[] = [0, 0, 0, 0, 0, 0, 0];