add drawing a leviathan (#665)

This commit is contained in:
Corwin 2024-04-30 21:36:54 +01:00 committed by GitHub
commit 98c284a1c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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 { Hyperspace } from "./data/tapir/hyperspace/hyperspace";
import { Dungeon } from "./data/tapir/dungeon/dungeon";
import { Leviathan } from "./data/drawing-a-leviathan/leviathan";
export interface ShowcaseGame {
name: string;
@ -31,4 +32,5 @@ export const Games: ShowcaseGame[] = shuffle([
Purple,
Hyperspace,
Dungeon,
Leviathan,
]);