summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-12-31 17:48:54 -0700
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-12-31 17:48:54 -0700
commit7b11decd6a4b7f484ad35ae623941f21af7d31ec (patch)
tree4f8bf3280c48c94bd49d006a5d0149aa1f1bf2e4
parentc52557f0a969e539138b0fdd4d7dd25f8795b509 (diff)
More
-rw-r--r--.gitignore1
-rw-r--r--Makefile15
-rw-r--r--bin/page.html.erb28
-rw-r--r--src/DND/DND.css59
-rw-r--r--src/DND/PsionicSchools.css9
-rw-r--r--src/DND/PsionicSchools.org1
-rw-r--r--src/DND/Psionist.md (renamed from src/DND/Psionist.html)325
-rw-r--r--src/DND/SpellGauntlet.org3
-rw-r--r--src/DND/Tastavi.md (renamed from src/DND/Tastavi.html)514
-rw-r--r--src/main.css93
-rw-r--r--src/main.js3
-rw-r--r--src/main.scss126
-rw-r--r--src/tags.txt6
13 files changed, 227 insertions, 956 deletions
diff --git a/.gitignore b/.gitignore
index 6a3417b..e4dbb38 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/out/
+/www/
diff --git a/Makefile b/Makefile
index a9b703b..d8adb8a 100644
--- a/Makefile
+++ b/Makefile
@@ -16,26 +16,19 @@ html.src = $(shell find src -type f \( -false $(foreach s,$(html.suffixes), -o -
# Translate the source filenames into output filenames
html.out = $(call patsubst-all,$(addprefix src/%.,$(html.suffixes)),out/%.html,$(html.src))
-all: $(html.out)
+all: $(html.out) out/main.css
bin/page = bin/page bin/util.rb bin/pandoc.rb
-# We have to repeat each `src/% -> out/%` rule twice; where once we
-# write it as `out/% -> out/%`. This allows us to chain rules.
-
-# Markdown
out/%.html: src/%.md $(bin/page) bin/page.html.erb bin/write-atomic
mkdir -p $(@D)
bin/page html $< | bin/write-atomic $@
-out/%.html: out/%.md $(bin/page) bin/page.html.erb bin/write-atomic
- bin/page html $< | bin/write-atomic $@
-
-# Org-Mode
out/%.html: src/%.org $(bin/page) bin/page.html.erb bin/write-atomic
mkdir -p $(@D)
bin/page html $< | bin/write-atomic $@
-out/%.html: out/%.org $(bin/page) bin/page.html.erb bin/write-atomic
- bin/page html $< | bin/write-atomic $@
+out/%.css: src/%.scss
+ mkdir -p $(@D)
+ scss --stdin < $< > $@
#out/index.md : index index.md.erb .var.articles $(addsuffix .md,$(articles)) util.rb Makefile write-atomic
# ./index md $(filter %.md,$^) | ./write-atomic $@
diff --git a/bin/page.html.erb b/bin/page.html.erb
index 2dee55e..6f56573 100644
--- a/bin/page.html.erb
+++ b/bin/page.html.erb
@@ -8,21 +8,23 @@
<%= @page.head %>
</head>
<body>
- <header><%= @page.breadcrumbs %></header>
- <header id="logobar">
- <h1>Andrew DM</h1>
- <ul>
- <li><a href="">Projects</a></li>
- <li><a href="blahg/CHANGELOG.html"><abbr title="Blog">Blahg</abbr></a></li>
- <li><a href="Andrew.html">Andrew</a></li>
- <li>
- <form class="headerlink" method="GET" action="index.html#">
- <input id="search" style="hidden" type="text" name="searchbar" size="0" placeholder="Search" />
- </form>
- </li>
+ <header>
+ <h1>Andrew D. Murrell</h1>
+ <p><%= @page.breadcrumbs %></p>
+ <nav>
+ <ul>
+ <li><a href="/">Projects</a>
+ <li><a href="/blahg/CHANGELOG.html"><abbr title="Blog">Blahg</abbr></a>
+ <li><a href="/Andrew.html">Andrew</a>
+ <li>
+ <form method="GET" action="/search.html">
+ <input type=search name="s" placeholder="Search" /><input type=submit value="🔍" />
+ </form>
+ </ul>
+ </nav>
</header>
<article>
- <h1><%= @page.title %></h1>
+ <h1 class=title><%= @page.title %></h1>
<%= @page.content %>
</article>
<footer>
diff --git a/src/DND/DND.css b/src/DND/DND.css
new file mode 100644
index 0000000..b8cba44
--- /dev/null
+++ b/src/DND/DND.css
@@ -0,0 +1,59 @@
+/* This bit is taken from the defaults of org-mode export */
+
+html { font-family: Times, serif; font-size: 12pt; }
+.title { text-align: center; }
+.todo { color: red; }
+.done { color: green; }
+.tag { background-color: #add8e6; font-weight:normal }
+.target { }
+.timestamp { color: #bebebe; }
+.timestamp-kwd { color: #5f9ea0; }
+.right {margin-left:auto; margin-right:0px; text-align:right;}
+.left {margin-left:0px; margin-right:auto; text-align:left;}
+.center {margin-left:auto; margin-right:auto; text-align:center;}
+p.verse { margin-left: 3% }
+pre {
+ border: 1pt solid #AEBDCC;
+ background-color: #F3F5F7;
+ padding: 5pt;
+ font-family: courier, monospace;
+ font-size: 90%;
+ overflow:auto;
+}
+table { border-collapse: collapse; }
+td, th { vertical-align: top; }
+th.right { text-align:center; }
+th.left { text-align:center; }
+th.center { text-align:center; }
+td.right { text-align:right; }
+td.left { text-align:left; }
+td.center { text-align:center; }
+dt { font-weight: bold; }
+div.figure { padding: 0.5em; }
+div.figure p { text-align: center; }
+div.inlinetask {
+ padding:10px;
+ border:2px solid gray;
+ margin:10px;
+ background: #ffffcc;
+}
+textarea { overflow-x: auto; }
+.linenr { font-size:smaller }
+.code-highlighted {background-color:#ffff00;}
+.org-info-js_info-navigation { border-style:none; }
+#org-info-js_console-label { font-size:10px; font-weight:bold;
+ white-space:nowrap; }
+.org-info-js_search-highlight {background-color:#ffff00; color:#000000;
+ font-weight:bold; }
+
+/* Andrew wrote the following */
+
+body > article {
+ padding: 0px 16%;
+ width: 68%;
+}
+
+body {
+ background: url(Background.png) repeat-y;
+ background-size: 100%;
+}
diff --git a/src/DND/PsionicSchools.css b/src/DND/PsionicSchools.css
deleted file mode 100644
index b258cd1..0000000
--- a/src/DND/PsionicSchools.css
+++ /dev/null
@@ -1,9 +0,0 @@
-#content {
- padding: 0px 16%;
- width: 68%;
-}
-
-body {
- background: url(Background3.png) repeat-y;
- background-size: 100%;
-}
diff --git a/src/DND/PsionicSchools.org b/src/DND/PsionicSchools.org
index eb18786..2ce8e7a 100644
--- a/src/DND/PsionicSchools.org
+++ b/src/DND/PsionicSchools.org
@@ -1,4 +1,5 @@
#+TITLE: Schools of Psionics
+#+HTML_HEAD_EXTRA: <link rel="stylesheet" href="DND.css">
From what I've seen, the most recent few 5e Unearthed Arcana dealing
with "Psionics and the Mystic" have been getting somewhat mixed
diff --git a/src/DND/Psionist.html b/src/DND/Psionist.md
index f6aedfb..ea21a9f 100644
--- a/src/DND/Psionist.html
+++ b/src/DND/Psionist.md
@@ -1,124 +1,8 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-<head>
-<title>Psionist</title>
-<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
-<meta name="title" content="Psionist"/>
-<meta name="generator" content="Org-mode"/>
-<meta name="generated" content="2016-07-16T21:01-0400"/>
-<meta name="author" content="Andrew Murrell"/>
-<meta name="description" content=""/>
-<meta name="keywords" content=""/>
-<style type="text/css">
- <!--/*--><![CDATA[/*><!--*/
- html { font-family: Times, serif; font-size: 12pt; }
- .title { text-align: center; }
- .todo { color: red; }
- .done { color: green; }
- .tag { background-color: #add8e6; font-weight:normal }
- .target { }
- .timestamp { color: #bebebe; }
- .timestamp-kwd { color: #5f9ea0; }
- .right {margin-left:auto; margin-right:0px; text-align:right;}
- .left {margin-left:0px; margin-right:auto; text-align:left;}
- .center {margin-left:auto; margin-right:auto; text-align:center;}
- p.verse { margin-left: 3% }
- pre {
- border: 1pt solid #AEBDCC;
- background-color: #F3F5F7;
- padding: 5pt;
- font-family: courier, monospace;
- font-size: 90%;
- overflow:auto;
- }
- table { border-collapse: collapse; }
- td, th { vertical-align: top; }
- th.right { text-align:center; }
- th.left { text-align:center; }
- th.center { text-align:center; }
- td.right { text-align:right; }
- td.left { text-align:left; }
- td.center { text-align:center; }
- dt { font-weight: bold; }
- div.figure { padding: 0.5em; }
- div.figure p { text-align: center; }
- div.inlinetask {
- padding:10px;
- border:2px solid gray;
- margin:10px;
- background: #ffffcc;
- }
- textarea { overflow-x: auto; }
- .linenr { font-size:smaller }
- .code-highlighted {background-color:#ffff00;}
- .org-info-js_info-navigation { border-style:none; }
- #org-info-js_console-label { font-size:10px; font-weight:bold;
- white-space:nowrap; }
- .org-info-js_search-highlight {background-color:#ffff00; color:#000000;
- font-weight:bold; }
- #content { padding: 0px 16%; width: 68%; }
- body { background: url(Background3.png) repeat-y; background-size: 100%;}
- /*]]>*/-->
-</style>
-<script type="text/javascript">
-/*
-@licstart The following is the entire license notice for the
-JavaScript code in this tag.
-
-Copyright (C) 2012-2013 Free Software Foundation, Inc.
-
-The JavaScript code in this tag is free software: you can
-redistribute it and/or modify it under the terms of the GNU
-General Public License (GNU GPL) as published by the Free Software
-Foundation, either version 3 of the License, or (at your option)
-any later version. The code is distributed WITHOUT ANY WARRANTY;
-without even the implied warranty of MERCHANTABILITY or FITNESS
-FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
-
-As additional permission under GNU GPL version 3 section 7, you
-may distribute non-source (e.g., minimized or compacted) forms of
-that code without the copy of the GNU GPL normally required by
-section 4, provided you include this license notice and a URL
-through which recipients can access the Corresponding Source.
-
-
-@licend The above is the entire license notice
-for the JavaScript code in this tag.
-*/
-<!--/*--><![CDATA[/*><!--*/
- function CodeHighlightOn(elem, id)
- {
- var target = document.getElementById(id);
- if(null != target) {
- elem.cacheClassElem = elem.className;
- elem.cacheClassTarget = target.className;
- target.className = "code-highlighted";
- elem.className = "code-highlighted";
- }
- }
- function CodeHighlightOff(elem, id)
- {
- var target = document.getElementById(id);
- if(elem.cacheClassElem)
- elem.className = elem.cacheClassElem;
- if(elem.cacheClassTarget)
- target.className = elem.cacheClassTarget;
- }
-/*]]>*///-->
-</script>
-
-</head>
-<body>
-
-<div id="preamble">
-
-</div>
-
-<div id="content">
-<h1 class="title">Psionist</h1>
-
+---
+title: "Psionist"
+date: "2016-07-16T21:01-0400"
+html_head_extra: "<link rel=stylesheet href=DND.css>"
+---
<div id="table-of-contents">
<h2>Table of Contents</h2>
@@ -170,12 +54,9 @@ for the JavaScript code in this tag.
</ul>
</div>
</div>
-
<div id="outline-container-1" class="outline-2">
<h2 id="sec-1"><span class="section-number-2">1</span> Introduction to the Psionist Class [5e]</h2>
<div class="outline-text-2" id="text-1">
-
-
<p>
Because the power of psionics is vast but strange, over the eons many
have learned to harness its power in wildly different ways. From
@@ -196,14 +77,10 @@ The following is a complete 5th edition class with options for
creating the most common archetypes of psionic manifesters.<sup><a class="footref" name="fnr-.2" href="#fn-.2">2</a></sup>
</p>
</div>
-
</div>
-
<div id="outline-container-2" class="outline-2">
<h2 id="sec-2"><span class="section-number-2">2</span> The Psionist</h2>
<div class="outline-text-2" id="text-2">
-
-
<p>
A robed man watches the bar from a dark corner, carefully reading
minds and waiting for a certain noble to step past the line of
@@ -243,13 +120,10 @@ adventure.
<p>
As a Psionist, you gain the following class features.
</p>
-
</div>
-
<div id="outline-container-2-1" class="outline-3">
<h3 id="sec-2-1"><span class="section-number-3">2.1</span> Hit Points</h3>
<div class="outline-text-3" id="text-2-1">
-
<ul>
<li><b>Hit Dice</b>: 1d6 per psionist level
</li>
@@ -258,15 +132,11 @@ As a Psionist, you gain the following class features.
<li><b>Hit Points at Higher Levels</b>: 1d6 (or 4) + your Constitution modifier per psionist level after 1st
</li>
</ul>
-
</div>
-
</div>
-
<div id="outline-container-2-2" class="outline-3">
<h3 id="sec-2-2"><span class="section-number-3">2.2</span> Proficiencies</h3>
<div class="outline-text-3" id="text-2-2">
-
<ul>
<li><b>Armor</b>: Light armor
</li>
@@ -280,16 +150,11 @@ As a Psionist, you gain the following class features.
Investigation, Medicine, Perception, or Religion
</li>
</ul>
-
-
</div>
-
</div>
-
<div id="outline-container-2-3" class="outline-3">
<h3 id="sec-2-3"><span class="section-number-3">2.3</span> Equipment</h3>
<div class="outline-text-3" id="text-2-3">
-
<p>You start with the following equipment, in addition to the equipment
granted by your background:
</p>
@@ -303,17 +168,11 @@ granted by your background:
<li>(a) a scholar's pack or (b) an explorer's pack
</li>
</ul>
-
-
</div>
-
</div>
-
<div id="outline-container-2-4" class="outline-3">
<h3 id="sec-2-4"><span class="section-number-3">2.4</span> Psionist Class Progression Table</h3>
<div class="outline-text-3" id="text-2-4">
-
-
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup><col class="right" /><col class="right" /><col class="left" /><col class="right" /><col class="left" /><col class="right" /><col class="right" />
</colgroup>
@@ -345,17 +204,11 @@ granted by your background:
<tr><td class="right">20</td><td class="right">+6</td><td class="left"><a href="#sec-2-10">Perfect Mind</a></td><td class="right">133</td><td class="left">9th</td><td class="right">5</td><td class="right">17</td></tr>
</tbody>
</table>
-
-
</div>
-
</div>
-
<div id="outline-container-2-5" class="outline-3">
<h3 id="sec-2-5"><span class="section-number-3">2.5</span> Mind Powers</h3>
<div class="outline-text-3" id="text-2-5">
-
-
<p>
All Psionic abilities except those that cast spells are mind
powers. Intelligence is your psionic ability for your mind
@@ -372,16 +225,10 @@ explicit cost associated with them or are consumed.
eighth, and one ninth level power per day.
</li>
</ul>
-
-
-
</div>
-
<div id="outline-container-2-5-1" class="outline-4">
<h4 id="sec-2-5-1"><span class="section-number-4">2.5.1</span> Psi Points</h4>
<div class="outline-text-4" id="text-2-5-1">
-
-
<p>
Psi points represent a Psionist's pool of mental energy. It expands as
she gains levels in the Psionist class and becomes more powerful. When
@@ -406,20 +253,14 @@ table below.
<tr><td class="right">9</td><td class="right">13</td></tr>
</tbody>
</table>
-
-
<p>
All spent psi points are recovered after a long rest.
</p>
</div>
-
</div>
-
<div id="outline-container-2-5-2" class="outline-4">
<h4 id="sec-2-5-2"><span class="section-number-4">2.5.2</span> Psionic Ability</h4>
<div class="outline-text-4" id="text-2-5-2">
-
-
<p>
<b>Mind Powers Save DC</b> = 8 + your proficiency bonus + your Intelligence
modifier
@@ -430,14 +271,10 @@ Intelligence modifier
</p>
</div>
</div>
-
</div>
-
<div id="outline-container-2-6" class="outline-3">
<h3 id="sec-2-6"><span class="section-number-3">2.6</span> Thought Sensitivity</h3>
<div class="outline-text-3" id="text-2-6">
-
-
<p>
As a Psionist, you are attuned to the thoughts and feelings of
others, as well as the concentration of psionic energy in an area.
@@ -460,17 +297,11 @@ others, as well as the concentration of psionic energy in an area.
having its mind read.
</li>
</ul>
-
-
</div>
-
</div>
-
<div id="outline-container-2-7" class="outline-3">
<h3 id="sec-2-7"><span class="section-number-3">2.7</span> Psionic Blast</h3>
<div class="outline-text-3" id="text-2-7">
-
-
<p>
As an action, you may attempt to use your mastery of psionics to deal
psychic damage to a living target you can see within 60 feet of you.
@@ -483,14 +314,10 @@ Power Attack Modifier on this saving throw they are stunned until your
next round.
</p>
</div>
-
</div>
-
<div id="outline-container-2-8" class="outline-3">
<h3 id="sec-2-8"><span class="section-number-3">2.8</span> Spellmind</h3>
<div class="outline-text-3" id="text-2-8">
-
-
<p>
By interacting with magic in the world, and the knowledge of those who
manipulate it, you learn to alter your state of mind to allow yourself
@@ -514,28 +341,20 @@ Spellmind with another spell of the same level (it doesn't have to be
from the same class spell list).
</p>
</div>
-
</div>
-
<div id="outline-container-2-9" class="outline-3">
<h3 id="sec-2-9"><span class="section-number-3">2.9</span> Psionic Disciplines</h3>
<div class="outline-text-3" id="text-2-9">
-
-
<p>
Psionic Disciplines represent the ways in which Psionists interact
with the Psionic Field and manifest their powers. You select a
discipline at 3rd level and it grants sequential access tiers of
abilities at 3rd, 6th, 9th, 14th, and 18th levels.
</p>
-
</div>
-
<div id="outline-container-2-9-1" class="outline-4">
<h4 id="sec-2-9-1"><span class="section-number-4">2.9.1</span> Inquisitor</h4>
<div class="outline-text-4" id="text-2-9-1">
-
-
<p>
Inquisitors read thoughts and auras, learn skills, and draw power from
the minds of others. A master Inquisitor in a crowd of people is
@@ -553,7 +372,6 @@ bonus for Intelligence saving throws.
</p>
<ul>
<li id="sec-2-9-1-1"><b>Detective</b><br/>
-
<p>
<b>Improved Thought Sensitivity</b>: You no longer are disadvantaged by
swarming crowds of people, in fact, you have grown to excel in such
@@ -573,7 +391,6 @@ increases to a +4 bonus.
</ul>
<ul>
<li id="sec-2-9-1-2"><b>Melder</b><br/>
-
<p>
<b>Mind Meld</b>: As an action, you may touch a creature with an
Intelligence of 5 or greater and attempt to meld your consciousnesses
@@ -603,7 +420,6 @@ effect ends when you cease concentrating on it.
</ul>
<ul>
<li id="sec-2-9-1-3"><b>Mimic</b><br/>
-
<p>
<b>Mimic Skill</b>: You tap into the minds of those around you to
temporarily learn skills and proficiencies. You may target a creature
@@ -618,7 +434,6 @@ short rest.
</ul>
<ul>
<li id="sec-2-9-1-4"><b>Tactician</b><br/>
-
<p>
<b>Tactician</b>: You learn to relay sensory information and plans to and
from those around you. When determining if you can see a creature or
@@ -635,7 +450,6 @@ hour.
</ul>
<ul>
<li id="sec-2-9-1-5"><b>Imperator</b><br/>
-
<p>
<b>One With All</b>: You thrive in areas of high density psionic
energy. Once per long rest, if you are within 60 feet of 20 or more
@@ -649,14 +463,10 @@ you manifest it (maximum 1 hour).
</li>
</ul>
</div>
-
</div>
-
<div id="outline-container-2-9-2" class="outline-4">
<h4 id="sec-2-9-2"><span class="section-number-4">2.9.2</span> Kineticist</h4>
<div class="outline-text-4" id="text-2-9-2">
-
-
<p>
Kineticists alter the physical world by extending the conception of
self to encompass their surroundings. A master Kineticist can lift a
@@ -675,7 +485,6 @@ respectively.
</p>
<ul>
<li id="sec-2-9-2-1"><b>Enhanced Self</b><br/>
-
<p>
<b>Wall Walk</b>: You may travel up vertical surfaces as if they were
difficult terrain.
@@ -690,7 +499,6 @@ to approach you until your next turn.
</ul>
<ul>
<li id="sec-2-9-2-2"><b>Extended Self</b><br/>
-
<p>
<b>Kinematics</b>: You learn the Minor Kinematics Cantrip with the slight
differences noted below. It does not count against the number of
@@ -715,7 +523,6 @@ activate a magic item using the Minor Kinematics cantrip.
</ul>
<ul>
<li id="sec-2-9-2-3"><b>Kineticist</b><br/>
-
<p>
<b>Improved Levitation</b>: You may manifest the second level psionic power
Levitation at will without expending psi points.
@@ -727,7 +534,6 @@ Levitation at will without expending psi points.
</ul>
<ul>
<li id="sec-2-9-2-4"><b>Master Kineticist</b><br/>
-
<p>
<b>Phasing</b>: Once per short rest, as an action on your turn, you may
spend a psi point to become intangible until your next turn. You may
@@ -744,7 +550,6 @@ cannot continue to function or your brain is destroyed, you die.
</ul>
<ul>
<li id="sec-2-9-2-5"><b>Kinetic Avatar</b><br/>
-
<p>
<b>Kinetic Avatar</b>: You extend your sense of self into the world around
you, animating and controlling objects and structures in your
@@ -767,19 +572,13 @@ armor. The effect lasts for 1 minute.
points. The animated objects can fly.
</li>
</ul>
-
-
</li>
</ul>
</div>
-
</div>
-
<div id="outline-container-2-9-3" class="outline-4">
<h4 id="sec-2-9-3"><span class="section-number-4">2.9.3</span> Metapsionist</h4>
<div class="outline-text-4" id="text-2-9-3">
-
-
<p>
Metapsionists can alter minds and bodies to concentrate or disperse
psionic energy and effects. A master Metapsionist can shapeshift,
@@ -797,7 +596,6 @@ reaching 6th, 10th, 14th, and 18th levels respectively.
</p>
<ul>
<li id="sec-2-9-3-1"><b>Awakened</b><br/>
-
<p>
<b>Psionic Blade Ward</b>: You learn to ready your body to withstand
damaging strikes. As a bonus action, you may spend a psi point to
@@ -812,7 +610,6 @@ regain a number of psi points equal to your Psionist level (up to 9).
</ul>
<ul>
<li id="sec-2-9-3-2"><b>Empowered</b><br/>
-
<p>
<b>Psionic Restoration</b>: Once per long rest at the start of your turn,
you may remove a mind-altering condition from yourself. Alternatively,
@@ -823,7 +620,6 @@ you touch. These may be Charmed or Frightened.
</ul>
<ul>
<li id="sec-2-9-3-3"><b>Metapsionist</b><br/>
-
<p>
<b>Grant Psionics</b>: Once per long rest as an action you plant a seed of
psionic ability in a willing creature you touch. For 24 hours they
@@ -839,7 +635,6 @@ psionic abilities.
</ul>
<ul>
<li id="sec-2-9-3-4"><b>Living Mind</b><br/>
-
<p>
<b>Spell Mimicry</b> When you observe an arcane spell being cast by an
individual within 10 feet of you, you may use your reaction to attempt
@@ -867,7 +662,6 @@ the imprint.
</ul>
<ul>
<li id="sec-2-9-3-5"><b>Psionic Soul</b><br/>
-
<p>
<b>Diminish/Enhance Psionics</b>: You have learned the deep secrets of the
Hidden Art. When you or a creature you can see manifests a psionic
@@ -896,22 +690,16 @@ apply one of the following effects to modify it as a reaction.
being manifested).
</li>
</ul>
-
-
<p>
You may use this ability once per short rest.
</p>
</li>
</ul>
</div>
-
</div>
-
<div id="outline-container-2-9-4" class="outline-4">
<h4 id="sec-2-9-4"><span class="section-number-4">2.9.4</span> Mind Master</h4>
<div class="outline-text-4" id="text-2-9-4">
-
-
<p>
Mind Masters exert their will directly upon the minds of others. A
master Mind Master can dominate and imprison the minds of others and
@@ -930,7 +718,6 @@ respectively.
</p>
<ul>
<li id="sec-2-9-4-1"><b>Powerful Mind</b><br/>
-
<p>
<b>Deep Suggestion</b>: You may manifest the second level mind power
Suggestion once per long rest without expending any psi points. When
@@ -940,7 +727,6 @@ you do, the creature you target has disadvantage on the saving throw.
</ul>
<ul>
<li id="sec-2-9-4-2"><b>Dominating Mind</b><br/>
-
<p>
<b>Impose Will</b>: Once per short rest, you may cause a creature making a
saving throw against one of your mind powers, abilities, or your
@@ -953,7 +739,6 @@ finish a long rest.
</ul>
<ul>
<li id="sec-2-9-4-3"><b>Transcendent Mind</b><br/>
-
<p>
<b>Psychic Potency</b>: When you deal psychic damage to a target that is
stunned, you deal an additional amount of damage equal to twice your
@@ -976,7 +761,6 @@ this feature again on a different target or die.
</ul>
<ul>
<li id="sec-2-9-4-4"><b>Mind-Slaver</b><br/>
-
<p>
<b>Enslave</b>: Once per long rest as an action you may target a creature
you can see within 30 feet of you. The target must succeed on a Wisdom
@@ -992,7 +776,6 @@ repeat the saving throw when it is at least one mile away from you.
</ul>
<ul>
<li id="sec-2-9-4-5"><b>Imprisoner</b><br/>
-
<p>
<b>Imprisonment</b>: You learn the 9th level Wizard spell Imprisonment as a
ninth level mind power. It does not count against the number of powers
@@ -1010,14 +793,10 @@ this way at a time.
</li>
</ul>
</div>
-
</div>
-
<div id="outline-container-2-9-5" class="outline-4">
<h4 id="sec-2-9-5"><span class="section-number-4">2.9.5</span> Ascendant</h4>
<div class="outline-text-4" id="text-2-9-5">
-
-
<p>
Ascendants feel the pull of psionic energy from other planes and
dimensions and can learn to manipulate the fabric of reality. A master
@@ -1036,7 +815,6 @@ Tiers upon reaching 6th, 10th, 14th, and 18th levels respectively.
</p>
<ul>
<li id="sec-2-9-5-1"><b>Astral Apporter</b><br/>
-
<p>
<b>Astral Armor</b>: As an action, you may conjure a coating of astral
matter which covers the skin. This coating lasts for 1 hour and
@@ -1051,7 +829,6 @@ blinded until your next turn.
</ul>
<ul>
<li id="sec-2-9-5-2"><b>Planar Adept</b><br/>
-
<p>
<b>Call Energy</b>: You feel the cosmic pull of the planes of Positive and
Negative Energy. Once per long rest, as an action you may cover an
@@ -1068,7 +845,6 @@ longer than a minute.
</ul>
<ul>
<li id="sec-2-9-5-3"><b>Ascendant</b><br/>
-
<p>
<b>Planar Abjuration</b>: As a reaction to a spell or effect within 30 ft
of you that would deal fire, cold, lightning, thunder, radiant, or
@@ -1092,7 +868,6 @@ unoccupied space from where it left.
</ul>
<ul>
<li id="sec-2-9-5-4"><b>Shaper</b><br/>
-
<p>
<b>Conjure Astral Construct</b>: Once per long rest, as an action, you may
create an Astral construct from Astral matter pulled from the Astral
@@ -1127,13 +902,10 @@ choose the same option more than once):
<li>+1 AC
</li>
</ul>
-
-
</li>
</ul>
<ul>
<li id="sec-2-9-5-5"><b>Master of the Planes</b><br/>
-
<p>
<b>Whitefire Portal</b>: You burn a temporary hole through the Astral Plane
and into another plane of your choice. Once per long rest, centered on
@@ -1155,14 +927,10 @@ elemental or energy type.
</ul>
</div>
</div>
-
</div>
-
<div id="outline-container-2-10" class="outline-3">
<h3 id="sec-2-10"><span class="section-number-3">2.10</span> Perfect Mind</h3>
<div class="outline-text-3" id="text-2-10">
-
-
<p>
Over years of study and experience in the Hidden Art, you have
mastered the use of your most powerful psionic powers. The restriction
@@ -1171,21 +939,14 @@ seventh level powers.
</p>
</div>
</div>
-
</div>
-
<div id="outline-container-3" class="outline-2">
<h2 id="sec-3"><span class="section-number-2">3</span> Mind Powers</h2>
<div class="outline-text-2" id="text-3">
-
-
</div>
-
<div id="outline-container-3-1" class="outline-3">
<h3 id="sec-3-1"><span class="section-number-3">3.1</span> Basic Mind Powers (Cantrips)</h3>
<div class="outline-text-3" id="text-3-1">
-
-
<p>
At first level, you learn three basic mind powers (cantrips) of your
choice from the following list. If a mind power shares the name of a
@@ -1212,8 +973,6 @@ the list.
<tr><td class="left">Vicious Mockery</td></tr>
</tbody>
</table>
-
-
<p>
<b>Minor Kinematics</b> - <i>Psionic Evocation Cantrip</i>
</p>
@@ -1241,14 +1000,10 @@ attempt to manifest it more times than that, then all items regain
their normal weight and fall to the ground.
</p>
</div>
-
</div>
-
<div id="outline-container-3-2" class="outline-3">
<h3 id="sec-3-2"><span class="section-number-3">3.2</span> First Level Mind Powers</h3>
<div class="outline-text-3" id="text-3-2">
-
-
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup><col class="left" />
</colgroup>
@@ -1280,8 +1035,6 @@ their normal weight and fall to the ground.
<tr><td class="left">Unseen Servant</td></tr>
</tbody>
</table>
-
-
<p>
<b>Aura Reading</b> - <i>2nd Level Psionic Divination</i>
</p>
@@ -1322,14 +1075,10 @@ hours, 3rd level: 4 hours, 4th level: 8 hours, 5th or higher: 24
hours.
</p>
</div>
-
</div>
-
<div id="outline-container-3-3" class="outline-3">
<h3 id="sec-3-3"><span class="section-number-3">3.3</span> Second Level Mind Powers</h3>
<div class="outline-text-3" id="text-3-3">
-
-
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup><col class="left" />
</colgroup>
@@ -1366,8 +1115,6 @@ hours.
<tr><td class="left">Zone of Truth</td></tr>
</tbody>
</table>
-
-
<p>
<b>Psychometry</b> - <i>2nd Level Psionic Divination</i>
</p>
@@ -1390,14 +1137,10 @@ near the object but cannot move away from the point of view of the
object.
</p>
</div>
-
</div>
-
<div id="outline-container-3-4" class="outline-3">
<h3 id="sec-3-4"><span class="section-number-3">3.4</span> Third Level Mind Powers</h3>
<div class="outline-text-3" id="text-3-4">
-
-
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup><col class="left" />
</colgroup>
@@ -1423,8 +1166,6 @@ object.
<tr><td class="left">Water Walk</td></tr>
</tbody>
</table>
-
-
<p>
<b>Mind Bolt</b> - <i>3rd Level Psionic Evocation</i>
</p>
@@ -1450,14 +1191,10 @@ end of each of its turns, ending the effect on itself on a success.
1d8.
</p>
</div>
-
</div>
-
<div id="outline-container-3-5" class="outline-3">
<h3 id="sec-3-5"><span class="section-number-3">3.5</span> Fourth Level Mind Powers</h3>
<div class="outline-text-3" id="text-3-5">
-
-
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup><col class="left" />
</colgroup>
@@ -1481,8 +1218,6 @@ end of each of its turns, ending the effect on itself on a success.
<tr><td class="left">Stoneskin</td></tr>
</tbody>
</table>
-
-
<p>
<b>Empower Object</b>: <i>Fourth Level Psionic Transmutation</i>
</p>
@@ -1506,14 +1241,10 @@ or takes 8d8 force damage or half as much on a successful one. A
creature carrying the object has disadvantage on this saving throw.
</p>
</div>
-
</div>
-
<div id="outline-container-3-6" class="outline-3">
<h3 id="sec-3-6"><span class="section-number-3">3.6</span> Fifth Level Mind Powers</h3>
<div class="outline-text-3" id="text-3-6">
-
-
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup><col class="left" />
</colgroup>
@@ -1540,17 +1271,11 @@ creature carrying the object has disadvantage on this saving throw.
<tr><td class="left">Wall of Force</td></tr>
</tbody>
</table>
-
-
</div>
-
</div>
-
<div id="outline-container-3-7" class="outline-3">
<h3 id="sec-3-7"><span class="section-number-3">3.7</span> Sixth Level Mind Powers</h3>
<div class="outline-text-3" id="text-3-7">
-
-
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup><col class="left" />
</colgroup>
@@ -1568,17 +1293,11 @@ creature carrying the object has disadvantage on this saving throw.
<tr><td class="left">Wind Walk</td></tr>
</tbody>
</table>
-
-
</div>
-
</div>
-
<div id="outline-container-3-8" class="outline-3">
<h3 id="sec-3-8"><span class="section-number-3">3.8</span> Seventh Level Mind Powers</h3>
<div class="outline-text-3" id="text-3-8">
-
-
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup><col class="left" />
</colgroup>
@@ -1594,17 +1313,11 @@ creature carrying the object has disadvantage on this saving throw.
<tr><td class="left">Teleport</td></tr>
</tbody>
</table>
-
-
</div>
-
</div>
-
<div id="outline-container-3-9" class="outline-3">
<h3 id="sec-3-9"><span class="section-number-3">3.9</span> Eighth Level Mind Powers</h3>
<div class="outline-text-3" id="text-3-9">
-
-
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup><col class="left" />
</colgroup>
@@ -1621,8 +1334,6 @@ creature carrying the object has disadvantage on this saving throw.
<tr><td class="left">Telepathy</td></tr>
</tbody>
</table>
-
-
<p>
<b>Ghost Form</b> - <i>8th Level Psionic Transmutation</i>
</p>
@@ -1674,14 +1385,10 @@ damage to that creature or object. While the Barrier surrounds you,
you may not take any other actions, but can move normally.
</p>
</div>
-
</div>
-
<div id="outline-container-3-10" class="outline-3">
<h3 id="sec-3-10"><span class="section-number-3">3.10</span> Ninth Level Mind Powers</h3>
<div class="outline-text-3" id="text-3-10">
-
-
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup><col class="left" />
</colgroup>
@@ -1697,8 +1404,6 @@ you may not take any other actions, but can move normally.
<tr><td class="left">Wish</td></tr>
</tbody>
</table>
-
-
<p>
<b>Transfer Wounds</b> - <i>9th Level Evocation</i>
</p>
@@ -1747,14 +1452,10 @@ you.
</p>
</div>
</div>
-
</div>
-
<div id="outline-container-4" class="outline-2">
<h2 id="sec-4"><span class="section-number-2">4</span> Thanks</h2>
<div class="outline-text-2" id="text-4">
-
-
<p>
I'd like to thank all of the creators of proper D&amp;D Psionics from
every edition, as well as contributors to other systems like
@@ -1793,26 +1494,10 @@ versa. There is one important exception to this rule. A psionic effect
may allow a creature to cast a spell by teaching them to manipulate
the Weave.
</p>
-
-
<p class="footnote"><sup><a class="footnum" name="fn-.2" href="#fnr-.2">2</a></sup> In designing this class, the key design ideals were 1)
Flavor, 2) Fun, 3) 5e Rules and Design Consistency, and 4) Balance.
</p>
-
-
-</div>
-</div>
-
</div>
</div>
</div>
-
-<div id="postamble">
-<p class="date">Date: 2016-07-16T21:01-0400</p>
-<p class="author">Author: Andrew Murrell</p>
-<p class="creator"><a href="http://orgmode.org">Org</a> version 7.9.3f with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24</p>
-<a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a>
-
</div>
-</body>
-</html>
diff --git a/src/DND/SpellGauntlet.org b/src/DND/SpellGauntlet.org
index 22ff498..c647c7d 100644
--- a/src/DND/SpellGauntlet.org
+++ b/src/DND/SpellGauntlet.org
@@ -1,3 +1,6 @@
+#+TITLE: Spell Gauntlet
+#+HTML_HEAD_EXTRA: <link rel="stylesheet" href="DND.css">
+
* Teleport
** Wizard - ft. Ula Mindis
diff --git a/src/DND/Tastavi.html b/src/DND/Tastavi.md
index 199f8f4..20f8520 100644
--- a/src/DND/Tastavi.html
+++ b/src/DND/Tastavi.md
@@ -1,144 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
-"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-<head>
-<title>Tastavi D'Maelnor of Llolethane</title>
-<!-- 2016-08-30 Tue 23:56 -->
-<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
-<meta name="generator" content="Org-mode" />
-<meta name="author" content="Andrew Murrell" />
-<style type="text/css">
- <!--/*--><![CDATA[/*><!--*/
- .title { text-align: center; }
- .todo { font-family: monospace; color: red; }
- .done { color: green; }
- .tag { background-color: #eee; font-family: monospace;
- padding: 2px; font-size: 80%; font-weight: normal; }
- .timestamp { color: #bebebe; }
- .timestamp-kwd { color: #5f9ea0; }
- .right { margin-left: auto; margin-right: 0px; text-align: right; }
- .left { margin-left: 0px; margin-right: auto; text-align: left; }
- .center { margin-left: auto; margin-right: auto; text-align: center; }
- .underline { text-decoration: underline; }
- #postamble p, #preamble p { font-size: 90%; margin: .2em; }
- p.verse { margin-left: 3%; }
- pre {
- border: 1px solid #ccc;
- box-shadow: 3px 3px 3px #eee;
- padding: 8pt;
- font-family: monospace;
- overflow: auto;
- margin: 1.2em;
- }
- pre.src {
- position: relative;
- overflow: visible;
- padding-top: 1.2em;
- }
- pre.src:before {
- display: none;
- position: absolute;
- background-color: white;
- top: -10px;
- right: 10px;
- padding: 3px;
- border: 1px solid black;
- }
- pre.src:hover:before { display: inline;}
- pre.src-sh:before { content: 'sh'; }
- pre.src-bash:before { content: 'sh'; }
- pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
- pre.src-R:before { content: 'R'; }
- pre.src-perl:before { content: 'Perl'; }
- pre.src-java:before { content: 'Java'; }
- pre.src-sql:before { content: 'SQL'; }
-
- table { border-collapse:collapse; }
- caption.t-above { caption-side: top; }
- caption.t-bottom { caption-side: bottom; }
- td, th { vertical-align:top; }
- th.right { text-align: center; }
- th.left { text-align: center; }
- th.center { text-align: center; }
- td.right { text-align: right; }
- td.left { text-align: left; }
- td.center { text-align: center; }
- dt { font-weight: bold; }
- .footpara:nth-child(2) { display: inline; }
- .footpara { display: block; }
- .footdef { margin-bottom: 1em; }
- .figure { padding: 1em; }
- .figure p { text-align: center; }
- .inlinetask {
- padding: 10px;
- border: 2px solid gray;
- margin: 10px;
- background: #ffffcc;
- }
- #org-div-home-and-up
- { text-align: right; font-size: 70%; white-space: nowrap; }
- textarea { overflow-x: auto; }
- .linenr { font-size: smaller }
- .code-highlighted { background-color: #ffff00; }
- .org-info-js_info-navigation { border-style: none; }
- #org-info-js_console-label
- { font-size: 10px; font-weight: bold; white-space: nowrap; }
- .org-info-js_search-highlight
- { background-color: #ffff00; color: #000000; font-weight: bold; }
- /*]]>*/-->
-</style>
-<style type="text/css">#content { padding: 0px 25%; width: 50%; }</style>
-<script type="text/javascript">
-/*
-@licstart The following is the entire license notice for the
-JavaScript code in this tag.
-
-Copyright (C) 2012-2013 Free Software Foundation, Inc.
-
-The JavaScript code in this tag is free software: you can
-redistribute it and/or modify it under the terms of the GNU
-General Public License (GNU GPL) as published by the Free Software
-Foundation, either version 3 of the License, or (at your option)
-any later version. The code is distributed WITHOUT ANY WARRANTY;
-without even the implied warranty of MERCHANTABILITY or FITNESS
-FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
-
-As additional permission under GNU GPL version 3 section 7, you
-may distribute non-source (e.g., minimized or compacted) forms of
-that code without the copy of the GNU GPL normally required by
-section 4, provided you include this license notice and a URL
-through which recipients can access the Corresponding Source.
-
-
-@licend The above is the entire license notice
-for the JavaScript code in this tag.
-*/
-<!--/*--><![CDATA[/*><!--*/
- function CodeHighlightOn(elem, id)
- {
- var target = document.getElementById(id);
- if(null != target) {
- elem.cacheClassElem = elem.className;
- elem.cacheClassTarget = target.className;
- target.className = "code-highlighted";
- elem.className = "code-highlighted";
- }
- }
- function CodeHighlightOff(elem, id)
- {
- var target = document.getElementById(id);
- if(elem.cacheClassElem)
- elem.className = elem.cacheClassElem;
- if(elem.cacheClassTarget)
- target.className = elem.cacheClassTarget;
- }
-/*]]>*///-->
-</script>
-</head>
-<body>
-<div id="content">
-<h1 class="title">Tastavi D'Maelnor of Llolethane</h1>
+---
+title: "Tastavi D'Maelnor of Llolethane"
+date: "2016-08-30 Tue 23:56"
+html_head_extra: "<link rel=stylesheet href=DND.css>"
+---
<p>
When I DM, I try to allow players to have as many options for
@@ -146,7 +10,6 @@ character creation as I can. Usually, this manifests in pretty
interesting, but stable, characters. And other times&#x2026; you get
Tastavi.
</p>
-
<p>
Tastavi D'Maelnor of Lolathane-Mael'na'rath is not what I'd call a
stable character: a CN half-(drow)-elf half-(black)-dragon ftr/rog/war
@@ -154,7 +17,6 @@ hybrid sworn to an evil demigod who wants to swallow your dreams (and
possibly the sun and all life) and fleeing one hell of a custody
dispute.
</p>
-
<p>
But I fell in love with the idea. I had to write it up. It
started out as a three paragraph synopsis, but quickly devolved into
@@ -162,8 +24,6 @@ the micro-epic below. He was only played for three sessions before
dying to the most viscious and demanding opponent of all: sports
season. Enjoy!
</p>
-
-
<div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
@@ -199,7 +59,6 @@ season. Enjoy!
</ul>
</div>
</div>
-
<div id="outline-container-sec-1" class="outline-2">
<h2 id="sec-1"><span class="section-number-2">1</span> Ik'lithslaelith</h2>
<div class="outline-text-2" id="text-1">
@@ -211,13 +70,11 @@ from its obsidian hide. Too long had it slumbered here, content with
its wealth and glories of days long past. A yellow eye appeared inside
the chamber, burning with a delicate and powerful inner light.
</p>
-
<p>
The dragon Ik'lithslaelith was awake. And he was hungry.
</p>
</div>
</div>
-
<div id="outline-container-sec-2" class="outline-2">
<h2 id="sec-2"><span class="section-number-2">2</span> The Drowess</h2>
<div class="outline-text-2" id="text-2">
@@ -226,7 +83,6 @@ She walked nude across the parapet. Her onyx skin still glistened from her
bath and her long white hair hung loose about her shoulders. She eyed
the servants gathered along the tower's edge, daring them to look.
</p>
-
<p>
Most simply bowed humbly before her, inches from oblivion, knowing
full well the punishment. She reached the stair and snatched a
@@ -237,14 +93,12 @@ her power. Too long.
</p>
</div>
</div>
-
<div id="outline-container-sec-3" class="outline-2">
<h2 id="sec-3"><span class="section-number-2">3</span> The Tunnel</h2>
<div class="outline-text-2" id="text-3">
<p>
<i>This was not here when last I was.</i> mused the dragon.
</p>
-
<p>
He peered at the worked stone. Beneath his lair, along one of his
favorite underground flying paths, a circular tunnel disappeared into
@@ -253,35 +107,29 @@ any that strayed too far from the path's narrow ledge&#x2013;and could not
fly&#x2013;to be burned to fiery cinders upon a lake of boiling stone
below.
</p>
-
<p>
He had always found the cavern poetic: no matter how hard the little
climbers tried to rise, this was not their place. Their place was
among the ashes.
</p>
-
<p>
The newly hewn tunnel was far too small for him to squeeze into of
course. But one does not reach advanced age as a dragon without
learning a few tricks along the way.
</p>
-
<p>
<i>And one does not keep it by being over-curious either</i> he thought to
himself.
</p>
-
<p>
<i>But I suppose it cannot be helped.</i>
</p>
-
<p>
Ik'lithslaelith breathed a deep echoing sigh, closed his eyes, and
began to shrink.
</p>
</div>
</div>
-
<div id="outline-container-sec-4" class="outline-2">
<h2 id="sec-4"><span class="section-number-2">4</span> High Priestess Destiny</h2>
<div class="outline-text-2" id="text-4">
@@ -291,19 +139,15 @@ isolated corner of the massive complex of linked caves that comprised
the southern drow 'city' of Mael'na'rath, the layered structure
resembled a spiked claw rising from on oozing wound.
</p>
-
<p>
Grand, but hideous.
</p>
-
<p>
Grotesquely complicated, but functional.
</p>
-
<p>
In a word: Chaotic.
</p>
-
<p>
From the single gate at the base of the claw to the tips of the
fingers, every staircase was a spiral. Most with an open center so
@@ -313,7 +157,6 @@ steps to get anywhere, and so guards could fire upon intruders the
entire way up. Intruders who, would first need to bypass the acid
pools which surrounded the fortress.
</p>
-
<p>
High Priestess Ul'Ilindith D'Maelnor of the Second House of
Llolethane-Mael'na'rath decended through the main stair upon a cloud
@@ -325,7 +168,6 @@ expecting someone.
</p>
</div>
</div>
-
<div id="outline-container-sec-5" class="outline-2">
<h2 id="sec-5"><span class="section-number-2">5</span> Soup for Dinner</h2>
<div class="outline-text-2" id="text-5">
@@ -346,12 +188,10 @@ kinds of rare feelings recently. Her divination spell failed, as they
were oft to do since she had fallen in love. Terrified of her own
feelings, she knelt in fervent prayer to the Spider Queen.
</p>
-
<p>
Behind her from the tunnel, another dark figure crept close,
unnoticed, a silent hand of death in the land of silent death.
</p>
-
<p>
Perhaps her prayers were answered, or perhaps the Queen of Spiders
simply thought it amusing, but with a gasp and a rush of power, the
@@ -368,23 +208,19 @@ of grim amusement. The fangs had only barely scratched the surface of
his scales, and though sticky splotches of thick acidic pus covered
the point of impact, he seemed entirely unconcerned.
</p>
-
<p>
He responded in kind, spitting a line of black acid into her eyes and
face. She reeled backwards, clutching at her dissolving eyes, and fell
backwards into the bubbling pool.
</p>
-
<p>
The form approached the shallow pool.
</p>
-
<p>
"Looks like I'm having soup for dinner" mused Ik'lithslaelith.
</p>
</div>
</div>
-
<div id="outline-container-sec-6" class="outline-2">
<h2 id="sec-6"><span class="section-number-2">6</span> Hunger and Possibilities</h2>
<div class="outline-text-2" id="text-6">
@@ -402,14 +238,12 @@ control. She mused for a moment on the dangers, she could see them
clearly before her even, the fate in store if she made a wrong move,
or if he still hungered. But the possibilities&#x2026;
</p>
-
<p>
And perhaps, she mused, he hungered for drow in a way that could
benefit them both&#x2026;
</p>
</div>
</div>
-
<div id="outline-container-sec-7" class="outline-2">
<h2 id="sec-7"><span class="section-number-2">7</span> [CENSORED]</h2>
</div>
@@ -419,55 +253,46 @@ benefit them both&#x2026;
<p>
She saw a city burning.
</p>
-
<p>
She saw people screaming in pain and rolling upon the ground, trying
to wipe away the tar that ate at their fingers, at their faces.
</p>
-
<p>
She saw clerics casting frantic spells, only to have them fail in
their time of greatest need, abandoned by their goddess, and likewise
be consumed.
</p>
-
<p>
She saw her son.
</p>
-
<p>
Standing in the midst of it, unharmed, and smiling, wiping blood from
his blades. When the fires died, his yellow eyes were all that
remained in the darkness.
</p>
-
<p>
The vision departed and the brazier bore once again the droopy-eyed
oozing visage of a Handmaiden of Lolth. The priestess bowed and the
messenger disappeared into the flames of the Demonweb Pits.
</p>
-
<p>
She looked down upon her pregnant belly. He would become her
weapon. It was the will of Lolth.
</p>
</div>
</div>
-
<div id="outline-container-sec-9" class="outline-2">
<h2 id="sec-9"><span class="section-number-2">9</span> Visitations</h2>
<div class="outline-text-2" id="text-9">
<p>
<b>Ik'lithslaelith</b>
</p>
-
<p>
The name woke him from his renewed slumber. He lay upon his
newly-heaped hordes of gold and pools of melted bones. The echo of the
name roared in his mind like a tempest. Like a wildfire. Like the roar
of ten thousand dragons.
</p>
-
<p>
The ancient Ik'lithslaelith, the proud Ik'lithslaelith, the noble
Ik'lithslaelith, the silent hand of death in the merciless Underdark,
@@ -476,88 +301,68 @@ fear before his goddess.
</p>
</div>
</div>
-
<div id="outline-container-sec-10" class="outline-2">
<h2 id="sec-10"><span class="section-number-2">10</span> Voices</h2>
<div class="outline-text-2" id="text-10">
<p>
An ancient laughter hissed in the Abyss.
</p>
-
<p>
<i>The night is filled with voicess, so it seemss.</i>
</p>
-
<p>
She mused.
</p>
-
<p>
Time stretched out naked, and the darkness prophesied:
</p>
-
<p>
<i>Two minds.</i>
</p>
-
<p>
<i>Two goddesses</i>
</p>
-
<p>
<i>of mixed intent</i>
</p>
-
<p>
<i>and muddled vows.</i>
</p>
-
<p>
<i>Scheming over one</i>
</p>
-
<p>
<i>neither shall have.</i>
</p>
-
<p>
<i>The Nightmare smiled.</i>
</p>
-
<p>
<i>For even gods must sleep.</i>
</p>
-
<p>
<i>And neither see the</i>
</p>
-
<p>
<i>choices made when</i>
</p>
-
<p>
<i>nightmares reign.</i>
</p>
-
<p>
<i>Or hear the calls</i>
</p>
-
<p>
<i>of the forgotten</i>
</p>
-
<p>
<i>or the bound.</i>
</p>
-
<p>
Dendar smiled at the ironic cost of freedom.
</p>
</div>
</div>
-
<div id="outline-container-sec-11" class="outline-2">
<h2 id="sec-11"><span class="section-number-2">11</span> jal'Bror-noloth</h2>
<div class="outline-text-2" id="text-11">
@@ -575,7 +380,6 @@ her abdomen became almost unbearable. But she bore it. She bore it to
term by force of will and the whispers of Lolth, promising her power
beyond her wildest imaginings.
</p>
-
<p>
Her time arrived quickly and with little warning. Appropriating a
hidden chamber deep beneath the complex&#x2013;aptly, one often used for
@@ -587,7 +391,6 @@ calling upon the aid of magical items and elixirs to keep the child
from tearing her apart. And the pain only heightened her
determination.
</p>
-
<p>
When the child was finally born, it was amid a spray of blood. The
child poured forth wrapped in stinking muck, an acidic darkness that
@@ -598,7 +401,6 @@ and kept him hidden from the world.
</p>
</div>
</div>
-
<div id="outline-container-sec-12" class="outline-2">
<h2 id="sec-12"><span class="section-number-2">12</span> The Hold</h2>
<div class="outline-text-2" id="text-12">
@@ -613,7 +415,6 @@ cavern, the kobolds would know if it, but these were dark elves, in
their domain, and fully prepared for stealth. All the kobolds saw was
a vague hint of motion and the sudden glint of steel at their throats.
</p>
-
<p>
They prostrated themselves before their cruel masters and whimpered
despite their better sense. Or rather all but one of them whimpered. A
@@ -623,7 +424,6 @@ through ignorance she stood and stared into the eyes of the drow
soldier that held her captive, brandishing a knife and scowling at the
ambush.
</p>
-
<p>
The soldier's face became a mask of rage. She was ibluth, a worthless
slave, a worthless kobold. He had certainly killed avenging lesser
@@ -634,32 +434,26 @@ weathered face, drained, but dangerous and beautiful, approached the
soldier and the kobold maiden. She carried a small bundle in her arms,
breastfeeding.
</p>
-
<p>
She stared down at the scaled creature, regarding her cooly. Then she
carefully lifted the baby from her breast. He began to cry.
</p>
-
<p>
"You. Raise this iblith."
</p>
-
<p>
She roughly handed the child to the now-wide-eyed kobold and stalked
away, the rest of her guard following her.
</p>
-
<p>
The boulder ground back into place and the cavern returned to
darkness&#x2026; but not silence.
</p>
-
<p>
The sound of a baby's cry echoed through the halls.
</p>
</div>
</div>
-
<div id="outline-container-sec-13" class="outline-2">
<h2 id="sec-13"><span class="section-number-2">13</span> The Pits</h2>
<div class="outline-text-2" id="text-13">
@@ -674,7 +468,6 @@ winner was cheered, the loser tossed aside to make way for the next
fight. This was the way of kobolds: fast brutal victory or slow
agonizing defeat.
</p>
-
<p>
A large kobold, round, his puffy skin bulging from around his scales
like fishnet tights, sat atop a large boulder overlooking the pit. He
@@ -690,7 +483,6 @@ contrasted greatly with the proud fighter that stood before him. Where
the champion's scales gleamed in the torchlight, the boy's seemed to
swallow it completely. Black. As the darkest night or deepest cave.
</p>
-
<p>
From the crowd, an adopted mother gasped as she saw her son standing
in the ring and not at her side. It was no secret that she had been
@@ -699,7 +491,6 @@ silence in the stands all but confirmed it. None knew for sure which
would win out, their customs: the right of challenge in the pits, or
their fear of the drow should anything happen to the boy.
</p>
-
<p>
Their internal war was ended by the sudden motion of the
challenger. He lifted his spear and lunged at the champion. The strike
@@ -723,11 +514,9 @@ the champion's eyes with determination and smiled, a bloody broken
thing amid a silent crowd. The champion shook his head, but stalked in
one more time to finish it.
</p>
-
<p>
He never got a chance.
</p>
-
<p>
The only sound that could be heard for miles was his scream. Not a
person gathered breathed, nor heart beat for several moments, as their
@@ -735,7 +524,6 @@ champion writhed pitifully upon the ground clutching the wreck that
was once his face. Acid melted down into his skull and soon he could
no longer draw the breath to scream and just shivered upon the ground.
</p>
-
<p>
Jal'Bror'Noloth wiped the spittle from his mouth and looked up to
regard the assembled, but from his vantage point, could see but one,
@@ -744,7 +532,6 @@ dragon-blessed.
</p>
</div>
</div>
-
<div id="outline-container-sec-14" class="outline-2">
<h2 id="sec-14"><span class="section-number-2">14</span> The Return</h2>
<div class="outline-text-2" id="text-14">
@@ -757,41 +544,33 @@ cowering on the ground to the strange dark-skinned woman standing
before him, who began to speak. She spoke slowly, as if to a very
young child, and with an unfamiliar and decadent accent.
</p>
-
<p>
"You appear to have raised him well. Does he speak Undercommon?"
</p>
-
<p>
"Aks him yerself." his mother spat back.
</p>
-
<p>
The drow priestess held out a hand to halt one of her guards who had
stepped out of the darkness brandishing a knife. He stopped with a
quizzical look, and slipping his dagger back into his piwafwi cloak,
disappeared again.
</p>
-
<p>
"Do you know your name, little one?"
</p>
-
<p>
The boy looked to her suspiciously, but answered proudly "The others
call me Nightshade."
</p>
-
<p>
She smiled coolly.
</p>
-
<p>
"A fitting name I'm sure, but a child's name, a disguise at best." She
stalked closer to the boy, peering deeply into his eyes, and reached
out with a hand to trace the pattern of his scales.
</p>
-
<p>
His mother attempted to interpose herself, to shield her child from
the foreign touch, but instead found herself frozen in place
@@ -799,14 +578,12 @@ mid-step. Wide-eyed she tried to cry out, but found no words. The
paralyzing poison of the trio of small darts protruding from her back,
neck, and leg had done its task.
</p>
-
<p>
"I see it in your eyes little Nightshade. This place has made you a
killer, as I knew it would, but you shall become so much more. Follow
me, and rise to conquer nations! And you shall earn your true name!
Jal'Bror'Noloth!"
</p>
-
<p>
Jal stood dumbfounded at the revelation. He looked to the
ground. Silence fell upon the empty chamber and all eyes upon the
@@ -816,23 +593,19 @@ faintest. Here among the kobolds, he was revered, some kind of god to
the dragon-loving fanatics. Could the same be true of wherever this
woman would take him?
</p>
-
<p>
No, he decided, his place was in the caverns. And he didn't like this
stranger and her band. He took a deep breath and opened his eyes.
</p>
-
<p>
"I already have a mother." he stated flatly. "I have no need for
another one, nor your names for me."
</p>
-
<p>
Ul'Ilindith smiled, unperturbed by his response. She leaned down to
his ear and whispered "You do indeed already have a mother. But soon,
you'll have a goddess."
</p>
-
<p>
A hundred drow warriors appeared from the shadows, blades
spinning. Kobold blood splattered the ceilings, the floors, it
@@ -840,7 +613,6 @@ splattered the pair standing undisturbed in the midst of it. Jal found
he could not move his body, he could not open his mouth again to send
acid into the faces of the attackers.
</p>
-
<p>
It was over quickly. The cowering kobolds were all dead, cut into morbid
ribbons that covered the walls and floors. As were all the kobolds
@@ -850,7 +622,6 @@ beloved dragon-blessed were left to feed whatever monsters that would
inevitably take up residence in the food-rich cavern. The Underdark
is not a place of wastefulness.
</p>
-
<p>
Jal watched as the only other survivor, his adopted mother, was put
into chains and levitated up through the drow hatchway. Still groggy
@@ -858,14 +629,12 @@ from the poison, he barely noticed when his own fetters were locked
into place. Ul'Ilindith leaned over his shoulder and whispered once
again,
</p>
-
<p>
"You shall know your destiny my little iblith. And you shall know the
futility of defying me."
</p>
</div>
</div>
-
<div id="outline-container-sec-15" class="outline-2">
<h2 id="sec-15"><span class="section-number-2">15</span> Tastavi</h2>
<div class="outline-text-2" id="text-15">
@@ -873,97 +642,77 @@ futility of defying me."
The aging Master of Arms, Elderboy Tastadraa D'Maelnor, looked over
the boy's head to his sister Ul'Ilindith.
</p>
-
<p>
"This? This is the one you bring to me?"
</p>
-
<p>
The boy appeared unremarkable in every way. Average height, build,
skin tone, hair style, musculature, almost a mockery of normalcy.
</p>
-
<p>
"He is."
</p>
-
<p>
"I take it then, he is some prodigy with a blade?"
</p>
-
<p>
"I doubt he's ever touched one."
</p>
-
<p>
Tastadraa sighed and slicked back his receding hairline. Despite his
position in the family, one can never take a demand from a High
Priestess lightly. He nodded his head,
</p>
-
<p>
"I will train him&#x2026;"
</p>
-
<p>
"Very good."
</p>
-
<p>
Ul'Ilindith turned to leave.
</p>
-
<p>
"&#x2026;assuming he passes the trials of course."
</p>
-
<p>
Ul'Ilindith stopped. Slowly turning around, venom oozing
from her gaze, she asked
</p>
-
<p>
"Trials?"
</p>
-
<p>
"Just a formality I assure you, since he does not appear to be
of&#x2026; noble birth. I shall train him if he proves himself superior to
my most recent student."
</p>
-
<p>
Ul'Ilindith smiled. She looked across the room to the gangly youth
attempting to lift a glave twice his size and nearly chopping himself
in twain as the weapon fell to the ground with a clatter&#x2013;her sister's
son would prove no challenge.
</p>
-
<p>
"All right. He shall fight then."
</p>
-
<p>
But to her surprise the weapon master called out, "Tastavi! Come hither."
</p>
-
<p>
From behind a weapons rack, a lithe youth looked up and walked
over. His gait was one of practiced grace and noble refinement.
</p>
-
<p>
"This is my son Tastavi, he came of age just yesterday to start
training with the group. Tastavi, you will be fighting this one to
determine if he is fit to train against you."
</p>
-
<p>
Tastavi glanced at the new boy and smirked.
</p>
</div>
</div>
-
<div id="outline-container-sec-16" class="outline-2">
<h2 id="sec-16"><span class="section-number-2">16</span> Trials</h2>
<div class="outline-text-2" id="text-16">
@@ -973,7 +722,6 @@ opposite sides of the perfect circle drawn upon the floor, they stared
into each other's eyes, waiting. Tastavi licked blood from his
battered lip.
</p>
-
<p>
He had expected to finish the match quickly. He held his sword
delicately but firmly, gently gliding it into thrusts and parries, as
@@ -985,7 +733,6 @@ and the split-second reflexes of a master. The force and savage speed
of his swings was jolting. Tastavi was able to stay ahead of each of
them, but barely.
</p>
-
<p>
Tastavi had then moved to the center of the ring, expending as little
effort as he could, dodging as much as deflecting, to tire out his
@@ -995,13 +742,11 @@ Tastavi towards the edge of the ring. Several times only his training
in gymnastics had kept him from being bowled over out of the ring, and
the last rush had been the closest yet.
</p>
-
<p>
Tastavi had to adjust, and began to counter the charges with precise
blade thrusts, forcing his aggressor back, but took a few flying elbows
to the face while perfecting it.
</p>
-
<p>
Now mutual respect and more than a little exhaustion had the pair
circling. Almost an hour had passed, with neither side backing
@@ -1010,7 +755,6 @@ look disinterested to Ul'Ilindith, while nonetheless remaining intent
on every second of the fighting. The other students held no such
reservation and watched the display with open wonder.
</p>
-
<p>
As the two dragged themselves around they ring they knew that whatever
happened here, it would be the last clash between the two. Tastavi
@@ -1019,11 +763,9 @@ years of training with his father, and on his enemy: nearly collapsed
on the ground, hands clenched upon the hilt of his broadsword, knuckles
as white as the hair upon his head.
</p>
-
<p>
And suddenly upon him.
</p>
-
<p>
Tastavi stepped to the side, barely avoiding the downwards strike and
stabbed out, piercing flesh and striking against bone. The newcomer
@@ -1032,7 +774,6 @@ halfway from the ring and retching in pain. His blood bubbled from the
wound on his side. Tastavi heard a strange sizzling sound and looked
to his blade, the blood was slowly eating away the metal!
</p>
-
<p>
The crowd cheered, but Master Tastadraa silenced them with a harsh
reprimand and they reluctantly began to disperse. Tastavi nearly
@@ -1042,62 +783,50 @@ tend to the boy. Tastavi found himself dumbfounded before Ul'Ilindith,
who reached down and touched the boy, instantly healing him and
vaporizing the bubbling blood before it burned into the ground.
</p>
-
<p>
The conversation between his aunt and father echoed far away.
</p>
-
<p>
"I shall teach him."
</p>
-
<p>
"But, didn't he lose your little challenge?"
</p>
-
<p>
"I shall teach him."
</p>
-
<p>
The tip of his blade fell to the ground with a loud clatter as the
acid ate cleanly through the steel.
</p>
</div>
</div>
-
<div id="outline-container-sec-17" class="outline-2">
<h2 id="sec-17"><span class="section-number-2">17</span> Transformations</h2>
<div class="outline-text-2" id="text-17">
<p>
He awoke to a Sending message in his mind.
</p>
-
<p>
<i>Jal, it is time to train with Master Tastadraa.</i>
</p>
-
<p>
<i>Yes Mother.</i> he replied.
</p>
-
<p>
Jal lay upon a thin bisected cot, the center of which was cut away
so that he could lay on his back without the ridge on his spine
cutting at the fabric.
</p>
-
<p>
He looked to the three other belongings his mother allowed him: a pair
of clothes for training at blades and bows, a small key, and a thin
mask of white velvet.
</p>
-
<p>
He reached for the key, but changed his mind at the last second and
went for the mask instead.
</p>
-
<p>
He carefully set it place upon his face and grimaced beneath it as
its magic began subtly changing him. He shrank, his thick arms and
@@ -1108,14 +837,12 @@ watching. However, if anyone were watching, they would almost
certainly be dead by now. His room was one of the best guarded places
in the complex.
</p>
-
<p>
He left his chamber fully drow&#x2013;there was no illusion, his entire body
was changed&#x2013;and made for the training complex.
</p>
</div>
</div>
-
<div id="outline-container-sec-18" class="outline-2">
<h2 id="sec-18"><span class="section-number-2">18</span> Training</h2>
<div class="outline-text-2" id="text-18">
@@ -1126,14 +853,12 @@ years, these two would surely become the best fighters in House
D'Maelnor, if not the best fighters in Llolethane-Mael'na'rath. But
which would predominate?
</p>
-
<p>
Tastavi represented perfection in discipline and form. He learned
every technique: line, parry, block, feint, it didn't matter, after a
few repetitions he would master them, and he followed orders to the
very punctuation.
</p>
-
<p>
Jal on the other hand, represented pure natural talent and
improvisation. He could find his way in any situation with no
@@ -1142,50 +867,40 @@ their careful techniques and reactions, throwing them into
unpredictable patterns and unfamiliar lines. He was dangerous and
cared nothing for orders.
</p>
-
<p>
Only time would tell.
</p>
</div>
</div>
-
<div id="outline-container-sec-19" class="outline-2">
<h2 id="sec-19"><span class="section-number-2">19</span> The Leader</h2>
<div class="outline-text-2" id="text-19">
<p>
Flames billowed into the sky.
</p>
-
<p>
The sky.
</p>
-
<p>
Bright and blue, horrid and happy.
</p>
-
<p>
Ul'Ilindith shuddered.
</p>
-
<p>
"Why do you show me this?"
</p>
-
<p>
A caped rogue peered from the crystal ball to the priestess.
</p>
-
<p>
"We all serve the Queen according to her will."
</p>
-
<p>
He motioned for her to continue watching the silent scene unfold below
in the glassy sphere. The sky came into view once again and then
shifted to a quiet village in the middle of a great yellow plain.
</p>
-
<p>
From the south a sweeping army of darkness crept upon the unsuspecting
village, at its head an imposing warrior. Arrayed in thick armor, not
@@ -1193,7 +908,6 @@ much could be seen of his face, or much beyond the massive broadsword he
carried upon his back. With an unheard bellow he hefted the sword with
two hands and led the the charging army to battle.
</p>
-
<p>
A charge that faded from her view as the scene changed
subtly. Suddenly the army was on the road, traveling by the new
@@ -1202,38 +916,30 @@ slaying indiscriminately. Then there was a throne, obsidian and
bearing the mark of the Spider Queen, and an ancient drow upon it,
casting traitors into the flames.
</p>
-
<p>
Ul'Ilindith struggled with the vision.
</p>
-
<p>
"We shall take to the surface? An army?"
</p>
-
<p>
"Not we, but see the mark upon the leader?"
</p>
-
<p>
"D'Maelnor!"
</p>
-
<p>
"Yes, he carries your crest. And another, of the first house."
</p>
-
<p>
Ul'Ilindith smiled. "Then it's true, the union shall take place?"
</p>
-
<p>
"Yes, but keep in mind" said the rogue, "there is but one leader
prophesied&#x2026; not two."
</p>
</div>
</div>
-
<div id="outline-container-sec-20" class="outline-2">
<h2 id="sec-20"><span class="section-number-2">20</span> The Contest</h2>
<div class="outline-text-2" id="text-20">
@@ -1241,70 +947,55 @@ prophesied&#x2026; not two."
Tastavi held his bow carefully and exhaling suddenly, sent a perfect
shot into the deep-rothe's eye.
</p>
-
<p>
"Twenty-three" Jal sighed dramatically, his face emotionless.
</p>
-
<p>
"If you hadn't wasted your shot on the bull you would be tied with
me. Next time." Tastavi patted Jal on the shoulder mockingly.
</p>
-
<p>
"I've got one shot left." Jal pulled the arrow from his dimensional
bag.
</p>
-
<p>
"Even if you somehow managed to kill two of them with that, you'd only
match me." Tastavi gave him a superior look and started packing his things.
</p>
-
<p>
Jal stared out across the cavern floor at the grazing rothe. Slowly a
half-smile spread across his face.
</p>
-
<p>
"I've got one shot left." he reiterated.
</p>
-
<p>
Tastavi stopped and just watched. He knew that look well enough after
all. It usually preceded something worth watching.
</p>
-
<p>
Jal lifted his bow, nocked the arrow and held out his hand encasing a
rothe in purple flames.
</p>
-
<p>
Tastavi gave him a disapproving look, "Now that's cheating!"
</p>
-
<p>
"No, that's not the target, watch." Jal replied.
</p>
-
<p>
At first the rothe seemed not to notice, and Jal lifted three fingers.
</p>
-
<p>
Two fingers.
</p>
-
<p>
One.
</p>
-
<p>
The rothe looked up and seeing the illusory flames encasing it, began
to panic. It let out a mooish-roar and bolted for the water.
</p>
-
<p>
It would have made it too, except for the very agitated bull rothe
standing directly in its path with an arrow protruding from its
@@ -1313,33 +1004,27 @@ its backside, but being bowled over by a frantic, and apparently
burning, female on her way to the water was not a good way to arrive
at acceptance.
</p>
-
<p>
He reared up and charged, looking to gore anything in its path. A
couple of plump females stood nearby and he charged at them
blindly. They looked up in time to see the horns, and bolted to the
side.
</p>
-
<p>
Jal fired.
</p>
-
<p>
His arrow whisked past the enraged bull, peeling flesh from his face
and changing his course to plow, horns-first into the escaping females,
skewering both of them before himself, crumpling to the ground.
</p>
-
<p>
"Ok, well that's just Twenty-three then. We're tied." Tastavi managed
to stammer. But Jal turned to him and smiled.
</p>
-
<p>
"Look again."
</p>
-
<p>
Tastavi traced the arrow's flight from where it had been
deflected&#x2026; into the water. The startled rothe, no longer in faerie
@@ -1348,7 +1033,6 @@ arrow between the ribs and into the heart.
</p>
</div>
</div>
-
<div id="outline-container-sec-21" class="outline-2">
<h2 id="sec-21"><span class="section-number-2">21</span> The Cell</h2>
<div class="outline-text-2" id="text-21">
@@ -1357,79 +1041,64 @@ Jal opened his eyes and realized that for the first time in several
years, his mother had not called him to training. His room was dark,
but there was no mistaking the time. She should have called by now.
</p>
-
<p>
He donned his mask and hesitantly took up the tiny golden key.
</p>
-
<p>
If she called, he would answer, but it was not often he had the time
he needed, and he decided that he would not waste it.
</p>
-
<p>
He dressed quickly and left his chamber, racing through the levels of
the palace to the great stair. He usually descended the stairs on
foot, but who knew how long he had to spare. He activated his house
insignia and levitated down the center.
</p>
-
<p>
Near the bottom, he jumped to the side and followed a narrow corridor
to the cell block. He counted his steps and arrived at the correct
door. He slid in his key and opened the lock.
</p>
-
<p>
Inside the room was a small cell, only a few inches taller than he and
only a few feet wider. It was empty.
</p>
-
<p>
"No." He said.
</p>
-
<p>
He had to have made a mistake. Where was she? He looked around, but
found no signs of escape, nor of capture.
</p>
-
<p>
"No!" He exited the room and looked both ways down the narrow
hallway.
</p>
-
<p>
He tried the adjacent doors, but could not open them.
</p>
-
<p>
"NO!" he screamed, the sound echoing in the long metallic corridor. A
second passed, then thirty. His head ached and his gut clenched and
burned. A sending arrived from his mother.
</p>
-
<p>
<i>Jal, come to the throne room immediately.</i>
</p>
-
<p>
Jal's rage flared inside him. The truth he suspected burned his lungs
and throat. He tried to be calm, to tread carefully, but couldn't help
but scream back <i>Where is she?! What have you done with her?!</i>
</p>
-
<p>
No response was forthcoming.
</p>
-
<p>
He screamed. An echoing anguish mixed among the cell-block moans. He
ran, dashing through the archway to the stair. He took no heed of
those around him as he raced fate to the throne room at the top of the
complex.
</p>
-
<p>
He arrived at the doors out of breath, and furious. Guards attempted
to bar his way to announce him, but Jal rushed deftly past them and
@@ -1437,7 +1106,6 @@ stormed into the throne room without announcement.
</p>
</div>
</div>
-
<div id="outline-container-sec-22" class="outline-2">
<h2 id="sec-22"><span class="section-number-2">22</span> Motherly Love</h2>
<div class="outline-text-2" id="text-22">
@@ -1447,25 +1115,20 @@ beside it, once a powerful priestess, she was now cursed to forever
stand as a reminder of what may happen to those who lose the favor of
the Spider Queen.
</p>
-
<p>
Guards lined the walls armed with hand crossbows. Tastadraa and his
son stood before the dais, waiting for the final addition to their
ranks.
</p>
-
<p>
It burst into the throne room.
</p>
-
<p>
"Where is she?! What have you done with her?!" Jal screamed.
</p>
-
<p>
Ul'Ilindith remained seated and unaffected.
</p>
-
<p>
Jal screamed again, "WHERE IS SHE?!" The volume and the timbre
contrasted dramatically with the unimpressive image of the drow
@@ -1473,21 +1136,17 @@ youth. An aura of fear radiated from him, slowly affecting the nearest
guards who stiffened and stood frozen beside the open door, mouths
agape.
</p>
-
<p>
"My my, Mother, what am impudent little pup I've raised." Ul'Ilindith
lamented to the zombie beside her. It responded to the attention by
lolling its head slightly towards the sound.
</p>
-
<p>
Jal looked to the pair standing before the throne with suspicion.
</p>
-
<p>
"Where is my mother." he stated.
</p>
-
<p>
"Jal, Jal, do calm down. I have liked your 'mother' from the moment I
saw her. I believe that we share a certain&#x2026; bond. But display an
@@ -1495,194 +1154,156 @@ attitude again in my presence, and I promise, she'll soon resemble
<i>my</i> mother more than yours." Ul'Ilindith casually gestured to the
guard zombie.
</p>
-
<p>
Jal deflated. The fire in his throat cut off any further words, and
tears threatened to well behind his eyes. But his anger wisely turned
to caution. He looked around the room and took in the situation, then
wandered to his spot beside the other two males.
</p>
-
<p>
Ul'Ilindith was not sure about what she'd seen foretold, and thought
about the rogue's warning. She had worried about the course set before
her, but Jal's continuing insubordination left no room for doubt.
</p>
-
<p>
She put aside her contemplation and said with a plastered smile,
</p>
-
<p>
"A special opportunity has come to my attention. The first house has
shown to me a great vision of the future. A great warrior, a son of
D'Maelnor, shall join with the first house and lead an army of
darkness across the surface world."
</p>
-
<p>
Master Tastadraa's mouth fell agape, Tastavi focused on calming his
excitement, Jal just strained against his rage, though there was dull
curiosity there too. Tastavi was the only "son of D'Maelnor" he knew
who could possibly wear the description of 'great warrior.'
</p>
-
<p>
Ul'Ilindith just watched their reactions to be sure. Yes, the choice
was obvious, but perhaps it should still be best left in Lolth's
hands.
</p>
-
<p>
"Brother, you're a bit too old to be our warrior. Step away from the
dais. I will address the boys."
</p>
-
<p>
Tastadraa bowed and stepped back into a line of guards at the side.
</p>
-
<p>
Jal felt isolated upon the dais. He looked to Tastavi uncertainly, but
Tastavi looked at his aunt with expectancy, ambition gleaming in his
eyes.
</p>
-
<p>
Ul'Ilindith addressed the room. "Before me stand two great sons of
D'Maelnor:"
</p>
-
<p>
A dull question thumped in the back of Jal's mind. <i>What?</i>
</p>
-
<p>
"Tastavi, son of Tastadraa D'Maelnor."
</p>
-
<p>
<i>Two great sons? Tastadraa isn't up here, just Tastavi and&#x2026;</i>
</p>
-
<p>
"and Jal'Bror'Noloth, my firstborn son,"
</p>
-
<p>
Jal almost fell from the dais. No, she had been his 'Matron Mother',
but he'd never believed that&#x2026;
</p>
-
<p>
"whom I carried and delivered."
</p>
-
<p>
Jal's rage flared, but his voice was nowhere to be found it in. He
stood stone-faced and looked to the ground.
</p>
-
<p>
Tastavi looked to his newfound cousin with surprise, and sudden
jealousy. All this time, and Jal had never told him? There he stood,
embarrassed to have his secret revealed. Were they ever friends, or
only rivals?
</p>
-
<p>
"Both of you have surpassed my expectations with regard to fighting
prowess. But&#x2026; There is but one great warrior." Ul'Ilindith stated
clearly.
</p>
-
<p>
She let the statement sink in.
</p>
-
<p>
Tastavi turned.
</p>
-
<p>
Jal broke from his focused denial and turned to look at his friend. He
shook his head, slowly in disbelief.
</p>
-
<p>
Tastavi reached his hands slowly to the hilts of his swords.
</p>
-
<p>
Jal made no move to match him. He looked to Ul'Ilindith. She smiled
wickedly. He looked to Tastadraa. He looked lost, a mixture of caring
father, and greedy coward.
</p>
-
<p>
He threw off his sword belt. It fell with a clatter to the ground.
</p>
-
<p>
"Tastavi can go. He can be your warrior."
</p>
-
<p>
Tastavi looked quickly back and forth between Jal and Ul'Ilindith.
</p>
-
<p>
Ul'Ilindith's smile became a sneer.
</p>
-
<p>
A muffled screaming came from somewhere behind the throne and an aging
kobold, bound and gagged, naked and bleeding, was brought before
it. The zombie drooled at her and strained at its magical restraints.
</p>
-
<p>
"No. You shall fight, my little iblith." She held out her hand before
her with an open palm. In it lay a small scrap of white velvet. Slowly
fire rose from her fingers and ignited it.
</p>
-
<p>
Immediately Jal was wracked with pain as if his face was being torn
off. He screamed, a primal roar, a dragon's roar. Guards around the
room stiffened. Tastavi's eyes grew wide.
</p>
-
<p>
Ul'Ilindith turned her hand over into a fist and crushed the ashes.
</p>
-
<p>
The polymorph spell of the mask was ended. Jal knelt on the
ground. He breathed heavily and shivered. His clothes were tatters. He
held the thin mask in his hands&#x2013;his clawed hands. He looked up, his
white hair falling over his yellow eyes.
</p>
-
<p>
Tastavi looked upon him with a mixture of disgust, betrayal, and fear.
</p>
-
<p>
Jal shook his head, dropped the mask, and held his hands up
defensively, waving away the accusation in Tastavi's eyes.
</p>
-
<p>
"Kill him." Ul'Ilindith commanded Tastavi.
</p>
-
<p>
Tastavi drew his swords.
</p>
</div>
</div>
-
<div id="outline-container-sec-23" class="outline-2">
<h2 id="sec-23"><span class="section-number-2">23</span> The Will of Lolth</h2>
<div class="outline-text-2" id="text-23">
@@ -1693,7 +1314,6 @@ perfect series of textbook thrusts and faints. He'd win. He usually
did, but this time he wouldn't stop. This was no practice spar; this
was life and death.
</p>
-
<p>
Jal snatched up his weapon belt, pulling his blades from it&#x2013;a rapier
and a dagger&#x2013;kicked it into Tastavi's face, and retreated. But
@@ -1702,7 +1322,6 @@ cutting the tossed belt and bag into four even pieces. Jal tried to
reason with him, but couldn't get out more than a word against the
determination in Tastavi's eyes, and speed of his routine.
</p>
-
<p>
Tastavi came on in full. Emotions flooded his mind, betrayal was
nothing new or exotic to a drow, but this was something more than
@@ -1714,7 +1333,6 @@ traitor, to the times he had beaten him. His training had always won
out in the end. He couldn't help but think of the good times as
well. But he violently rejected them. Lies, they were all lies.
</p>
-
<p>
Tastavi lunged forward, his whole body extending, uncoiling like a
viper. Jal managed a half-hearted parry, sending Tastavi's thrust out
@@ -1729,7 +1347,6 @@ break Tastavi's muscle memory. Several times he tried to flee, but
whenever he came close to the guards, their crossbows forced him back
into the fight against his friend.
</p>
-
<p>
Jal looked into Tastavi's eyes, but saw nothing but pain there. Deep
welling emotion. Not regret, but pure righteous hatred. The look
@@ -1737,18 +1354,15 @@ festered like a wound on his conscience. He felt the bile welling in
his throat, preparing to send forth a blast of acid to burn away that
look. But he choked it back and continued to parry.
</p>
-
<p>
There had to be another way.
</p>
-
<p>
Jal felt strong. Free from the polymorph, he was able to stand to his
full height, the chamber, the columns, even the other drow all seemed
so much smaller now. The passing thought gave him an idea. But he had
to act quickly.
</p>
-
<p>
Jal flexed his thick legs, turned, back to the enemy, and rushed
headlong into a pair of guards. He felt the wind of Tastavi's blade
@@ -1758,7 +1372,6 @@ crossbow bolts at him as they fell. But they were poorly aimed and
glanced off of his hard black scales. He followed them around the
pillar, screaming. Then silence filled the chamber.
</p>
-
<p>
Tastavi soon followed, breathing heavily from his furious assault, but
found nothing around the pillar but the pair of guards unconscious on
@@ -1770,16 +1383,13 @@ deep scratches on the intricately carved relief. His eyes followed
them up, to find Jal climbing, tearing chunks of the porous stone free
with his claws to use as handholds.
</p>
-
<p>
Ul'Ilindith held out a hand to keep the archers at bay, amused by the
tactic.
</p>
-
<p>
Tastavi put away his swords and carefully followed him up.
</p>
-
<p>
The chamber's ceiling was crisscrossed with the webs of thousands of
spiders. Moths and flies, bats and even larger specimens struggled in
@@ -1789,7 +1399,6 @@ Crisscrossing struts connected them in intricate patterns. Jal leaped
from the top of the pillar to one of these, sending its occupants
scurrying away.
</p>
-
<p>
He moved from strut to strut, displacing as few spiders as
possible&#x2013;it was bad luck after all&#x2013;running where he could, climbing
@@ -1799,7 +1408,6 @@ racing after him, swords drawn, hacking at whatever strands got too
close. Jal looked around and dove into the thickest part of the
webbing, directly over the throne.
</p>
-
<p>
In the confined space it would be much more difficult to dodge, and
impossible to run, but Jal took comfort in knowing that if he could
@@ -1809,7 +1417,6 @@ bay. He found a large strut, disconnected from the one he was on,
probably two feet think, and curving from the ceiling like a
hook. Tastavi was nearly on him. This would have to do.
</p>
-
<p>
He took a deep breath, coiled like a spring and jumped. He tossed his
rapier into the air, spun around, back parallel to the ground, and
@@ -1818,48 +1425,38 @@ the strut at the same time the rapier bounced against it. The blade
followed the curve upwards and then fell off to the side. Jal reached
out with his legs and caught it with his foot.
</p>
-
<p>
Tastavi turned the corner quickly, moving to follow him, but had stop
to knock aside the dagger inches from his face. He glared across the
gap.
</p>
-
<p>
Jal pulled himself up with a deep groan and the heavy rumbling breaths
of a dragon. More than forty feet below him from the throne chamber,
Ul'Ilindith smiled wickedly.
</p>
-
<p>
Jal watched as Tastavi's furious glare turned into a look of panic.
</p>
-
<p>
Several web strands twinged near Jal's head and a slight clicking
sound came from somewhere disturbingly close by.
</p>
-
<p>
"It's a spider isn't it?"
</p>
-
<p>
Tastavi's silence was telling.
</p>
-
<p>
"It's right behind me isn't it?&#x2026;"
</p>
-
<p>
"&#x2026;"
</p>
-
<p>
"Right."
</p>
-
<p>
Jal dropped to the strut just in time for the spider's jowls to snap
shut where he stood. He turned and sliced out with his rapier, tearing
@@ -1869,7 +1466,6 @@ attempts to capture him. He kicked out against it, not to hurt it, but
to use it as a springboard. He jumped back across the gap, sword
leading his way.
</p>
-
<p>
Tastavi saw the move coming and instead of falling back, he leaped
from the ledge as well in order to push Jal back into the line of attack
@@ -1877,37 +1473,30 @@ from the giant spider. They collided in midair and struggled over a
tiny ledge before both losing their footing and plummeting towards the
ground.
</p>
-
<p>
A sickening crunch echoed in the chamber.
</p>
-
<p>
Tastavi groaned upon the ground. Jal hung from the thick strand of
webbing just above him. They had fallen towards the center of the
room, nearby the spot where the fight had begun, before the throne.
</p>
-
<p>
Tastavi opened his blurry eyes to find Jal standing over him, or
rather, hanging over him, rapier at his throat.
</p>
-
<p>
"Very good, Jal. Now end it!" Ul'Ilindith cheered.
</p>
-
<p>
Tastadraa looked at her with disbelief.
</p>
-
<p>
Jal lifted his rapier, pressing it deep, drawing blood. Tastavi pulled
away, but winced at his multiple broken bones, some of which protruded
grotesquely and spouted little fountains of blood. He closed his eyes,
ready to accept his defeat if that was the will of the Spider Queen.
</p>
-
<p>
But instead, Jal shifted his weight to swing himself towards the
throne, brought his sword around, cutting the line holding him aloft,
@@ -1915,7 +1504,6 @@ and flipped over towards the dais. He landed with a roll, dodging the
lazy lunge of the zombie guarding the throne and sprang forward with
the grace of a cat and the speed of a scorpion.
</p>
-
<p>
A deep thunk and sudden rushing of air shattered the sudden
silence. Jal's rapier dug deeply into Ul'Ilindith's chest and blood
@@ -1923,7 +1511,6 @@ spurted from the wound. A second later, two dozen crossbow bolts hit
Jal in the chest and paralysis seeped into his muscles from each tiny
pinprick.
</p>
-
<p>
Ul'Ilindith's voice came through ragged slurping breaths, a spell of
some kind, and Jal found himself sprawling backwards, teeth chattering
@@ -1931,54 +1518,44 @@ and sword shattered into shrapnel in his hands. He landed roughly upon
the dais steps a few feet from the broken Tastavi who looked at him
aghast.
</p>
-
<p>
Ul'Ilindith's eyes changed to a deep black, and raven flames engulfed
her. She chanted with otherworldly power. Her wound closed. She began
to levitate and ripped off her stained clothes with revulsion.
</p>
-
<p>
"Once again you disappoint me my son. Watch what is borne of your
failings!"
</p>
-
<p>
Ul'Ilindith turned ruefully towards the bound kobold and sent forth
waves of necrotic energy that quickly tore her apart. Jal tried to
scream, but his mouth refused to open and his voice left him silent in
his agony.
</p>
-
<p>
Ul'Ilindith was not finished though.
</p>
-
<p>
"I'll show you the cost of your weakness! Watch as I cut it out."
</p>
-
<p>
Instead of turning her wrath on Jal, she turned on Tastavi, pointing a
rueful finger and chanting. Soon lightning arced between her fingers,
gathering for discharge.
</p>
-
<p>
"Noo!!" Tastadraa screamed, breaking ranks and standing between his
son and his sister. He held aloft a glowing shield emblazoned with
the lightning symbol of the surface god Talos, and in his other hand a
broadsword wreathed in black flames.
</p>
-
<p>
"I shall not allow this!" He called to her.
</p>
-
<p>
"This is not yours to decide, Elderboy." she spat back.
</p>
-
<p>
Ul'Ilindith let fly her spell, and lightning shot from her finger to
the waiting Tastadraa. Electricity sparked and crackled as the shield
@@ -1990,49 +1567,40 @@ shield and then with a wave of his arm, released the energy at the
ground beside him. Lightning arced into the stone and it exploded with
a deafening blast.
</p>
-
<p>
Tastadraa stalked slowly forward towards Ul'Ilindith.
</p>
-
<p>
"I'm sorry, Sister, but this is not how the D'Maelnor line shall
end&#x2013;with an abomination."
</p>
-
<p>
Guards swarmed from beside the throne and drew swords&#x2013;drow that
Tastadraa had taught. But he had not taught them everything. Two moved
forward to engage him. Their heads fell to the floor and corpses
turned to ash beneath his wicked blade.
</p>
-
<p>
The rest of the guards looked to the powerful siblings and decided to
refrain from allowing their duty decide their deaths.
</p>
-
<p>
Ul'Ilindith sneered. She began to chant again, her eyes rolling up
into her head. The air grew dense inside the throne room, thick and
stifling, beads of sweat began to form and run down Ul'Ilindith's
naked body.
</p>
-
<p>
Tastadraa stalked forward with the shield of Talos held high.
</p>
-
<p>
Beside the throne, the twisted and battered form of Jal's adopted
mother began to twitch.
</p>
-
<p>
She finished her incantation, but waited to unleash the spell to
gloat, "Lets see your blasphemous surface god save you from this one."
</p>
-
<p>
Her hand jerked spasmodically and green bile erupted from the air
around it in a stream and blasted Tastadraa to the ground. Contagion
@@ -2040,7 +1608,6 @@ spread across his body wherever the stuff touched and ate away his
skin. At the same time the kobold skeleton began to slowly shift into
place, ligaments forming, muscle growing upon the shifting bones.
</p>
-
<p>
But Tastadraa was not finished, he pushed with his rotting limbs and
triggered the levitation on his amulet. He rose, blade poised to end
@@ -2048,94 +1615,76 @@ the conflict with a single vorpal strike. Then his body fell limp and
he hung awkwardly in the air, his head crushed from behind by the maw
of a giant spider.
</p>
-
<p>
Tastavi cried out in anguish.
</p>
-
<p>
Paralyzed by more than just the drow poison, Jal watched the scene
progress in horror. Tastadraa was nothing more than a decaying pile of
flesh, Tastavi lay broken by his fall, his adopted mother under the
throes of some insidious magic.
</p>
-
<p>
Only Ul'Ilindith seemed unharmed, floating above them all cherishing
the moment.
</p>
-
<p>
The ground began to shake.
</p>
-
<p>
"Fool, don't you see? A traitor and his son are revealed and Lolth has
shown me favor! The dead rise. Even Toril trembles! This is the will
of Lolth!"
</p>
-
<p>
She continued, addressing the guards, "Now. Do as I commanded."
</p>
-
<p>
A crossbow bolt zipped past Jal's frozen face. The whole world seemed
to stop. But the bolt was not indented for him. Beside him, Tastavi's
scream became a gurgle as the crossbow bolt in his throat quickly
drained him of both the air and the blood needed to circulate it.
</p>
-
<p>
Jal retched involuntarily, and could taste the poison on his lips.
</p>
-
<p>
The shaking intensified in the chamber. A column came down in dozens
of jagged pieces. Guards ran about, dodging falling debris and
spiders.
</p>
-
<p>
Tastavi breathed his last, slumping against the broken stone.
</p>
-
<p>
Ul'Ilindith, levitating, but stationary in the air was pelted with
rock fragments and quickly began her descent.
</p>
-
<p>
Jal's anger flared within him, but fear helped him keep his head and
push away the worst effects of the poison. What was going on?
</p>
-
<p>
Ul'Ilindith reached the ground and began to hurry towards Jal, still
paralyzed upon the dais steps, but a curious laugh stopped her.
</p>
-
<p>
"Hahaha, 'da will a Lolth you say?" The scratchy voice became clearer
by the second. Ul'Ilindith turned to the living kobold slowly standing
up where her corpse should have rested. Her scales grew back in
patches, and she peered at the Matron Mother with one regenerated eye.
</p>
-
<p>
"No my dear, this&#x2026;" she gestured to the chaos around her.
</p>
-
<p>
"&#x2026;is the will of Tiamat."
</p>
-
<p>
The ceiling collapsed.
</p>
</div>
</div>
-
<div id="outline-container-sec-24" class="outline-2">
<h2 id="sec-24"><span class="section-number-2">24</span> Doom</h2>
<div class="outline-text-2" id="text-24">
@@ -2149,26 +1698,22 @@ into the forgotten tunnel and was gone.
</p>
</div>
</div>
-
<div id="outline-container-sec-25" class="outline-2">
<h2 id="sec-25"><span class="section-number-2">25</span> Destruction</h2>
<div class="outline-text-2" id="text-25">
<p>
The palace fell.
</p>
-
<p>
A lone drowess rose from the ashes at the edge of the desolation. The
acid dripped from her hands, from her hair, and fell sizzling to the
ground leaving her unharmed. Lady Lolth had long ago given her a
defense against such poison, when she carried it in her womb.
</p>
-
<p>
Ul'Ilindith stood alone in the rubble and followed the only other pair
of footprints leaving the shattered homestead: her son's.
</p>
-
<p>
Jal limped through the wreckage, dragging Tastavi's body behind
him. It had to be around here somewhere. He hefted a door-sized piece
@@ -2177,7 +1722,6 @@ drained and blistered hand held fast to a broken sword, but what
attracted Jal's eye was a thin piece of white velvet. Jal took the
mask and dropped the slate back into place, reverently.
</p>
-
<p>
He turned to the body and rasped, "It doesn't look like either of us
will be leading any armies today. Please forgive me." He placed the
@@ -2188,14 +1732,12 @@ upon his back.
</p>
</div>
</div>
-
<div id="outline-container-sec-26" class="outline-2">
<h2 id="sec-26"><span class="section-number-2">26</span> Dreams</h2>
<div class="outline-text-2" id="text-26">
<p>
Three Years Later&#x2026;
</p>
-
<p>
Jal lay on his back on a roof overlooking a bustling marketplace and
stared dreamily at the cavern ceiling. It had been years since his
@@ -2206,7 +1748,6 @@ shield, now mostly painted black to blend in with the shadows, and
wondered what life would be like without a thousand tons of rock above
your head. He wondered what it would be like to fly.
</p>
-
<p>
Below him he heard the telltale laughter of the fat merchant leader he
had followed to this inn. He picked up his bow and his shield and
@@ -2216,19 +1757,15 @@ descending the staircase in the cool golden reflection. Then he pulled
it back up, turned with his back to the alleyway, and counted
dramatically, with a familiar half-smile.
</p>
-
<p>
Three.
</p>
-
<p>
Two.
</p>
-
<p>
One.
</p>
-
<p>
Then he flipped from the roof, dropping below the lip and firing an
arrow through the window. He landed on the cavern floor with a roll
@@ -2237,7 +1774,6 @@ of renegades. He did not stay to confirm his success or failure, but
fled to where he could most easily disappear: the bustling
marketplace.
</p>
-
<p>
He strolled easily through the crowded streets. Though his appearance
was quite a bit more handsome than that he had grown up with, he could
@@ -2250,33 +1786,27 @@ a few carts, but exuded little outward care for the whole venture,
particularly when several guards burst from the inn and sent rogues
into back alleys to seek an assassin.
</p>
-
<p>
He eventually made his way into this same inn, and dodging guards
carting some new lordling's inherited possessions from an upper room,
was addressed cordially by a concierge, "Ah, welcome back Sir! It
appears that you are in luck, a room has just opened up for you."
</p>
-
<p>
Jal smiled to himself and turned to dismiss the man with a "Thank You."
</p>
-
<p>
He never finished that thought.
</p>
-
<p>
The man was dead.
</p>
-
<p>
He stood, smiling pleasantly in demure house leathers with half of his
face melted off to the bone, dripping tar-like blood upon his fine
padded vest. A spider crawled out from where his ear should have been
and snickered at him.
</p>
-
<p>
Jal backed away slowly aghast, but everyone else went stoically about
their business, unperturbed. The room grew dark and Jal turned to the
@@ -2284,11 +1814,9 @@ window. A thick spiderweb had covered it with a hand-sized spider
hurriedly wrapping a struggling shape. A tiny dragon's wing jut from
the bundle.
</p>
-
<p>
Jal ran.
</p>
-
<p>
He sprinted from the inn and disregarding caution, fled through the
black alleys and twisted honeycomb and spiderweb streets. It was like
@@ -2301,7 +1829,6 @@ through the cavern. Jal scurried through the final alleyway and dove
into his hideout in an abandoned sewer tunnel. He dropped his rich
clothes in the muck and crawled away on hands and knees.
</p>
-
<p>
He remembered the frantic cries of his mother being torn apart and
then her defiant laugh as the walls fell. Her last words echoed
@@ -2309,7 +1836,6 @@ through his mind, "the will of Tiamat!" Another vicious roar sent
ripples through the water and shivers through the very stone. He heard
the clicking of spiders in the distance, drawing nearer. Closing in.
</p>
-
<p>
He was being hunted. Franticly he drew the shield from his back and
over his head and grasped a small dagger in his hand. He was once
@@ -2317,7 +1843,6 @@ again a child, in loose-fitting kobold rags and with weapons he could
barely use. He huddled terrified in a dark corner. He closed his eyes
and begged whatever gods could hear him to escape.
</p>
-
<p>
A faint hiss cut through the clamor. Not a god, but a tiny snake, the
size of a little worm, crawled from the loose stones and looked up at
@@ -2329,17 +1854,14 @@ serpent grew to immense proportions filling the tiny sewer tunnel,
which became a great cavern, yet it still barely contained the
powerful creature.
</p>
-
<p>
Dendar, the Night Serpent, the Eater of the World, loomed over the
boy. She laughed with the might of thunder and the promise of
disaster. Jal found he could not move.
</p>
-
<p>
"Jal'Bror'Noloth, your dreamss are deliciouss."
</p>
-
<p>
Her huge tongue flicked in and out of her mouth, creating wind eddies
that buffeted Jal against the stone. Greasy spittle and half-devoured
@@ -2347,48 +1869,39 @@ bones&#x2013;remnants of nightmares long forgotten&#x2013;dripped from her
cavernous maw. Jal could not speak, not even think, as the stench of
nightmare overwhelmed him.
</p>
-
<p>
"Your nightmare though&#x2026; tastess unique. Because it is true. And
closer than you think. Evil godss have planss for you it seemss." The
serpent hissed.
</p>
-
<p>
Jal shuddered.
</p>
-
<p>
Dendar laughed&#x2013;a terrible rasping hiss.
</p>
-
<p>
"And yet&#x2026; perhapss their planss are merely dreamss. Join me, little
drow-gon and while the godss fret for your fate, we shall feassst!"
</p>
-
<p>
Suddenly the world returned and Jal awoke from his reverie. What a
dream! What a nightmare! The details faded, chewed away from his mind,
but the image of the serpent and her strange offer lingered.
</p>
-
<p>
The quiet dripping of sewer water and occasional scurrying of rodent
or insect were the only sounds to be heard besides the dull pounding
of his heart.
</p>
-
<p>
He sat in the muck for hours.
</p>
-
<p>
They were never far behind. Staying in one place for too long was
dangerous, but something held Jal in place. Could he actually escape
it all?
</p>
-
<p>
Soon a distant splash alerted him to company. Heavy footsteps,
confident and strong, echoed through the tunnel. Throngs of rodents
@@ -2398,27 +1911,22 @@ opposite end of the tunnel and the insects stopped their chattering,
frozen and reverent. Jal couldn't think. They'd found him. They'd both
found him. It was too late.
</p>
-
<p>
A lightning bolt streaked through the tunnel past him and a barbaric
roar answered it.
</p>
-
<p>
The wind began to howl through the tunnel like a cyclone and the
sounds of crumbling rock assailed him from both sides.
</p>
-
<p>
Jal grimaced and hesitated. But as the twin forms came into view, he
shouted into the clamor, "ENOUGH! Dendar! We are bound, now free me
from this place!"
</p>
-
<p>
<i>Wissse Choissce&#x2026;</i>
</p>
-
<p>
Instantly a portal opened before him like a tear in reality and
brilliant light beamed through. Jal rushed into it and was transported
@@ -2428,14 +1936,12 @@ silence, the gentle breeze, and the burning light of the midday sun.
</p>
</div>
</div>
-
<div id="outline-container-sec-27" class="outline-2">
<h2 id="sec-27"><span class="section-number-2">27</span> The Surface</h2>
<div class="outline-text-2" id="text-27">
<p>
The blinding light of the Shaar's Summer Sun left Jal helpless.
</p>
-
<p>
He lay upon the ground thinking it maybe better he have died quickly
in the tunnels or upon his own blade. But such musings held no real
@@ -2446,7 +1952,6 @@ their master&#x2013;for the first time in his life, he was free.
</p>
</div>
</div>
-
<div id="outline-container-sec-28" class="outline-2">
<h2 id="sec-28"><span class="section-number-2">28</span> Credits</h2>
<div class="outline-text-2" id="text-28">
@@ -2457,12 +1962,3 @@ updates or if you'd like to see more stuff like this!]
</p>
</div>
</div>
-</div>
-<div id="postamble" class="status">
-<p class="author">Author: Andrew Murrell</p>
-<p class="date">Created: 2016-08-30 Tue 23:56</p>
-<p class="creator"><a href="http://www.gnu.org/software/emacs/">Emacs</a> 24.5.1 (<a href="http://orgmode.org">Org</a> mode 8.2.10)</p>
-<p class="validation"><a href="http://validator.w3.org/check?uri=referer">Validate</a></p>
-</div>
-</body>
-</html>
diff --git a/src/main.css b/src/main.css
deleted file mode 100644
index 1e0d2b9..0000000
--- a/src/main.css
+++ /dev/null
@@ -1,93 +0,0 @@
-body {
- padding: 0px 0px 0px 0px;
- background: white;
-}
-
-header {
- width: 100%;
- height: 100px;
- background-color: black;
-}
-
-header h1 {
- color: white;
- font-size: 50px;
- height: 50px;
- margin: 0px 0px 0px 0px;
- padding: 0px 0px 0px 10px;
-}
-
-.headercontainer {
- width: 25%;
- height: 50px;
- background-color: Maroon;
- float: left;
- margin: 10px 0px 0px 0px;
-}
-
-#logobar {
- display: block;
-}
-
-.headerlink:hover, .headerlink:visited {
- color: GoldenRod;
-}
-
-.headerlink:active {
- color: Black;
-}
-
-.headerlink {
- color: GoldenRod;
- font-size: 40px;
- text-decoration: none;
- margin: 0px 0px 0px 85px;
-}
-
-#constructionBanner {
- height: 50px;
- background-color: #f89406;
-}
-
-#constructionMessage {
- text-align: center;
- padding: 12px;
-}
-
-#search {
- padding: 10px;
-}
-
-#sidebar {
- border: 1px solid black;
- padding: 5px;
- margin: 5px;
- float: right;
-}
-
-li {
- font-size: 14px;
-}
-
-.spacer {
- width: 50px;
- display: inline;
- padding: 0px 50px 0px 50px;
-}
-
-.tag {
- font-size: 11px;
- height: 13px;
- padding: 4px 7px 5px 7px;
- border-radius: 2px;
- text-align: center;
- text-decoration: none;
- color: white;
-}
-
-.FF { background: FireBrick; }
-.SS { background: SeaGreen; }
-.ES { background: DarkViolet; }
-.HB { background: DimGray; }
-.DM { background: DarkSlateGray; }
-.WP { background: GhostWhite; color: black; }
diff --git a/src/main.js b/src/main.js
index 99c9821..6f34e2a 100644
--- a/src/main.js
+++ b/src/main.js
@@ -19,6 +19,7 @@
function init() {
/* Search Bar Handling */
+ /*
var searchbar = document.getElementById("search");
searchbar.onfocus = function() { this.value = ""; }
searchbar.onblur = function() {
@@ -28,7 +29,7 @@ function init() {
clear(); initSections();
}
searchbar.onkeyup = clear;//function() { if (event.keycode == 13) clear };
-
+ */
initSections();
}
diff --git a/src/main.scss b/src/main.scss
new file mode 100644
index 0000000..ab62e0a
--- /dev/null
+++ b/src/main.scss
@@ -0,0 +1,126 @@
+body {
+ margin: 0;
+ padding: 0;
+}
+
+header {
+ width: 100%;
+ background-color: black;
+ color: white;
+ h1 {
+ font-size: 50px;
+ height: 50px;
+ margin: 0px 0px 0px 0px;
+ padding: 0px 0px 0px 10px;
+ }
+}
+
+nav {
+ /* layout */
+ line-height: 1;
+ width: 100%;
+ ul {
+ padding: 0;
+ margin: 0;
+ list-style: none;
+ }
+ li {
+ display: inline-block;
+ }
+ a {
+ display: block;
+ }
+
+ /* pretty */
+ background-color: Maroon;
+ a {
+ padding: 0.2em 1em;
+
+ font-size: 40px;
+ color: GoldenRod;
+ text-decoration: none;
+
+ &:hover, &:focus {
+ background-color: white;
+ }
+ &:hover, &:visited {
+ color: GoldenRod;
+ }
+ &:active {
+ color: Black;
+ }
+ }
+
+ form {
+ padding: 0.2 1em;
+ display: block;
+ input {
+ font-size: 25px;
+ border: solid 1px #333333;
+ }
+ input[type="search"] {
+ max-width: 10em;
+ }
+ input:first-child {
+ border-top-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ }
+ input:not(:last-child) {
+ border-right: 0;
+ }
+ input:last-child {
+ border-top-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ }
+ }
+}
+
+body > article {
+ #constructionBanner {
+ height: 50px;
+ background-color: #f89406;
+ }
+
+ #constructionMessage {
+ text-align: center;
+ padding: 12px;
+ }
+
+ #search {
+ padding: 10px;
+ }
+
+ #sidebar {
+ border: 1px solid black;
+ padding: 5px;
+ margin: 5px;
+ float: right;
+ }
+
+ li {
+ font-size: 14px;
+ }
+
+ .spacer {
+ width: 50px;
+ display: inline;
+ padding: 0px 50px 0px 50px;
+ }
+
+ .tag {
+ font-size: 11px;
+ height: 13px;
+ padding: 4px 7px 5px 7px;
+ border-radius: 2px;
+ text-align: center;
+ text-decoration: none;
+ color: white;
+ }
+
+ .FF { background: FireBrick; }
+ .SS { background: SeaGreen; }
+ .ES { background: DarkViolet; }
+ .HB { background: DimGray; }
+ .DM { background: DarkSlateGray; }
+ .WP { background: GhostWhite; color: black; }
+}
diff --git a/src/tags.txt b/src/tags.txt
new file mode 100644
index 0000000..ee5d25c
--- /dev/null
+++ b/src/tags.txt
@@ -0,0 +1,6 @@
+DM DMing Resource
+ES Essay
+FF Flash Fiction
+HB Homebrew
+SS Short Story
+WP WIP