← back to Nineoh Guide

apps/web/lib/games.ts

49 lines

/** Steve's original self-contained 90210 games, hosted from /public/games.
 *  Each is zero-dependency HTML — we host + showcase them, never edit them. */
export type Game = { id: string; file: string; title: string; icon: string; desc: string };

export const GAMES: Game[] = [
  {
    id: "trivia",
    file: "trivia.html",
    title: "90210 Trivia",
    icon: "💎",
    desc: "Beat the clock on Beverly Hills pop-culture questions, stack a streak multiplier, and climb from Peach Pit Local to Rodeo Drive Royalty.",
  },
  {
    id: "backgammon",
    file: "backgammon.html",
    title: "90210 Backgammon",
    icon: "🎲",
    desc: "A lavish take on classic backgammon — roll the dice and bear off your checkers on a gold-and-marble 90210 board.",
  },
  {
    id: "rodeo-runner",
    file: "rodeo-runner.html",
    title: "Rodeo Drive Runner",
    icon: "🏎️",
    desc: "Cruise a gold convertible down Rodeo Drive, swerve the traffic, and grab champagne and diamonds for a combo multiplier.",
  },
  {
    id: "slots",
    file: "slots.html",
    title: "Beverly Hills Slots",
    icon: "🎰",
    desc: "Spin a gold-and-marble 3-reel cabinet, set your bet, and chase the Pink Palace diamond jackpot.",
  },
  {
    id: "blackjack",
    file: "blackjack.html",
    title: "90210 Blackjack",
    icon: "🂡",
    desc: "Hit, stand, and double down at the Beverly Hills casino table — beat the dealer to 21.",
  },
  {
    id: "roulette",
    file: "roulette.html",
    title: "90210 Roulette",
    icon: "🎡",
    desc: "Place your chips and spin the Beverly Hills casino wheel — reds, blacks, and the diamond zero.",
  },
];