Skip to content

Commit

Permalink
add dungeon tactics and khieras quest (#773)
Browse files Browse the repository at this point in the history
- [x]  no changelog update needed
  • Loading branch information
corwinkuiper committed Sep 26, 2024
2 parents f3d5590 + 90ddf45 commit 1a9d590
Show file tree
Hide file tree
Showing 8 changed files with 59 additions and 0 deletions.
29 changes: 29 additions & 0 deletions website/agb/src/app/showcase/data/tapir/khiera/khiera.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import { ShowcaseGame, shuffle } from "@/app/showcase/games";
import k1 from "./khieras-quest-0.png";
import k2 from "./khieras-quest-1.png";
import k3 from "./khieras-quest-2.png";

const Screenshots = [k2, k3, k1];

export const Khiera: ShowcaseGame = {
name: "Khiera's Quest",
developers: shuffle([
"Corwin Kuiper",
"Gwilym Inzani",
"Sam Williams",
"Ján Letovanec",
]),
screenshots: Screenshots,
description: (
<>
<p>
Khiera&apos;s quest is a platforming game about where the direction of
gravity isn&apos;t always fixed. You&apos;ll find yourself jumping
between planets, asteroids and other strange satellites to collect
power-ups which will let you progress further. You will need to
backtrack to previous locations to complete your quest.
</p>
</>
),
itch: new URL("https://setsquare.itch.io/khieras-quest"),
};
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions website/agb/src/app/showcase/data/tapir/tactics/tactics.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import { ShowcaseGame, shuffle } from "@/app/showcase/games";
import d1 from "./dungeon-tactics-advance-0.png";
import d2 from "./dungeon-tactics-advance-1.png";

const Screenshots = [d2, d1];

export const Tactics: ShowcaseGame = {
name: "Dungeon Tactics Advance",
developers: shuffle([
"Corwin Kuiper",
"Gwilym Inzani",
"Sam Williams",
"Ján Letovanec",
]),
screenshots: Screenshots,
description: (
<>
<p>
In this rogue-lite turn based strategy game, you are tasked with
reaching the depths of the dungeon and defeating what lies waiting for
curious adventurers.
</p>
</>
),
itch: new URL("https://setsquare.itch.io/dungeon-tactics-advance"),
};
4 changes: 4 additions & 0 deletions website/agb/src/app/showcase/games.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import { Purple } from "./data/tapir/purple/purple";
import { Hyperspace } from "./data/tapir/hyperspace/hyperspace";
import { Dungeon } from "./data/tapir/dungeon/dungeon";
import { Leviathan } from "./data/drawing-a-leviathan/leviathan";
import { Tactics } from "./data/tapir/tactics/tactics";
import { Khiera } from "./data/tapir/khiera/khiera";

export interface ShowcaseGame {
name: string;
Expand Down Expand Up @@ -33,4 +35,6 @@ export const Games: ShowcaseGame[] = shuffle([
Hyperspace,
Dungeon,
Leviathan,
Tactics,
Khiera,
]);

0 comments on commit 1a9d590

Please sign in to comment.