// Portfolio track catalog synced to the current CSV/audio set.

const CATALOG = [
  {
    id: "portfolio",
    code: "P",
    title: "Selected Works",
    blurb: "Original work, unreleased cues, and published game tracks curated from the current portfolio reel.",
    tracks: [
      {
        id: "p-01",
        no: "01",
        title: "JRPG Battle Theme",
        duration: "1:44",
        gameKey: "originalWork",
        year: 2026,
        tags: "Orchestral, JRPG, Battle",
        src: "audio/jrpg-battle-theme.wav",
        seed: 11,
      },
      {
        id: "p-02",
        no: "02",
        title: "Combat",
        duration: "1:31",
        gameKey: "unreleasedTitle",
        year: 2026,
        tags: "Orchestral, ARPG, Epic",
        src: "audio/combat.mp3",
        seed: 23,
      },
      {
        id: "p-03",
        no: "03",
        title: "Hub",
        duration: "2:19",
        gameKey: "unreleasedTitle",
        year: 2026,
        tags: "Calm, Atmospheric, Area",
        src: "audio/hub.mp3",
        seed: 37,
      },
      {
        id: "p-04",
        no: "04",
        title: "Clash of Tragic Destinies",
        duration: "2:16",
        gameKey: "unreleasedTitle",
        year: 2026,
        tags: "Orchestral, Character Theme, Boss Battle",
        src: "audio/clash-of-tragic-destinies.wav",
        seed: 49,
      },
      {
        id: "p-05",
        no: "05",
        title: "Adventure",
        duration: "2:33",
        gameKey: "originalWork",
        year: 2025,
        tags: "Epic Orchestral, Title Theme",
        src: "audio/adventure.wav",
        seed: 61,
      },
      {
        id: "p-06",
        no: "06",
        title: "Coast",
        duration: "1:16",
        gameKey: "publishedTitle",
        year: 2025,
        tags: "Calm, Peaceful, Dreamy",
        src: "audio/coast.mp3",
        seed: 73,
      },
      {
        id: "p-07",
        no: "07",
        title: "Deep Sea",
        duration: "1:26",
        gameKey: "publishedTitle",
        year: 2025,
        tags: "Ambient, Dark",
        src: "audio/deep-sea.mp3",
        seed: 85,
      },
      {
        id: "p-08",
        no: "08",
        title: "Catacomb (Exploration)",
        duration: "1:49",
        gameKey: "unreleasedTitle",
        year: 2026,
        tags: "Dark, Atmospheric, Dungeon",
        src: "audio/catacomb-exploration.mp3",
        seed: 97,
      },
      {
        id: "p-09",
        no: "09",
        title: "Catacomb (Combat)",
        duration: "1:46",
        gameKey: "unreleasedTitle",
        year: 2026,
        tags: "Dark, Interactive, Combat",
        src: "audio/catacomb-combat.mp3",
        seed: 109,
      },
    ],
  },
];

window.CATALOG = CATALOG;
