Add initial Sparkle Shower support
Some checks are pending
Build / build (push) Waiting to run

This commit is contained in:
Trenton Zimmer
2026-07-24 21:38:17 -04:00
parent 667541951a
commit 0bcc9a6fe7
4 changed files with 9874 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -454,4 +454,49 @@ export const IIDXOptions = {
type: "String",
},
],
33: [
{
id: "global_shop_ranking",
name: "Global Shop Ranking",
help: "Return network-wide ranking instead of shop ranking on results screen.",
type: "Boolean",
},
{
id: "idol_ad",
name: "Attract Loop Idol Ad",
help: "Plays an ad for an idol group during the attract loop.",
type: "Boolean",
},
{
id: "event_phase",
name: "Game Event Phase",
help: "Enable different boss events",
type: "Array",
options: [
{ id: 0, label: "No Event" },
{ id: 1, label: "Pinky Jump UP! (MAP 1)" },
{ id: 2, label: "Pinky Jump UP! (MAP 2)" },
{ id: 3, label: "Pinky Jump UP! (MAP 3)" },
],
},
{
id: "system_season_voice",
name: "System Season Voice",
help: "Enable different season voice in Game",
type: "Array",
options: [
{ id: 0, label: "Random" },
{ id: 1, label: "Winter" },
{ id: 2, label: "Spring" },
{ id: 3, label: "Summer" },
{ id: 4, label: "Autumn" },
],
},
{
id: "license",
name: "License Message",
help: "A server sent license.",
type: "String",
},
],
};

View File

@@ -183,6 +183,7 @@ export class VersionConstants {
static IIDX_RESIDENT = 30;
static IIDX_EPOLIS = 31;
static IIDX_PINKY_CRUSH = 32;
static IIDX_SPARKLE_SHOWER = 33;
static JUBEAT = 1;
static JUBEAT_RIPPLES = 2;
@@ -1346,6 +1347,7 @@ export const gameData = [
VersionConstants.IIDX_RESIDENT,
VersionConstants.IIDX_EPOLIS,
VersionConstants.IIDX_PINKY_CRUSH,
VersionConstants.IIDX_SPARKLE_SHOWER,
],
scoreHeaders: [
{ text: "Grade", value: "data.rank", width: 60 },
@@ -1553,6 +1555,11 @@ export const gameData = [
label: "Pinky Crush",
maxRivals: 5,
},
{
id: VersionConstants.IIDX_SPARKLE_SHOWER,
label: "Sparkle Shower",
maxRivals: 5,
},
],
},
{

File diff suppressed because it is too large Load Diff