Add a couple of TODOs

This commit is contained in:
NightKev 2025-07-10 01:49:20 -07:00
parent fee6320502
commit d0ebb32f9e
2 changed files with 2 additions and 0 deletions

View File

@ -68,6 +68,7 @@ function mapModifierCategoryToItems(modifier: ModifierCategoryString, typeId: st
if (modifier === "SpeciesStatBoosterModifier") {
const stats = args[1];
const species = args[3];
// TODO: why is this not `species === SpeciesId.SPECIES_NAME`?
if (SpeciesId.PIKACHU in species) {
return HeldItemId.LIGHT_BALL;
}

View File

@ -1,3 +1,4 @@
// TODO: move to `src/@types/`
import type { RewardTier } from "#enums/reward-tier";
import type { TrainerItemId } from "#enums/trainer-item-id";