add dungeon tactics and khieras quest (#773)

- [x]  no changelog update needed
This commit is contained in:
Corwin 2024-09-27 00:42:51 +01:00 committed by GitHub
commit 1a9d5901cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 59 additions and 0 deletions

View file

@ -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"),
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 KiB

View file

@ -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"),
};

View file

@ -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;
@ -33,4 +35,6 @@ export const Games: ShowcaseGame[] = shuffle([
Hyperspace,
Dungeon,
Leviathan,
Tactics,
Khiera,
]);