[Event] Add data for Winter Holiday 2025 event (#6860)

* Add data for Winter 2025 event
* Update timed-event-manager.ts
---------
Co-authored-by: damocleas <damocleas25@gmail.com>
This commit is contained in:
Austin Fontaine 2025-12-18 23:28:06 -05:00 committed by GitHub
parent e888cbd6fb
commit a1a1796f64
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 54 additions and 0 deletions

View File

@ -80,6 +80,7 @@ export const DelibirdyEncounter: MysteryEncounter = MysteryEncounterBuilder.with
MysteryEncounterType.DELIBIRDY,
)
.withEncounterTier(MysteryEncounterTier.GREAT)
.withMaxAllowedEncounters(4)
.withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES)
.withSceneRequirement(new MoneyRequirement(0, DELIBIRDY_MONEY_PRICE_MULTIPLIER)) // Must have enough money for it to spawn at the very least
.withPrimaryPokemonRequirement(

View File

@ -81,6 +81,59 @@ interface TimedEvent extends EventBanner {
}
const timedEvents: readonly TimedEvent[] = [
{
name: "Winter 25",
eventType: EventType.SHINY,
startDate: new Date(Date.UTC(2025, 11, 19)),
endDate: new Date(Date.UTC(2026, 0, 5)),
bannerKey: "winter2025",
scale: 0.19,
availableLangs: ["en", "de", "it", "fr", "ja", "ko", "es-ES", "es-419", "pt-BR", "zh-Hans", "zh-Hant", "da", "ru"],
shinyEncounterMultiplier: 2,
shinyCatchMultiplier: 3,
upgradeUnlockedVouchers: true,
eventEncounters: [
{ species: SpeciesId.CYNDAQUIL },
{ species: SpeciesId.SENTRET },
{ species: SpeciesId.DELIBIRD },
{ species: SpeciesId.STANTLER },
{ species: SpeciesId.SMOOCHUM },
{ species: SpeciesId.BALTOY },
{ species: SpeciesId.MAKUHITA },
{ species: SpeciesId.PIPLUP },
{ species: SpeciesId.CHINGLING },
{ species: SpeciesId.LITWICK },
{ species: SpeciesId.CHESPIN },
{ species: SpeciesId.AMAURA },
{ species: SpeciesId.COMFEY },
{ species: SpeciesId.DHELMISE },
{ species: SpeciesId.ROLYCOLY },
{ species: SpeciesId.SMOLIV },
{ species: SpeciesId.GIMMIGHOUL, blockEvolution: true },
{ species: SpeciesId.IRON_BUNDLE },
{ species: SpeciesId.ALOLA_VULPIX },
{ species: SpeciesId.GALAR_DARUMAKA },
],
classicWaveRewards: [
{ wave: 8, type: "SHINY_CHARM" },
{ wave: 8, type: "ABILITY_CHARM" },
{ wave: 8, type: "CATCHING_CHARM" },
{ wave: 25, type: "SHINY_CHARM" },
],
delibirdyBuff: ["CATCHING_CHARM", "SHINY_CHARM", "ABILITY_CHARM", "EXP_CHARM", "SUPER_EXP_CHARM", "HEALING_CHARM"],
mysteryEncounterTierChanges: [
{
mysteryEncounter: MysteryEncounterType.DELIBIRDY,
tier: MysteryEncounterTier.COMMON,
},
{ mysteryEncounter: MysteryEncounterType.PART_TIMER, disable: true },
{
mysteryEncounter: MysteryEncounterType.DEPARTMENT_STORE_SALE,
disable: true,
},
],
dailyRunStartingItems: ["ABILITY_CHARM", "SHINY_CHARM"],
},
{
name: "Winter Holiday Update",
eventType: EventType.SHINY,