From 73dd37a7b567357a84759692e246409462b0d09a Mon Sep 17 00:00:00 2001 From: Matthew Olker Date: Thu, 9 May 2024 14:35:51 -0400 Subject: [PATCH] added generator held item names to override comment --- src/overrides.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/overrides.ts b/src/overrides.ts index c8ecaed054f..2b6106a7419 100644 --- a/src/overrides.ts +++ b/src/overrides.ts @@ -68,11 +68,11 @@ export const OPP_SPECIES_OVERRIDE: Species | integer = 0; * Some items are generated based on a sub-type (i.e. berries), to override those: * @example [{name: "BERRY", count: 5, type: BerryType.SITRUS}] * types are listed in interface below - * - TempBattleStat is for X items (Dire hit is separate) - * - Stat is for vitamins - * - Nature is for mints - * - Type is for Tera Shard - * - BerryType is for Berries + * - TempBattleStat is for TEMP_STAT_BOOSTER / X Items (Dire hit is separate) + * - Stat is for BASE_STAT_BOOSTER / Vitamin + * - Nature is for MINT + * - Type is for TERA_SHARD or ATTACK_TYPE_BOOSTER (type boosting items i.e Silk Scarf) + * - BerryType is for BERRY */ interface ModifierOverride { name: string, @@ -82,5 +82,5 @@ interface ModifierOverride { export const STARTING_MODIFIER_OVERRIDE: Array = []; export const OPP_MODIFIER_OVERRIDE: Array = []; -export const STARTING_HELD_ITEMS_OVERRIDE: Array = [{name: "LUCKY_EGG"}]; +export const STARTING_HELD_ITEMS_OVERRIDE: Array = []; export const OPP_HELD_ITEMS_OVERRIDE: Array = [];