12 lines
439 B
TypeScript
12 lines
439 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 = false;
|
|
|
|
/** 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;
|