Files
jianghu-chronicles/index.html
T
deepseek 8680f79102 Initial commit — Jianghu Chronicles: Road of the Wandering Blade
Original open-world wuxia browser RPG:
- Graphical 48px tile world (12 locations) with walkable character,
  NPC interaction, action spots, roaming enemies, travel portals
- Tactical 10x7 grid battles: shapes, statuses, internals, 30+ techniques
  incl. tier-V ultimates & support arts across 6 weapon types
- Full equipment: weapon/head/body/feet/2 accessories, 5 tiers, smithing
- 6-chapter main story + side jobs board + bounty hunts + tournament
- Crafting (smith/alchemy), fishing minigame, gambling, pickpocketing
- Companions with chemistry passives, affection, romance, sects
- Achievements, monster codex, day/night cycle, endings
- 25-test headless smoke suite; no-cache static server included
2026-08-23 07:01:08 +00:00

49 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jianghu Chronicles — Road of the Wandering Blade</title>
<link rel="stylesheet" href="css/style.css?v=10">
</head>
<body>
<div id="app">
<!-- ===== TITLE SCREEN ===== -->
<section id="screen-title" class="screen">
<div class="title-inner">
<h1 class="game-logo">江湖 <span>Jianghu Chronicles</span></h1>
<p class="tagline">Road of the Wandering Blade — an open-world wuxia RPG</p>
<div class="title-menu" id="title-menu"></div>
<p class="fineprint">An original browser homage to classic open-world martial-arts RPGs.<br>All names, characters and stories herein are original works of fiction.</p>
</div>
</section>
<!-- ===== CHARACTER CREATION ===== -->
<section id="screen-create" class="screen" hidden></section>
<!-- ===== WORLD SCREEN ===== -->
<section id="screen-world" class="screen" hidden>
<header id="topbar"></header>
<nav id="tabs"></nav>
<main id="tabview"></main>
<footer><div id="log"></div></footer>
</section>
<!-- ===== OVERLAYS ===== -->
<div id="overlay" hidden></div>
<canvas id="fx-layer" width="10" height="10" hidden></canvas>
</div>
<script src="js/data.items.js?v=10"></script>
<script src="js/data.world.js?v=10"></script>
<script src="js/data.dialogues.js?v=10"></script>
<script src="js/engine.js?v=10"></script>
<script src="js/combat.js?v=10"></script>
<script src="js/game.js?v=10"></script>
<script src="js/world2d.js?v=10"></script>
<script src="js/ui.js?v=10"></script>
<script src="js/main.js?v=10"></script>
</body>
</html>