Update slumbering-snorlax-encounter.ts

This commit is contained in:
damocleas 2025-04-26 01:19:15 -04:00 committed by GitHub
parent 5bf398f561
commit 982b09ab26
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,7 +26,6 @@ import { getPokemonSpecies } from "#app/data/pokemon-species";
import { MysteryEncounterTier } from "#enums/mystery-encounter-tier";
import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode";
import { PartyHealPhase } from "#app/phases/party-heal-phase";
import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/constants";
import { BerryType } from "#enums/berry-type";
import { Stat } from "#enums/stat";
import { CustomPokemonData } from "#app/data/custom-pokemon-data";
@ -44,7 +43,7 @@ export const SlumberingSnorlaxEncounter: MysteryEncounter = MysteryEncounterBuil
MysteryEncounterType.SLUMBERING_SNORLAX,
)
.withEncounterTier(MysteryEncounterTier.GREAT)
.withSceneWaveRangeRequirement(15, CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES[1])
.withSceneWaveRangeRequirement(15, 150)
.withCatchAllowed(true)
.withHideWildIntroMessage(true)
.withFleeAllowed(false)