- 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>
37 lines
2.4 KiB
HTML
37 lines
2.4 KiB
HTML
```html
|
||
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Antagonists Chapter</title>
|
||
<link rel="stylesheet" href="book-page.css">
|
||
</head>
|
||
<body>
|
||
|
||
<h1>ANTAGONISTS</h1>
|
||
|
||
<p>This book’s fourth and final chapter delves into the creation of natural fantasy enemy NPCs – especially Villains. Game Masters can combine it with similar advice from the Core Rulebook (mostly from page 292 onwards) to plan riveting conflict scenes for all game levels. As usual, you can use the material as is or adapt it to your liking by following the advice below.</p>
|
||
|
||
<h2 id="natural-fantasy-villains">NATURAL FANTASY VILLAINS</h2>
|
||
<p>An introductory section containing tips and advice for creating and playing pivotal antagonists in the natural fantasy style.</p>
|
||
|
||
<h2 id="villain-examples">VILLAIN EXAMPLES</h2>
|
||
<p>Five different enemy NPCs – one each for levels 5, 10, 20, 30, and 40 – that make ideal natural fantasy Villains. For each, you’ll find this information:</p>
|
||
|
||
<ul>
|
||
<li><strong>History.</strong> The Villain’s base concept and possible backstory.</li>
|
||
<li><strong>Profile.</strong> The Villain’s statistics, as described on page 320 of the Core Rulebook.</li>
|
||
<li><strong>Tactics.</strong> The Villain’s preferred combat tactics.</li>
|
||
<li><strong>Extra content.</strong> One or more additional ideas, including tips for modifying the Villain’s profile, possible supporting enemies, and even additional phases (see Core Rulebook, page 301) that you can use during conflicts.</li>
|
||
</ul>
|
||
|
||
<p>These Villains were designed to spark the Game Master’s imagination and assume a group of 4 well-rounded PCs. Remember that some of their abilities might not conform to the standard cost for NPC Skills (see Core Rulebook, page 303) and that you’ll likely need to tweak these Villains before adding them to your campaign. To balance things out, consider your Player Characters’ capacities and then modify any opposing Affinities, immunities to status effects, damage types, or other parameters that could be frustrating to deal with or unsuitable for your group’s campaign.</p>
|
||
|
||
<div class="section-break">
|
||
<!-- This appears to be a footer/non-content element from the PDF scan -->
|
||
</div>
|
||
|
||
</body>
|
||
</html>
|
||
``` |