mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 00:01:34 +11:00
add dungeon tactics and khieras quest
This commit is contained in:
parent
f3d5590aff
commit
90ddf45a57
29
website/agb/src/app/showcase/data/tapir/khiera/khiera.tsx
Normal file
29
website/agb/src/app/showcase/data/tapir/khiera/khiera.tsx
Normal 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's quest is a platforming game about where the direction of
|
||||
gravity isn't always fixed. You'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 |
26
website/agb/src/app/showcase/data/tapir/tactics/tactics.tsx
Normal file
26
website/agb/src/app/showcase/data/tapir/tactics/tactics.tsx
Normal 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"),
|
||||
};
|
|
@ -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,
|
||||
]);
|
||||
|
|
Loading…
Reference in a new issue