remove Standard from series enum, shift IDs

This commit is contained in:
Justin Edmund 2025-12-15 17:48:56 -08:00
parent cbef8f5518
commit cfcda8f01e

View file

@ -58,26 +58,24 @@ export function getSeasonName(season: number | null): string | null {
// Character series (identity/pool membership) // Character series (identity/pool membership)
export enum CharacterSeries { export enum CharacterSeries {
Standard = 1, Grand = 1,
Grand = 2, Zodiac = 2,
Zodiac = 3, Promo = 3,
Promo = 4, Collab = 4,
Collab = 5, Eternal = 5,
Eternal = 6, Evoker = 6,
Evoker = 7, Saint = 7,
Saint = 8, Fantasy = 8,
Fantasy = 9, Summer = 9,
Summer = 10, Yukata = 10,
Yukata = 11, Valentine = 11,
Valentine = 12, Halloween = 12,
Halloween = 13, Formal = 13,
Formal = 14, Holiday = 14,
Holiday = 15, Event = 15
Event = 16
} }
export const CHARACTER_SERIES_NAMES: Record<number, string> = { export const CHARACTER_SERIES_NAMES: Record<number, string> = {
[CharacterSeries.Standard]: 'Standard',
[CharacterSeries.Grand]: 'Grand', [CharacterSeries.Grand]: 'Grand',
[CharacterSeries.Zodiac]: 'Zodiac', [CharacterSeries.Zodiac]: 'Zodiac',
[CharacterSeries.Promo]: 'Promo', [CharacterSeries.Promo]: 'Promo',