-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add dungeon tactics and khieras quest (#773)
- [x] no changelog update needed
- Loading branch information
Showing
8 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'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"), | ||
}; |
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.
Binary file added
BIN
+3.56 KB
website/agb/src/app/showcase/data/tapir/tactics/dungeon-tactics-advance-0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4 KB
website/agb/src/app/showcase/data/tapir/tactics/dungeon-tactics-advance-1.png
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
26
website/agb/src/app/showcase/data/tapir/tactics/tactics.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"), | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters