Files
fabula-ultima-html/html/138.html
Drew Malzahn c75cd188c1 feat: Add book viewer at /book with shared design system
- 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>
2026-06-06 03:36:35 +00:00

112 lines
4.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Protagonists Index</title>
<link rel="stylesheet" href="book-page.css">
</head>
<body>
<div class="chapter-metadata">
Chapter 137 | Protagonists Index
</div>
<h1>THE KITCHEN BRIGADE</h1>
<p>“Despite the same world awaiting them, each would learn a different lesson from it.”</p>
<h2>Overview</h2>
<p>This group explores the Gourmet Class in many different ways: since each characters cookbook sheet is personal and independent, the same combinations yield different results depending on who uses them!</p>
<!-- CHARACTER CARD: DEEP-FRY ARTIST -->
<div class="character-card">
<h3 class="character-name">DEEP-FRY ARTIST</h3>
<span class="cost">70 zenit</span>
<div class="stats">
<strong>Attributes:</strong> Dexterity d8, Insight d8, Might d10, Willpower d6
</div>
<h4>Proficiencies & Skills</h4>
<ul>
<li><strong>Fury (1 level):</strong> Withstand</li>
<li><strong>Gourmet (2 levels):</strong> Cooking, Salt and Pepper</li>
<li><strong>Guardian (2 levels):</strong> Bodyguard, Protect</li>
</ul>
<div class="equipment-details">
<strong>Weapon:</strong> Wok shield (custom weapon)
<p>(DEX + MIG), brawling, melee, defense boost, elemental (fire), magic defense boost</p>
<strong>Gear:</strong> Bronze plate, silk shirt
</div>
</div>
<!-- CHARACTER CARD: INFUSION MASTER -->
<div class="character-card">
<h3 class="character-name">INFUSION MASTER</h3>
<span class="cost">170 zenit</span>
<div class="stats">
<strong>Attributes:</strong> Dexterity d8, Insight d8, Might d8, Willpower d8
</div>
<h4>Proficiencies & Skills</h4>
<ul>
<li><strong>Gourmet (2 levels):</strong> Cooking, Knife and Fork</li>
<li><strong>Sharpshooter (2 levels):</strong> Barrage, Ranged Weapon Mastery</li>
<li><strong>Tinkerer (1 level):</strong> Gadgets (Basic Infusions)</li>
</ul>
<div class="equipment-details">
<strong>Weapon:</strong> Kettle (custom weapon)
<p>(DEX + INS), firearm, ranged, accurate, magic defense boost, powerful</p>
<strong>Gear:</strong> Silk shirt
</div>
</div>
<!-- CHARACTER CARD: PICKLER -->
<div class="character-card">
<h3 class="character-name">PICKLER</h3>
<span class="cost">70 zenit</span>
<div class="stats">
<strong>Attributes:</strong> Dexterity d6, Insight d10, Might d8, Willpower d8
</div>
<h4>Proficiencies & Skills</h4>
<ul>
<li><strong>Entropist (1 level):</strong> Entropic Magic (Stop)</li>
<li><strong>Gourmet (2 levels):</strong> Cooking, Traveling Cook</li>
<li><strong>Merchant (2 levels):</strong> Private Stock, Winds of Trade</li>
</ul>
<div class="equipment-details">
<strong>Weapon:</strong> Blast chiller (custom weapon)
<p>(DEX + INS), dagger, melee, accurate, defense boost, elemental (ice)</p>
<strong>Gear:</strong> Sage robe
</div>
</div>
<!-- CHARACTER CARD: STREET COOK -->
<div class="character-card">
<h3 class="character-name">STREET COOK</h3>
<span class="cost">270 zenit</span>
<div class="stats">
<strong>Attributes:</strong> Dexterity d8, Insight d8, Might d6, Willpower d10
</div>
<h4>Proficiencies & Skills</h4>
<ul>
<li><strong>Gourmet (2 levels):</strong> Cooking, Made with Love</li>
<li><strong>Orator (2 levels):</strong> My Trust in You, Unexpected Ally</li>
<li><strong>Wayfarer (1 level):</strong> Tavern Talk</li>
</ul>
<div class="equipment-details">
<strong>Weapon:</strong> Staff (described as a fan!)
<strong>Gear:</strong> Sage robe
</div>
</div>
<div class="character-card" style="opacity: 0.8;">
</div>
</body>
</html>