mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-26 11:39:17 +01:00
* Move trainer-config.ts * move TeraAIMode enum to its own file * Move TrainerPoolTier enum to its own file * Move TrainerSlot enum to its own file * Reorder and group imports * Move TrainerPartyTemplate to its own file * Remove speciesPoolPerEvilTeamAdmin method * Apply kev's suggestions from code review Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> * Fix typo in zinzolin's name --------- Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
6 lines
65 B
TypeScript
6 lines
65 B
TypeScript
export enum TrainerSlot {
|
|
NONE,
|
|
TRAINER,
|
|
TRAINER_PARTNER
|
|
}
|