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,