- Add html/index.html: book viewer with auto-discovering sidebar, prev/next navigation, keyboard shortcuts, and URL hash persistence - Add html/book-page.css: shared stylesheet for all book pages derived from fabula-ultima-sheet.css (dark theme, CSS variables, Cinzel/ Crimson Text fonts, common class styles) - Add book.js entry point so webpack injects the shared CSS into the book viewer; update webpack.config.js for two entry points, split CSS chunk, CopyWebpackPlugin for book pages, and /book dev server rewrite rule - Add scripts/strip_watermark.py: removes "Guest Customer (Order #52072168)" watermark artifacts from all 210 book pages - Add scripts/restyle_book.py: strips per-page <style> blocks and injects <link rel="stylesheet" href="book-page.css"> into all pages - Update Justfile deploy to scp -r dist/* for the new /book subtree Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
61 lines
2.7 KiB
HTML
61 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Magiseed Catalog</title>
|
|
<link rel="stylesheet" href="book-page.css">
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<h1>M A G I S E E D</h1>
|
|
<h2>A Comprehensive Catalog</h2>
|
|
</header>
|
|
|
|
<section id="protagonists">
|
|
<h3>Protagonists</h3>
|
|
<div class="grid-container">
|
|
<!-- HOOKLEAF NIGHTSHADE -->
|
|
<div class="seed-entry">
|
|
<span class="seed-title">HOOKLEAF NIGHTSHADE</span>
|
|
<p class="description">Its purplish berries contain a deadly magical venom.</p>
|
|
<div>
|
|
<span class="effect-header">T EFFECT</span>
|
|
<span class="effect-level">0-1:</span> All damage you deal becomes poison, its type cannot change, and it ignores Immunities and Resistances.
|
|
<span class="effect-level">2-3:</span> All damage you deal becomes poison, its type cannot change, and it ignores Immunities and Resistances. Additionally, when you deal poison damage for the first time during your turn, you deal extra damage equal to (your Skill Level in Chloromancy) and each creature that lost Hit Points this way suffers poisoned.
|
|
</div>
|
|
</div>
|
|
|
|
<!-- HORNED HAWTHORN -->
|
|
<div class="seed-entry">
|
|
<span class="seed-title">HORNED HAWTHORN</span>
|
|
<p class="description">Favored by witches and surgeons alike for its purifying properties.</p>
|
|
<div>
|
|
<span class="effect-header">T EFFECT</span>
|
|
<span class="effect-level">0-1:</span> You are Resistant to dark and poison damage.
|
|
<span class="effect-level">2-3:</span> You and your allies present on the scene are Resistant to dark and poison damage.
|
|
</div>
|
|
</div>
|
|
|
|
<!-- LUNAR MAGNOLIA -->
|
|
<div class="seed-entry">
|
|
<span class="seed-title">LUNAR MAGNOLIA</span>
|
|
<p class="description">It blooms in the darkest hours of the night.</p>
|
|
<div>
|
|
<span class="effect-header">T EFFECT</span>
|
|
<span class="effect-level">1-3:</span> At the end of your turn, choose ice or light. Until you use this effect again or this magiseed is no longer in your garden, all damage dealt by you and every ally present on the scene becomes the chosen type, its type cannot change, and it ignores Resistances.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<hr style="margin: 50px auto; width: 50%;">
|
|
|
|
<footer>
|
|
<h3>Recent Inquiries</h3>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|