mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-28 12:32:44 +02:00
* global timed event manager * more * Music change * Add AFD track loop points * Add AFD music tracks * changed music for afd * Enable Seasonal Splash Text, adjust event values * Add daily run challenge support * update event date, change trainer shiny chance to 20% * add banners lol * fix activeeventhasbanner function * Fix banner * Update locales submodule --------- Co-authored-by: AJ Fontaine <fontbane@gmail.com> Co-authored-by: damocleas <damocleas25@gmail.com> Co-authored-by: Madmadness65 <59298170+Madmadness65@users.noreply.github.com> Co-authored-by: Dean <me@deann.dev> Co-authored-by: AJ Fontaine <36677462+Fontbane@users.noreply.github.com>
12 lines
438 B
TypeScript
12 lines
438 B
TypeScript
/** The maximum size of the player's party */
|
|
export const PLAYER_PARTY_MAX_SIZE: number = 6;
|
|
|
|
/** Whether to use seasonal splash messages in general */
|
|
export const USE_SEASONAL_SPLASH_MESSAGES: boolean = true;
|
|
|
|
/** Name of the session ID cookie */
|
|
export const SESSION_ID_COOKIE_NAME: string = "pokerogue_sessionId";
|
|
|
|
/** Max value for an integer attribute in {@linkcode SystemSaveData} */
|
|
export const MAX_INT_ATTR_VALUE = 0x80000000;
|