From 389c47982587f0a948932755ffc85f7fe64978f8 Mon Sep 17 00:00:00 2001 From: Madmadness65 Date: Fri, 7 Jun 2024 18:23:53 -0500 Subject: [PATCH] Update comments --- src/data/pokemon-forms.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/data/pokemon-forms.ts b/src/data/pokemon-forms.ts index f6268033bbc..998752f4d34 100644 --- a/src/data/pokemon-forms.ts +++ b/src/data/pokemon-forms.ts @@ -105,8 +105,8 @@ export enum FormChangeItem { DRACO_PLATE, DREAD_PLATE, PIXIE_PLATE, - BLANK_PLATE, // Will this ever be used? - LEGEND_PLATE, // Will this ever be used? + BLANK_PLATE, // TODO: Find a potential use for this + LEGEND_PLATE, // TODO: Find a potential use for this FIGHTING_MEMORY, FLYING_MEMORY, POISON_MEMORY, @@ -124,7 +124,7 @@ export enum FormChangeItem { DRAGON_MEMORY, DARK_MEMORY, FAIRY_MEMORY, - BLANK_MEMORY // Will this ever be used? + BLANK_MEMORY // TODO: Find a potential use for this } export type SpeciesFormChangeConditionPredicate = (p: Pokemon) => boolean;