mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-29 04:52:43 +02:00
12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
/**
|
|
* The index of a given Pokemon on-field.
|
|
* Used as an index into `globalScene.getField`, as well as for most target-specifying effects.
|
|
*/
|
|
export enum BattlerIndex {
|
|
ATTACKER = -1,
|
|
PLAYER,
|
|
PLAYER_2,
|
|
ENEMY,
|
|
ENEMY_2
|
|
}
|