mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-24 10:39:15 +01:00
[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:
parent
e888cbd6fb
commit
a1a1796f64
@ -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(
|
||||
|
||||
@ -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,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user