From 673f174b3f8258fcf6c43d5b529c118ea5febff8 Mon Sep 17 00:00:00 2001 From: Bertie690 Date: Mon, 9 Jun 2025 23:11:14 -0400 Subject: [PATCH] Added comment for BattlerIndex --- src/enums/battler-index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/enums/battler-index.ts b/src/enums/battler-index.ts index 32b1684c86c..253e5bfc3ed 100644 --- a/src/enums/battler-index.ts +++ b/src/enums/battler-index.ts @@ -1,3 +1,7 @@ +/** + * 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,