mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
add drawing a leviathan
This commit is contained in:
parent
737a1582dd
commit
deba835a17
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
|
@ -0,0 +1,22 @@
|
||||||
|
import { ShowcaseGame, shuffle } from "@/app/showcase/games";
|
||||||
|
import l1 from "./drawing_a_leviathan-0.png";
|
||||||
|
import l2 from "./drawing_a_leviathan-1.png";
|
||||||
|
import l3 from "./drawing_a_leviathan-2.png";
|
||||||
|
|
||||||
|
const Screenshots = [l1, l2, l3];
|
||||||
|
|
||||||
|
export const Leviathan: ShowcaseGame = {
|
||||||
|
name: "Drawing a Leviathan",
|
||||||
|
developers: shuffle(["Constantin Lietard", "Clara Coolen"]),
|
||||||
|
screenshots: Screenshots,
|
||||||
|
description: (
|
||||||
|
<>
|
||||||
|
<p>
|
||||||
|
Tasked to document a mythical fish, you will first have to fund your
|
||||||
|
expedition to the bottom of the abyss by drawing less mysterious
|
||||||
|
creatures.
|
||||||
|
</p>
|
||||||
|
</>
|
||||||
|
),
|
||||||
|
itch: new URL("https://screenshake-farm.itch.io/drawing-a-leviathan"),
|
||||||
|
};
|
|
@ -4,6 +4,7 @@ import { HatWiz } from "./data/tapir/hatwiz/hatwiz";
|
||||||
import { Purple } from "./data/tapir/purple/purple";
|
import { Purple } from "./data/tapir/purple/purple";
|
||||||
import { Hyperspace } from "./data/tapir/hyperspace/hyperspace";
|
import { Hyperspace } from "./data/tapir/hyperspace/hyperspace";
|
||||||
import { Dungeon } from "./data/tapir/dungeon/dungeon";
|
import { Dungeon } from "./data/tapir/dungeon/dungeon";
|
||||||
|
import { Leviathan } from "./data/drawing-a-leviathan/leviathan";
|
||||||
|
|
||||||
export interface ShowcaseGame {
|
export interface ShowcaseGame {
|
||||||
name: string;
|
name: string;
|
||||||
|
@ -31,4 +32,5 @@ export const Games: ShowcaseGame[] = shuffle([
|
||||||
Purple,
|
Purple,
|
||||||
Hyperspace,
|
Hyperspace,
|
||||||
Dungeon,
|
Dungeon,
|
||||||
|
Leviathan,
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Reference in a new issue