diff --git a/website/agb/src/app/showcase/data/tapir/hyperspace/hyperspace-roll-0.png b/website/agb/src/app/showcase/data/tapir/hyperspace/hyperspace-roll-0.png new file mode 100644 index 00000000..d03f89eb Binary files /dev/null and b/website/agb/src/app/showcase/data/tapir/hyperspace/hyperspace-roll-0.png differ diff --git a/website/agb/src/app/showcase/data/tapir/hyperspace/hyperspace-roll-1.png b/website/agb/src/app/showcase/data/tapir/hyperspace/hyperspace-roll-1.png new file mode 100644 index 00000000..47f792df Binary files /dev/null and b/website/agb/src/app/showcase/data/tapir/hyperspace/hyperspace-roll-1.png differ diff --git a/website/agb/src/app/showcase/data/tapir/hyperspace/hyperspace.tsx b/website/agb/src/app/showcase/data/tapir/hyperspace/hyperspace.tsx new file mode 100644 index 00000000..84ffdcd9 --- /dev/null +++ b/website/agb/src/app/showcase/data/tapir/hyperspace/hyperspace.tsx @@ -0,0 +1,30 @@ +import { ShowcaseGame, shuffle } from "@/app/showcase/games"; +import h1 from "./hyperspace-roll-0.png"; +import h2 from "./hyperspace-roll-1.png"; + +const Screenshots = [h1, h2]; + +export const Hyperspace: ShowcaseGame = { + name: "Hyperspace Roll", + developers: shuffle(["Corwin Kuiper", "Gwilym Inzani", "Sam Williams"]), + screenshots: Screenshots, + description: ( + <> +
+ Get through as many levels as possible in this space themed, dice + rolling roguelike. +
++ Build up powerful combos to defeat enemies which keep getting stronger. + Slowly acquire more dice and upgrade them in order to handle the + increasing strength of the enemies you face. +
+ ++ Hyperspace Roll was influenced by great games such as Slay the Spire, + FTL and the board game Escape: The Curse of the Temple. +
+ > + ), + itch: new URL("https://lostimmortal.itch.io/the-purple-night"), +}; diff --git a/website/agb/src/app/showcase/games.tsx b/website/agb/src/app/showcase/games.tsx index 3ba4a542..02418bb7 100644 --- a/website/agb/src/app/showcase/games.tsx +++ b/website/agb/src/app/showcase/games.tsx @@ -2,6 +2,7 @@ import { StaticImageData } from "next/image"; import { ReactNode } from "react"; import { HatWiz } from "./data/tapir/hatwiz/hatwiz"; import { Purple } from "./data/tapir/purple/purple"; +import { Hyperspace } from "./data/tapir/hyperspace/hyperspace"; export interface ShowcaseGame { name: string; @@ -24,4 +25,4 @@ export function shuffle