From e3e40896e59f7ece138ca8b2b134dff4cc24cda3 Mon Sep 17 00:00:00 2001 From: Trenton Zimmer <66042448+trmazi@users.noreply.github.com> Date: Thu, 9 Jan 2025 09:48:46 -0500 Subject: [PATCH] Add event settings for LovePlus. --- src/constants/gameOptions/lovePlusOptions.js | 28 ++++++++++++++++++++ src/constants/index.js | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 src/constants/gameOptions/lovePlusOptions.js diff --git a/src/constants/gameOptions/lovePlusOptions.js b/src/constants/gameOptions/lovePlusOptions.js new file mode 100644 index 0000000..d81178b --- /dev/null +++ b/src/constants/gameOptions/lovePlusOptions.js @@ -0,0 +1,28 @@ +export const LovePlusOptions = { + 2: [ + { + id: "medal_link", + name: "LovePlus MEDAL Link", + help: "Enable data linking between LovePlus MEDAL. (not supported)", + type: "Boolean", + }, + { + id: "3ds_link", + name: "3DS Link", + help: "Enable linking between 3DS LovePlus and LovePlus Arcade. Not currently supported on SpiceTools.", + type: "Boolean", + }, + { + id: "summer_theme", + name: "Summer Theme", + help: "Enables a game-wide Summer theme. Unlocks the beach as a date spot.", + type: "Boolean", + }, + { + id: "info_text", + name: "Information Message", + help: "An announcement displayed on a bulletin board in attract mode.", + type: "LargeText", + }, + ], +}; diff --git a/src/constants/index.js b/src/constants/index.js index 7924414..9bab10e 100644 --- a/src/constants/index.js +++ b/src/constants/index.js @@ -4,6 +4,7 @@ import { DDRClassOptions } from "@/constants/gameOptions/ddrclassOptions"; import { DDROptions } from "@/constants/gameOptions/ddrOptions"; import { GFDMOptions } from "@/constants/gameOptions/gfdmOptions"; import { IIDXOptions } from "@/constants/gameOptions/iidxOptions"; +import { LovePlusOptions } from "@/constants/gameOptions/lovePlusOptions"; import { MusecaOptions } from "@/constants/gameOptions/musecaOptions"; import { NostalgiaOptions } from "@/constants/gameOptions/nostalgiaOptions"; import { PaseliChargeOptions } from "@/constants/gameOptions/paseliOptions"; @@ -1571,6 +1572,7 @@ export const gameData = [ playerHeaders: [ { text: "Girlfriend", value: "gf", sortable: true, width: 100 }, ], + gameOptions: LovePlusOptions, versions: [ { id: VersionConstants.LOVEPLUS_ARCADE,