diff --git a/src/constants.ts b/src/constants.ts index 63f00b9f33f..927575c0a28 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -2,7 +2,7 @@ export const PLAYER_PARTY_MAX_SIZE: number = 6; /** Whether to use seasonal splash messages in general */ -export const USE_SEASONAL_SPLASH_MESSAGES: boolean = false; +export const USE_SEASONAL_SPLASH_MESSAGES: boolean = true; /** Name of the session ID cookie */ export const SESSION_ID_COOKIE_NAME: string = "pokerogue_sessionId"; diff --git a/src/timed-event-manager.ts b/src/timed-event-manager.ts index 1630034212e..e6e62d400bd 100644 --- a/src/timed-event-manager.ts +++ b/src/timed-event-manager.ts @@ -286,12 +286,12 @@ const timedEvents: TimedEvent[] = [ { name: "April Fools 2025", eventType: EventType.NO_TIMER_DISPLAY, - startDate: new Date(Date.UTC(2025, 2, 1)), + startDate: new Date(Date.UTC(2025, 2, 31)), endDate: new Date(Date.UTC(2025, 3, 3)), // bannerKey: "aprf25-", // scale: 0.21, // availableLangs: ["en", "de", "it", "fr", "ja", "ko", "es-ES", "pt-BR", "zh-CN"], - trainerShinyChance: 16384, // 16384/65536 = 1/4 + trainerShinyChance: 32769, // 16384/65536 = 1/4 music: [ ["title", "title_afd"], ["battle_rival_3", "battle_rival_3_afd"],