add drawing a leviathan

This commit is contained in:
Corwin 2024-04-30 21:28:30 +01:00
parent 737a1582dd
commit deba835a17
No known key found for this signature in database
5 changed files with 24 additions and 0 deletions

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

View file

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

View file

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