Idle/incremental game about a small circle of "bärare" weaving open a breach to Thön from a disused sawmill in Skellefteå, Sweden. Reskins the Djupet engine (passive resources, map-click visits, escalating events, win/lose meters) around Vildhjarta's mythology — masks, the Thörnepherian language, and a discoverable lore codex. Vanilla TypeScript + Vite + Leaflet, with generated key art, location art, and character portraits under public/img/.
16 lines
493 B
HTML
16 lines
493 B
HTML
<!doctype html>
|
|
<html lang="sv">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Thön</title>
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
|
|
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|