28 lines
803 B
TypeScript
28 lines
803 B
TypeScript
export type Game = {
|
|
slug: string;
|
|
title: string;
|
|
status: "in-development" | "released" | "coming-soon";
|
|
tagline: string;
|
|
description: string;
|
|
genres: string[];
|
|
releaseWindow?: string;
|
|
steamUrl?: string;
|
|
};
|
|
|
|
export const games: Game[] = [
|
|
{
|
|
slug: "project-one",
|
|
title: "Project One",
|
|
status: "in-development",
|
|
tagline: "A survival adventure across shifting horizons.",
|
|
description:
|
|
"Inspired by Raft and Aloft. Build, explore, and survive across drifting worlds. A new survival adventure currently in early development. The first world from Highland Games Studio.",
|
|
genres: ["Survival", "Crafting", "Exploration"],
|
|
releaseWindow: "TBA",
|
|
},
|
|
];
|
|
|
|
export function getGame(slug: string): Game | undefined {
|
|
return games.find((g) => g.slug === slug);
|
|
}
|