feat: add fgo to games.

This commit is contained in:
Lucas Winther
2026-08-18 02:43:56 +02:00
parent 94ecf9ccbb
commit 5cc46a0c9a
8 changed files with 8188 additions and 2 deletions
+1
View File
@@ -94,6 +94,7 @@ export const GAMES: Record<GameId, GameMeta> = {
// has to come from a source that states the clock. Inventing one moves real
// readers' day keys, and a wrong guess ticks the wrong box every night.
ba: { id: "ba", name: "Blue Archive", short: "Blue Archive", hue: "#3FCBDD" , studio: "Nexon Games", dailyTasks: "Daily missions, AP" },
fgo: { id: "fgo", name: "Fate/Grand Order", short: "FGO", hue: "#1D3A8F", studio: "Lasengle", dailyTasks: "Daily missions, AP" },
};
export const GAME_LIST: GameMeta[] = Object.values(GAMES);
+1
View File
@@ -12,6 +12,7 @@ export const GameId = z.enum([
"p5x", // Persona 5: The Phantom X
"r1999", // Reverse: 1999
"ba", // Blue Archive
"fgo", // Fate/Grand Order
]);
export type GameId = z.infer<typeof GameId>;