pandoc ftw

main
Christopher P. Brown 2022-07-26 16:08:23 -06:00
parent 3ba042d292
commit e3ea08ede0
31 changed files with 804 additions and 235 deletions

View File

@ -17,7 +17,7 @@ in the file, you can `ls ./**/**` to list all files, and then order them in the
documents are markdown with yaml frontmatter. they are compiled into:
- html with spoilers for game ref
- 'safemode' html sans spoilers for players
- 'public' html sans spoilers for players
- rss feed for syndicated documents
## metadata
@ -26,13 +26,13 @@ every markdown document includes yaml frontmatter metadata
fields:
for now, treat every field as required
- title (string): title of the document. mostly for rss item id
- created (date): date of creation
- updated (date): date of most recent update. mostly of rss
- spoilers (bool): spoilers are not included in 'safemode' (default) export. they are included in 'gm' view.
- syndicated (bool): should this document be included in the rss feed?
- created (date): date of creation. probably needs to be in `date -R` format.
- updated (date): date of most recent update. mostly of rss. probably needs to be in `date -R` format.
- public (bool)[^1]: spoiler-free content
- syndicated (bool)[^1]: should this document be included in the rss feed?
[^1]: These are not true booleans. Pandoc templates cannot evaluate the value of a field. Only its presence. This could say `public: astronauts` or `syndicated: spaghetti`. You can only set these flags on and off by including or omitting the field entirely. This is probably not the way you would expect it to work, so watch out.
example:
@ -41,16 +41,7 @@ example:
title: notes
created: 2022-07-24
updated: 2022-07-25
spoilers: yes
syndicated: no
public: yes
syndicated: yes
---
```
## TODO
- [ ] change all this from lua to pandoc? see `garden` for pandoc template example
- [ ] metadata (titles, dates) getting truncated
- [ ] write all content to spoilers.html
- [ ] write `spoilers: no` to safemode. i.e. basementquest.html, or index.html
- [ ] write `syndicated: yes` to rss (include `updated` in meta data?)

View File

@ -1,5 +1,4 @@
src/about.md
src/meta.md
src/characters/index.md
src/characters/corraidhin.md
src/characters/glarg.md
@ -7,6 +6,7 @@ src/characters/inky.md
src/characters/jarrod.md
src/characters/sneaky.md
src/characters/tea.md
src/meta.md
src/epistolary/index.md
src/epistolary/00001.md
src/epistolary/00002.md

View File

@ -2,27 +2,46 @@
default:
just --list --unsorted
# assemble spoiler free markdown
assemble-nospoilers:
lua lib/main.lua
# build player-facing html
public:
pandoc -f markdown+autolink_bare_uris \
-t html \
--standalone \
--toc \
--metadata title="BASEMENT QUEST" \
-H includes/styles.html \
src/basementquest.md > www/basementquest.html
# build referee-facing html
spoilers:
cat src/basementquest.md src/spoilers.md |\
pandoc -f markdown+autolink_bare_uris \
cat basement.order |\
xargs pandoc -f markdown -t markdown |\
pandoc \
-t html \
--standalone \
--toc \
--metadata title="BASEMENT QUEST" \
-H includes/styles.html \
> www/spoilers.html
# build public facing html
public:
cat basement.order |\
xargs -I % pandoc -f markdown -t markdown --template=templates/player.tmpl % |\
pandoc -t html \
--standalone \
--toc \
--metadata title="BASEMENT QUEST" \
-H includes/styles.html \
> www/index.html
# build rss
rss:
#!/bin/sh
echo "Building xml file!!"
echo "<?xml version=\"1.0\" ?>" > www/rss.xml
echo "<rss version=\"2.0\" xmlns:atom=\"http://www.w3.org/2005/Atom\">" >> www/rss.xml
echo " <channel>" >> www/rss.xml
echo " <atom:link href=\"https://tilde.town/~dozens/basementquest/rss.xml\" rel=\"self\" type=\"application/rss+xml\" />" >> www/rss.xml
echo " <title>BASEMENT QWEST</title>" >> www/rss.xml
echo " <link>https://tilde.town/~dozens/basementquest/rss.xml</link>" >> www/rss.xml
echo " <description>Friends having ADVENTURES! Huzzah!</description>" >> www/rss.xml
fd . 'src/' -e md -x pandoc -f markdown+autolink_bare_uris --template=templates/item.tmpl >> www/rss.xml
echo " </channel>" >> www/rss.xml
echo "</rss> " >> www/rss.xml
echo "Done building xml file \o/"
# build public, spoilers, and rss
all: spoilers public rss

View File

@ -1,80 +0,0 @@
-- get all the filenames in order
local handle = assert(io.open("basement.order", "r"))
local line = handle:read("*line")
local allfiles = {}
while line do
table.insert(allfiles, line)
line = handle:read("*line")
end
handle:close()
-- handle each file
-- TODO populate this with all docs for manipulation later
local docs = {}
for _, value in pairs(allfiles) do
local matter = {}
local body = {}
local sepcount = 0
local handle = assert(io.open(value, "r"))
local line = handle:read("*line")
while line do
if line == '---' then
sepcount = sepcount + 1
-- get frontmatter
elseif sepcount < 2 then
for k, v in line:gmatch("(%w+):%s*(%w+)") do
matter[k] = v
end
-- get body
else
table.insert(body, line)
end
line = handle:read("*line")
end
handle:close()
table.insert(body, "\n")
table.insert(docs, { matter = matter, body = body })
end
-- print everything
for _, doc in ipairs(docs) do
for k, v in pairs(doc.matter) do
print(k .. " = " .. v)
end
for _, v in ipairs(doc.body) do
print(v)
end
end
-- markdown with spoilers
for _, doc in ipairs(docs) do
for _, v in ipairs(doc.body) do
print(v)
end
end
-- markdown spoilers free
for _, doc in ipairs(docs) do
if doc.matter.spoilers == "no" then
for _, v in ipairs(doc.body) do
print(v)
end
end
end
-- only syndicated
for _, doc in ipairs(docs) do
if doc.matter.syndicated == "yes" then
for k, v in pairs(doc.matter) do
print(k .. " = " .. v)
end
for _, v in ipairs(doc.body) do
print(v)
end
end
end

View File

@ -1,12 +1,12 @@
---
title: title
title: about
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: no
public: yes
---
## About
This is a game that me and the kids in the basement are playing over email.
[thread](https://framalistes.org/sympa/arc/tildepals/2022-07/msg00004.html)

View File

@ -2,8 +2,7 @@
title: bestiary
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: no
public: yes
---
## Bestiary
@ -29,3 +28,4 @@ Kobit
: Subterranean scaly ratdog creatures. Big luminous eyes, long droopy mustaches.

View File

@ -2,8 +2,7 @@
title: corraidhin
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: no
public: yes
---
### Corraidhín
@ -19,3 +18,4 @@ I think with my share of the reward I'll buy more books. Lots and lots of books,
- Player: sinatra
- XP: 0
- Skills: Do Anything 1

View File

@ -2,8 +2,7 @@
title: glarg
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: no
public: yes
---
### Glarg
@ -19,3 +18,4 @@ With my share of the money, I plan to hire a mage to send me home, or turn every
- Player: kindrobot
- XP: 0
- Skills: Do Anything 1

View File

@ -2,7 +2,7 @@
title: characters
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: no
public: yes
---
## Characters

View File

@ -2,8 +2,7 @@
title: inky
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: no
public: yes
---
### Inky
@ -19,3 +18,4 @@ What do you plan to do with your cut of the money? Buy lots of ink ingredients,
- Player: mio
- XP: 0
- Skills: Do Anything 1

View File

@ -2,8 +2,7 @@
title: jarrod
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: no
public: yes
---
### Jarrod
@ -21,3 +20,4 @@ He leans over and places his elbows on the table, tenting his fingers and leanin
- Player: marc
- XP: 0
- Skills: Do Anything 1

View File

@ -2,8 +2,7 @@
title: sneaky
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: no
public: yes
---
### Sneaky Willows
@ -19,3 +18,4 @@ With my money I'm plannin' to hire a bard to teach me more music, so I can reall
- Player: nico
- XP: 0
- Skills: Do Anything 1

View File

@ -2,14 +2,13 @@
title: tea
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: no
public: yes
---
### Tea Filler
<details>
<summary>Bio</summary>
Who: Teefoon Filler of the Bucket, Knight of the 3rd order of Balmarlovemeer, Crester of the Golden-Fringed Ridge and 2nd to the Keeper of the Grimoire Glorious. You may call me “Tea.” (Tea is, notably, a giant. ~11ft tall).
Who: Teefoon Filler of the Bucket, Knight of the 3rd order of Balmarlovemeer, Crester of the Golden-Fringed Ridge and 2nd to the Keeper of the Grimoire Glorious. You may call me "Tea." (Tea is, notably, a giant. ~11ft tall).
What: Retired Cleric turned Archeologist.
@ -19,3 +18,4 @@ Cash: A sturdy wagon and 5 head of oxen to pull it. I wish to travel further tha
- Player: eli
- XP: 0
- Skills: Do Anything 1

View File

@ -2,8 +2,6 @@
title: cosmology
created: 2022-07-24
updated: 2022-07-24
spoilers: yes
syndicated: no
---
## Cosmology
@ -14,3 +12,4 @@ trine:
- Liandt -- the goddess of war and flame
Fourth god = ????

View File

@ -2,8 +2,8 @@
title: 00001 - we meet in a tavern
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: yes
public: yes
---
### 00001
@ -22,3 +22,4 @@ You are all seated around a table in the corner at Lucy's Basement. It is dimly
- What do you plan to do with your cut of the money?
[www](https://framalistes.org/sympa/arc/tildepals/2022-07/msg00015.html)

View File

@ -2,8 +2,8 @@
title: 00002 - shoe shine
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: yes
public: yes
---
### 00002
@ -28,3 +28,4 @@ A third one screams, "SHOE SHINE SHOE SHINE!" It has several gold teeth and carr
The fourth and final one is wearing what looks like freshly painted red shoes and is carrying a lit torch. "SHOE SHIIIIINE!" it screams. It is wearing a gold medallion on a gold necklace.
[www](https://framalistes.org/sympa/arc/tildepals/2022-07/msg00015.html)

View File

@ -2,8 +2,8 @@
title: 00003 - polish
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: yes
public: yes
---
### 00003
@ -41,3 +41,4 @@ Depending on how observant Tea is, he may or may not notice that the boots are r
"SHOE SHIIINE!" they all cry in unison.
[www](https://framalistes.org/sympa/arc/tildepals/2022-07/msg00022.html)

View File

@ -2,8 +2,8 @@
title: 00004 - pockets picked
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: yes
public: yes
---
### 00004
@ -30,3 +30,4 @@ Your pockets have successfully been picked while you were distracted with the sh
What small item(s) will you notice is missing in the hours and days to come? How will its absence be a minor inconvenience?
[www](https://framalistes.org/sympa/arc/tildepals/2022-07/msg00031.html)

View File

@ -2,8 +2,8 @@
title: 00005 - gnomes
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: yes
public: yes
---
### 00005
@ -38,3 +38,4 @@ The foreman continues talking to you as though nothing happened. She leads you o
WHAT DO YOU DO
[www](https://framalistes.org/sympa/arc/tildepals/2022-07/msg00035.html)

View File

@ -2,8 +2,6 @@
title: 00006 - egre
created: 2022-07-24
updated: 2022-07-24
spoilers: yes
syndicated: no
---
### 00006
@ -14,3 +12,4 @@ It looks you up and down, and its gaze rests on your freshly polished shoes. It
The smallest of you can stand upright in the kobit tunnels. The largest of you have to crawl.
Kobits are vaguely mammalian, slightly reptilian bipedal creatures. They are scaly and furry, and live in burrows and tunnels deep in the earth. They have huge eyes, and long fine whiskers at the end of their snout, all of which help them find their way around in the dark. They also have long, thick, course, drooping mustaches which are mostly decorative. The overall effect is that they look like tiny, monstrous, perpetually startled cowboy extras from the set of some old spaghetti western movie.

View File

@ -2,11 +2,13 @@
title: epistolary
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: no
public: yes
---
## Epistolary
These are all the letters I send to the email list.
You can subscribe to these updates with the rss feed.
https://tilde.town/~dozens/basementquest/rss.xml

View File

@ -2,8 +2,8 @@
title: meta
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: yes
public: yes
---
### META
@ -38,3 +38,4 @@ SO WHAT DOES THIS ALL MEAN???
When you interact with the blahoblins, consider whether there is an element of risk. If so, roll the appropriate amount of dice (1, in this case) and include the result in your description. If it's a success, describe the success. If it's a partial success or a failure, just describe what you do, and I'll describe the complication, or how things get worse.
[www](https://framalistes.org/sympa/arc/tildepals/2022-07/msg00023.html)

View File

@ -2,8 +2,6 @@
title: geography
created: 2022-07-24
updated: 2022-07-24
spoilers: yes
syndicated: no
---
## Geography
@ -17,3 +15,4 @@ Basmentaria
- Agendell: southern banana
- Ginnarak: donut hole

View File

@ -2,16 +2,10 @@
title: history
created: 2022-07-24
updated: 2022-07-24
spoilers: yes
syndicated: no
---
## Cosmology
## History
trine:
Long ago, the Artifice Wars ravaged the lands of Basementora.
- Neddas -- the god of sages and starlight
- Nullar -- the god of time and tides
- Liandt -- the goddess of war and flame
Fourth god = ????
They reduced the once fertile lands of Ginnarak to ash and embers.

View File

@ -2,8 +2,7 @@
title: meta
created: 2022-07-24
updated: 2022-07-24
spoilers: no
syndicated: no
public: yes
---
## Meta
@ -57,3 +56,4 @@ Example:
Every time you fail a roll, you gain 1 xp.
You can spend xp to turn any die into a six for the purpose of advancement.

View File

@ -2,8 +2,6 @@
title: notes
created: 2022-07-24
updated: 2022-07-24
spoilers: yes
syndicated: no
---
## Spoilers
@ -22,3 +20,5 @@ Blavin is a secret agent, working for the Golden Iris, a secret society that wan
Nullar got tired of being a god and wanted to die, and Neddas agreed to help him. Shit went bad and turned Liandt to stone, and Nullar's leg to stone.
Now Nullar is trying to gather the Ginnarak crystals to assemble the *God Slayer* to attempt once more to end his own life.

View File

@ -0,0 +1,13 @@
$if(syndicated)$
<item>
<title>$if(title)$$title$$else$Title Unknown$endif$</title>
<author>dozens</author>
<guid isPermaLink="false">$if(created)$$created$$else$Unknown Date$endif$</guid>
<pubDate>$if(updated)$$updated$$else$Unknown Date$endif$</pubDate>
<description>
<![CDATA[
$body$
]]>
</description>
</item>
$endif$

View File

@ -0,0 +1,5 @@
$if(public)$
$body$
$endif$

456
www/index.html 100644
View File

@ -0,0 +1,456 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>BASEMENT QUEST</title>
<style>
html {
line-height: 1.5;
font-family: Georgia, serif;
font-size: 20px;
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 1em;
}
}
@media print {
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, 'Lucida Console', Consolas, monospace;
font-size: 85%;
margin: 0;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
<style>
@media only screen and (min-width: 1200px) {
nav {
position: fixed;
top: 1rem;
left: 0;
}
}
body {
padding-top: 0;
}
header {
text-align: inherit;
}
h1 {
margin: 0;
display: inline-block;
background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 5rem;
}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">BASEMENT QUEST</h1>
</header>
<nav id="TOC" role="doc-toc">
<ul>
<li><a href="#about">About</a></li>
<li><a href="#characters">Characters</a>
<ul>
<li><a href="#corraidhín">Corraidhín</a></li>
<li><a href="#glarg">Glarg</a></li>
<li><a href="#inky">Inky</a></li>
<li><a href="#jarrod">Jarrod</a></li>
<li><a href="#sneaky-willows">Sneaky Willows</a></li>
<li><a href="#tea-filler">Tea Filler</a></li>
</ul></li>
<li><a href="#meta">Meta</a>
<ul>
<li><a href="#policies">Policies</a></li>
<li><a href="#mechanics">Mechanics</a></li>
</ul></li>
<li><a href="#epistolary">Epistolary</a>
<ul>
<li><a href="#section">00001</a></li>
<li><a href="#section-1">00002</a></li>
<li><a href="#section-2">00003</a></li>
<li><a href="#meta-1">META</a></li>
<li><a href="#section-3">00004</a></li>
<li><a href="#section-4">00005</a></li>
</ul></li>
<li><a href="#bestiary">Bestiary</a></li>
</ul>
</nav>
<h2 id="about">About</h2>
<p>This is a game that me and the kids in the basement are playing over email.</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00004.html">thread</a></p>
<h2 id="characters">Characters</h2>
<h3 id="corraidhín">Corraidhín</h3>
<details>
<summary>
<p>Bio</p>
</summary>
<p>They call me Corraidhín, and while my wisened age may seem an impediment to our expedition I assure you I make up for it with my sharp wit and intellect! By trade I am a scholar, master of the histories of this realm, and a dabbler in the arcane and mystic arts.</p>
<p>I believe my skills naturally lend themselves to this expedition. Im certain youll need someone to elucidate upon the history of these artifacts, and should trouble come our way Im ready at hand with spells a plenty. Im not the best with a sword, but can hold my own with a bow staff, but it may be best to leave the fighting up to you younguns. If we encounter arcane ruins or cryptic texts youll find my skills just as useful as the finest blade in battle.</p>
<p>I think with my share of the reward Ill buy more books. Lots and lots of books, a whole library of books! And then Ill start a library, yes that sounds delightful. And maybe one of those books will have some information on ridding me of that accursed demon, but thats another story entirely.</p>
</details>
<ul>
<li>Player: sinatra</li>
<li>XP: 0</li>
<li>Skills: Do Anything 1</li>
</ul>
<h3 id="glarg">Glarg</h3>
<details>
<summary>
<p>Bio</p>
</summary>
<p>I am Glarg, an earth elemental who was conjured by a wizard who was immediately beheaded after summoning me. By some freak accident I was not sent back home to the earth elemental plane when the spell should have ended. While I have learned the common tonge in my time on this plane, I have not developed the ability to speak it, because I have no mouth. Im a very gentle soul who is misunderstood because of my hard, cold exterior.</p>
<p>Im pretty durable and good with rocks.</p>
<p>With my share of the money, I plan to hire a mage to send me home, or turn everyone else into earth elementals.</p>
</details>
<ul>
<li>Player: kindrobot</li>
<li>XP: 0</li>
<li>Skills: Do Anything 1</li>
</ul>
<h3 id="inky">Inky</h3>
<details>
<summary>
<p>Bio</p>
</summary>
<p>Inkulos Iridis greets you merrily! Some call me Inky the Tiny because of my slight size (perfectly average for imps, I assure you!) and a fondness for ink.</p>
<p>I may be small and nowhere as battle-hardened as knights in shining armour, but I can skip out of a monsters grasp before you can say “scram!”, slip through the cracks (often unseen), scout for useful items, and brew all kinds of ink with special effects for discerning drinkers.</p>
<p>What do you plan to do with your cut of the money? Buy lots of ink ingredients, of course! With the money, the very first ink patio with the best paper nibbles will be opening to serve all from far and wide very soon!</p>
</details>
<ul>
<li>Player: mio</li>
<li>XP: 0</li>
<li>Skills: Do Anything 1</li>
</ul>
<h3 id="jarrod">Jarrod</h3>
<details>
<summary>
<p>Bio</p>
</summary>
<p>A broad-chested, olive skinned human finishes a pint of ale with a long swig. He greets the group with a merry-looking smile, though it doesnt seem to touch his eyes. He seems a touch distracted, as if something else is on his mind. A feeling of lingering sadness touches his aura.</p>
<p>“Greetings, my friends! My name is Jarrod. And this here …” he taps a heavy warhammer leaning against the back of his chair “… is Gertrude. When it comes to danger, consider us your shield. I will blunt what dangers may come from ahead and protect those who shelter behind. Im more than good in a fight, specializing in up-close battles and …” he gives a small smirk “… alternative forms of negotiations.”</p>
<p>He leans over and places his elbows on the table, tenting his fingers and leaning in with his chin touching them as he continues. A thin leather cord adorned with small charms carved from bone is draped around his left wrist.</p>
<p>“Other than that, Im willing to take on cooking chores and spin the occasional tale around a campfire. My cut of the money goes towards opening my own tavern when I retire.”</p>
</details>
<ul>
<li>Player: marc</li>
<li>XP: 0</li>
<li>Skills: Do Anything 1</li>
</ul>
<h3 id="sneaky-willows">Sneaky Willows</h3>
<details>
<summary>
<p>Bio</p>
</summary>
<p>Im “Sneaky” Willows (nobody knows my actual name), an elvish pickpocket with a love for sneakin, stabbin and music playin! Some people say Im no good at music playin, but then I go sneakin and stabbin em!</p>
<p>On this team I think Im gonna be good at sneakin up to those crystals and grabbin em right from under the guards noses!</p>
<p>With my money Im plannin to hire a bard to teach me more music, so I can really impress people with my playin and maybe not even have to stab them!</p>
</details>
<ul>
<li>Player: nico</li>
<li>XP: 0</li>
<li>Skills: Do Anything 1</li>
</ul>
<h3 id="tea-filler">Tea Filler</h3>
<details>
<summary>
<p>Bio</p>
</summary>
<p>Who: Teefoon Filler of the Bucket, Knight of the 3rd order of Balmarlovemeer, Crester of the Golden-Fringed Ridge and 2nd to the Keeper of the Grimoire Glorious. You may call me “Tea.” (Tea is, notably, a giant. ~11ft tall).</p>
<p>What: Retired Cleric turned Archeologist.</p>
<p>Cash: A sturdy wagon and 5 head of oxen to pull it. I wish to travel further than my legs can take me.</p>
</details>
<ul>
<li>Player: eli</li>
<li>XP: 0</li>
<li>Skills: Do Anything 1</li>
</ul>
<h2 id="meta">Meta</h2>
<p>Welcome to Basement Quest!</p>
<p>Were gonna play this by ear, and cross each bridge only when we get to it.</p>
<h3 id="policies">Policies</h3>
<ul>
<li><p>Safety: Practice safe roleplaying.</p></li>
<li><p>Cadence: Ill move the story along roughly once a week. Hopefully that gives everybody time to post something and participate.</p></li>
<li><p>Inclusion over realism: If you disappear for a while and then come back, your character will immediately reappear as though theyve been there the whole time. Come and go as you please. Open door policy!</p></li>
<li><p>Linearity: Respond only to the most recent email in the thread. (We might play around with time later, but for now, lets keep it simple.)</p></li>
</ul>
<h3 id="mechanics">Mechanics</h3>
<p>Shoes in the Dark: https://dozens.itch.io/shoes-in-the-dark</p>
<p>To do something, say that you do it, and then it probably happens!</p>
<p>If there is a risk, or chance of failure, well roll dice to determine the outcome. Well use a variation of “Roll for Shoes” because its probably the most simple system there is. Everybody will start out pretty even skills wise. But you will eventually get really good at really specific things.</p>
<p>Everybody starts with one skill: <em>Do anything 1</em></p>
<p>So to attempt to <em>do anything</em>, roll 1d6.</p>
<ul>
<li>1 - 3: Things go poorly. Gain 1 xp.</li>
<li>4 - 5: Partial success / success at cost</li>
<li>6: Great success!</li>
</ul>
<p>If you roll all sixes, you gain a new +1 skill which must be a subset of the skill you just used.</p>
<p>Example:</p>
<blockquote>
<p>Player: I kick down the door. Ill roll Do Anything (1) aaaand, thats a six!”</p>
<p>Referee: You now have “Kicking Down Doors 2”</p>
<p>Later….</p>
<p>Player: I bust down the door with a flying kick! Ill roll Kicking Down Doors 2 aaaand, two sixes!</p>
<p>Referee: You now have “Doorbane 3”</p>
<p>Player: Siiiick, doors fear me.</p>
</blockquote>
<p>Every time you fail a roll, you gain 1 xp.</p>
<p>You can spend xp to turn any die into a six for the purpose of advancement.</p>
<h2 id="epistolary">Epistolary</h2>
<p>These are all the letters I send to the email list.</p>
<p>You can subscribe to these updates with the rss feed.</p>
<p>https://tilde.town/~dozens/basementquest/rss.xml</p>
<h3 id="section">00001</h3>
<p>“Congratulations!” The slightly tipsy hobbit grins and salutes you with his martini. “On Retrieval Team 43s inaugural mission! Im so excited for you, Im sure youll do fantastic!”</p>
<p>You are all seated around a table in the corner at Lucys Basement. It is dimly lit and fairly noisy. The walls are covered in red velvet curtains, and the tablecloths have little gold tassels. A cloud of purple smoke from candles, cigars, and pipes hangs in the air. Waiters bustle between tables refilling drinks.</p>
<p>“So to recap, the Benefactor has tasked you with retrieving the five fabled Ginnarak Crystals. I, Blavin Blandfoot, will be your case manager. You will be paid handsomely for each crystal you retrieve. And if you retrieve all 5, youll get to meet the Benefactor at be their guest at their <em>glorious mansion!</em></p>
<p>“The first crystal has been spotted near a Gnomish dig site in the Tammineaux Forest, just east of here.”</p>
<p>“I recommend getting started right away!” He polishes off his drink and squints at his empty glass. “Well, maybe first thing in the morning. Waiter!”</p>
<ul>
<li>Who are you?</li>
<li>What role do you think you will fill on the team?</li>
<li>What do you plan to do with your cut of the money?</li>
</ul>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00015.html">www</a></p>
<h3 id="section-1">00002</h3>
<p>Blavin provides you with a multibeast for your excursion. “Courtesy of the Benefactor!” You pack it up with food and supplies, and trek into the Tammineaux Forest in search of the first Ginnarak Crystal.</p>
<p>The forest is lush, thick, and green. You have to hack your way through the vines and the brush. There are stinging insects, squawking birds, and dangerous forest creatures a plenty. It is hot and sticky.</p>
<p>How will you ever find your way through this wilderness to the dig site?</p>
<p>“Shouldnt be too hard,” you remember Blavin saying back at Lucys, gesturing carelessly and sloshing a little bit of his fourth drink. “Theyre gnomes, after all! Just follow the sound of explosions and screaming.”</p>
<p>Sure enough, before long you hear a mechanical droning and some blasting up ahead, punctuated now and then by high pitched screams, and you guide the multibeast in that direction.</p>
<p>Suddenly you are ambushed by a troop of blahoblins! Awful looking things. Taut rubbery gray skin. Long flat noses stick out way far from their faces. And so do their protruding, lipless mouths full of sharp pointy teeth. You didnt hear them over the noise of the shrieking parrots and, in the distance, the shrieking gnomes.</p>
<p>“SHOE SHINE!!” the first one yells. It is wearing a gold ring on each finger (minus the three fingers it is missing), two in each ear, and one in its nose. It is dragging a vat of black polish nearly as tall as it is.</p>
<p>“SHOE SHINE!!” a second one agrees. It is wearing a nice waistcoat with large gaudy buttons, and a nice looking pocket watch on a gold chain. It is dragging a comfy looking chair stuffed with bits of fluff and leaves and fur.</p>
<p>A third one screams, “SHOE SHINE SHOE SHINE!” It has several gold teeth and carries a huge block of cheese secured to its back with long loops of hempen rope.</p>
<p>The fourth and final one is wearing what looks like freshly painted red shoes and is carrying a lit torch. “SHOE SHIIIIINE!” it screams. It is wearing a gold medallion on a gold necklace.</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00015.html">www</a></p>
<h3 id="section-2">00003</h3>
<blockquote>
<p>“SHOE SHINE!” Bellows Tea, with a full bodied laugh!</p>
<p>With a well practiced move, faster than one would think giant like Tea could move, Tea removes an object from their satchel.</p>
<p>…at first glance it appears to be a flail without a handle, but is actually a spare pair of giant boots, held by their laces.</p>
<p>“These could indeed use a good shining.”</p>
<p>The boot are spectacularly large, probably a 1/2 size too large, in all honest, for even Teas feet.</p>
<p>The boots have gold eyelets.</p>
</blockquote>
<p>Earrings greedily snatches the boots and start washing, drying, and polishing them to a shine. Waistcoat eagerly tugs on Teas wrist and guides him to the comfy chair, which is decidedly too small for his bulky frame. Teeth graciously offers him a wedge of cheese.</p>
<p>Depending on how observant Tea is, he may or may not notice that the boots are returned to him with 1 - 3 fewer eyelets.</p>
<blockquote>
<p>Bending down, Inky sniffs the bottles carefully, mumbling, “Creosote, shellac, hopweed … ou, wild cherry liquorice.” Then, a little louder to one of the blahoblins, though it came out not much more than a squeak, “Might I ask from where did you get these?”</p>
</blockquote>
<p>“Shoe Polish! We Make! Roots and ash!” shouts Waistcoat. They seem to only have the one volume.</p>
<p>“Beeswax!” yells Earrings.</p>
<p>“Resin!” cries Teeth.</p>
<p>“SHOE SHIIINE!” they all cry in unison.</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00022.html">www</a></p>
<h3 id="meta-1">META</h3>
<p>This might be a good time to introduce the game mechanic.</p>
<p>For the most part, if you say you do something, it just happens.</p>
<p>But if you want to do something risky, and/or if the outcome is uncertain, you can roll a number of six-sided dice.</p>
<p>Id like to try using the <em>Shoes in the Dark</em> rules:</p>
<p>https://dozens.itch.io/shoes-in-the-dark</p>
<p>Basically, everybody currently has the skill “Do Anything 1”, which means if you want to do anything, you can roll 1 die.</p>
<p>On a 1 - 3, things go poorly. (And you gain 1 experience point. More on that in a bit.)</p>
<p>On a 4 - 5, you do the thing, but at a cost, or with a complication, or its just a partial success.</p>
<p>On a 6, full success!! Yay, you!!</p>
<p>(When rolling multiple dice, you read the single highest roll.)</p>
<p>Heres where stuff gets fun. If you roll all sixes (so, 1 six on a 1d6 roll, 2 sixes on a 2d6 roll, etc.) then you level up and get a new skill. The new skill A) is a subset of the skill/action you just performed and, B) increases that skill by one.</p>
<p>e.g. I challenge a mugwump to a pie eating contest and roll Do Anything 1. I roll a six, so I win the contest! And also I gain a new skill, Belly Of Steel 2.</p>
<p>Finally, every time you fail a roll (by rolling 1 - 3) you gain 1 experience point. You can spend 1 experience at any time to turn any one die into a six <em>for the purposes of advancement</em>.</p>
<p>SO WHAT DOES THIS ALL MEAN???</p>
<p>When you interact with the blahoblins, consider whether there is an element of risk. If so, roll the appropriate amount of dice (1, in this case) and include the result in your description. If its a success, describe the success. If its a partial success or a failure, just describe what you do, and Ill describe the complication, or how things get worse.</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00023.html">www</a></p>
<h3 id="section-3">00004</h3>
<blockquote>
<p>“And jolly good polish too, it looks like,” Inky replies, squinting a bit at the ichor being smeared onto the boots in Earrings large calloused hands. “I hear there be some gnomes hereabouts? A camp? With your remarkable service, I bet theyd be coming to you all the time to get their boots cleaned.”</p>
</blockquote>
<p>“GNOMES!?” Earrings interrobangs loudly and questioningly. It brings its hands to the sides of its face, covering its ear holes, and wags its oversized head in dismay, squeezing its tiny eyes shut. In the process, it smears polish around its face.</p>
<p>“Gnomes there!” shouts Waistcoat. Its hands busy polishing, it tosses its head, gesturing with its prodigious proboscis in the direction you were heading. You continue to hear bangs and booms in the distance every once a while.</p>
<blockquote>
<p>Glarg gurgles something to the effect of “gluggurguuuurglaaaachhhh?” Its stance is one of surprise as its disposition changes to that of inquisition as its head cranes down to look at the blahoblin carrying the smelly rock on its back.</p>
</blockquote>
<p>Teeth looks questioningly up at Glarg and experimentally gargles back up at it. “GURGLE BURBLE GLUG GLUG?” It smiles apologetically (a fearsome sight, its protruding jaws full of tiny pointy teeth) and shrugs and asks, “Shoe shine?”</p>
<blockquote>
<p>It attempts to pick that whole blahoblin up and bring the smelly rock to its face for a closer inspection.</p>
</blockquote>
<p>“WAAAAAAH!” Teeth kicks its feet ineffectively and is quite helplessly tied to the big smelly rock when Glarg picks it up. The smelly rock smells pungent, sharp, earthy, moldy. Definitely could be food.</p>
<p>By this time the blahoblins have polished the shoes of everybody who has consented to it, and are packing up. Except for Teeth who is being detained by the earth elemental.</p>
<p>Red Shoes reappears from wherever they have been this whole time with a sly smile and rejoins its comrades.</p>
<p>Your pockets have successfully been picked while you were distracted with the shoe shine, but not of anything of particular value.</p>
<p>What small item(s) will you notice is missing in the hours and days to come? How will its absence be a minor inconvenience?</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00031.html">www</a></p>
<h3 id="section-4">00005</h3>
<blockquote>
<p>As the blahoblins were packing up, Inky persuades Waistcoat to sell a few small bottles of shoe polish, a roughly round piece of broken glass and scraps of cheesecloth from the mountain of debris previously on the ground. Inky rolls Do Anything 1 and rolls a 4.</p>
</blockquote>
<p>Inky successfully persuades Waistcoat to sell a few baubles and trinkets with the first roll of the game!</p>
<p>They haggle back and forth a little bit, and Inky ends up paying a little more than they wanted to, but they get all the stuff they wanted. Yay commerce!</p>
<p>Having concluded business, the blahoblins pack up and disappear into the bushes toting their chair, cheese, and vat of polish.</p>
<p>The sound of mechanical droning and periodic explosions compel you forward to the dig site.</p>
<p>It is easy to find.</p>
<p>It is a large hole blasted deep into the ground. There are drills, and conveyor belts, earth moving machines, and all kinds of gadgets and gizmos, the purpose of which is not always readily apparent. And there is a zip line that seems to be the only way down to the bottom.</p>
<p>The site is absolutely teeming with gnomes. Diminutive humanoids with bright red noses and long, long ears, and long, nimble fingers. All gnomes are compulsive tinkerers and mechanics, and build fantastic contraptions. All gnomes are women, and are all highly explosive. Which makes their combustion powered machines extremely dangerous, both for themselves and for any unfortunate bystanders close enough to get caught in the blast.</p>
<p>A gnome in a white hat comes running up to you. “You there! Hey! Yes, you!”</p>
<p>“Are you the retrieval team? Weve been expecting you! The whole dig is halted because we accidentally blasted into a whole nest of Kobits, and they wont let us get near to keep digging! They keep sabotaging our machines when we try!”</p>
<p>“They also stole the Ginnarak Crystal that we found! That thing could have powered such glorious new machines!” She pouts.</p>
<p>In the background, a gnome who had crawled half way into a coal bin in the side of some kind of excavator suddenly scrambles quickly out, smoking, and runs around in circles in a panic. Nearby gnomes dive out of the way as she erupts in a small ball of fire. The gnomes wait for the smoke to clear and then immediately return to working on the contraption.</p>
<p>The foreman continues talking to you as though nothing happened. She leads you over to the edge of the hole and points to the bottom.</p>
<p>“The entrance to their cave is right down there! The zip line is the second fastest way down.”</p>
<p>WHAT DO YOU DO</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00035.html">www</a></p>
<h2 id="bestiary">Bestiary</h2>
<dl>
<dt>Blahoblin</dt>
<dd><p>a little goblinoid with the head of a goblin shark</p>
</dd>
<dd><figure>
<img src="goblin.gif" alt="blahoblin" /><figcaption aria-hidden="true">blahoblin</figcaption>
</figure>
</dd>
<dt>Egre</dt>
<dd><p>Giant muscle bird. Proud, muscly, vain, fashion forward. Beautiful plumage.</p>
</dd>
<dt>Gnome</dt>
<dd><p>Tiny tinkerers. Highly combustible. Very explosive. Like making contraptions powered by steam and/or coal</p>
</dd>
<dd><p>All gnomes are women. All gnomes are engineers. They have bright red noses, and very long ears. And long nimble fingers.</p>
</dd>
<dt>Kobit</dt>
<dd><p>literally “tunnel host”</p>
</dd>
<dd><p>Subterranean scaly ratdog creatures. Big luminous eyes, long droopy mustaches.</p>
</dd>
</dl>
</body>
</html>

167
www/rss.xml 100644
View File

@ -0,0 +1,167 @@
<?xml version="1.0" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link href="https://tilde.town/~dozens/basementquest/rss.xml" rel="self" type="application/rss+xml" />
<title>BASEMENT QWEST</title>
<link>https://tilde.town/~dozens/basementquest/rss.xml</link>
<description>Friends having ADVENTURES! Huzzah!</description>
<item>
<title>00003 - polish</title>
<author>dozens</author>
<guid isPermaLink="false">2022-07-24</guid>
<pubDate>2022-07-24</pubDate>
<description>
<![CDATA[
<h3 id="section">00003</h3>
<blockquote>
<p>“SHOE SHINE!” Bellows Tea, with a full bodied laugh!</p>
<p>With a well practiced move, faster than one would think giant like Tea could move, Tea removes an object from their satchel.</p>
<p>…at first glance it appears to be a flail without a handle, but is actually a spare pair of giant boots, held by their laces.</p>
<p>“These could indeed use a good shining.”</p>
<p>The boot are spectacularly large, probably a 1/2 size too large, in all honest, for even Teas feet.</p>
<p>The boots have gold eyelets.</p>
</blockquote>
<p>Earrings greedily snatches the boots and start washing, drying, and polishing them to a shine. Waistcoat eagerly tugs on Teas wrist and guides him to the comfy chair, which is decidedly too small for his bulky frame. Teeth graciously offers him a wedge of cheese.</p>
<p>Depending on how observant Tea is, he may or may not notice that the boots are returned to him with 1 - 3 fewer eyelets.</p>
<blockquote>
<p>Bending down, Inky sniffs the bottles carefully, mumbling, “Creosote, shellac, hopweed … ou, wild cherry liquorice.” Then, a little louder to one of the blahoblins, though it came out not much more than a squeak, “Might I ask from where did you get these?”</p>
</blockquote>
<p>“Shoe Polish! We Make! Roots and ash!” shouts Waistcoat. They seem to only have the one volume.</p>
<p>“Beeswax!” yells Earrings.</p>
<p>“Resin!” cries Teeth.</p>
<p>“SHOE SHIIINE!” they all cry in unison.</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00022.html">www</a></p>
]]>
</description>
</item>
<item>
<title>00001 - we meet in a tavern</title>
<author>dozens</author>
<guid isPermaLink="false">2022-07-24</guid>
<pubDate>2022-07-24</pubDate>
<description>
<![CDATA[
<h3 id="section">00001</h3>
<p>“Congratulations!” The slightly tipsy hobbit grins and salutes you with his martini. “On Retrieval Team 43s inaugural mission! Im so excited for you, Im sure youll do fantastic!”</p>
<p>You are all seated around a table in the corner at Lucys Basement. It is dimly lit and fairly noisy. The walls are covered in red velvet curtains, and the tablecloths have little gold tassels. A cloud of purple smoke from candles, cigars, and pipes hangs in the air. Waiters bustle between tables refilling drinks.</p>
<p>“So to recap, the Benefactor has tasked you with retrieving the five fabled Ginnarak Crystals. I, Blavin Blandfoot, will be your case manager. You will be paid handsomely for each crystal you retrieve. And if you retrieve all 5, youll get to meet the Benefactor at be their guest at their <em>glorious mansion!</em></p>
<p>“The first crystal has been spotted near a Gnomish dig site in the Tammineaux Forest, just east of here.”</p>
<p>“I recommend getting started right away!” He polishes off his drink and squints at his empty glass. “Well, maybe first thing in the morning. Waiter!”</p>
<ul>
<li>Who are you?</li>
<li>What role do you think you will fill on the team?</li>
<li>What do you plan to do with your cut of the money?</li>
</ul>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00015.html">www</a></p>
]]>
</description>
</item>
<item>
<title>meta</title>
<author>dozens</author>
<guid isPermaLink="false">2022-07-24</guid>
<pubDate>2022-07-24</pubDate>
<description>
<![CDATA[
<h3 id="meta">META</h3>
<p>This might be a good time to introduce the game mechanic.</p>
<p>For the most part, if you say you do something, it just happens.</p>
<p>But if you want to do something risky, and/or if the outcome is uncertain, you can roll a number of six-sided dice.</p>
<p>Id like to try using the <em>Shoes in the Dark</em> rules:</p>
<p><a href="https://dozens.itch.io/shoes-in-the-dark" class="uri">https://dozens.itch.io/shoes-in-the-dark</a></p>
<p>Basically, everybody currently has the skill “Do Anything 1”, which means if you want to do anything, you can roll 1 die.</p>
<p>On a 1 - 3, things go poorly. (And you gain 1 experience point. More on that in a bit.)</p>
<p>On a 4 - 5, you do the thing, but at a cost, or with a complication, or its just a partial success.</p>
<p>On a 6, full success!! Yay, you!!</p>
<p>(When rolling multiple dice, you read the single highest roll.)</p>
<p>Heres where stuff gets fun. If you roll all sixes (so, 1 six on a 1d6 roll, 2 sixes on a 2d6 roll, etc.) then you level up and get a new skill. The new skill A) is a subset of the skill/action you just performed and, B) increases that skill by one.</p>
<p>e.g. I challenge a mugwump to a pie eating contest and roll Do Anything 1. I roll a six, so I win the contest! And also I gain a new skill, Belly Of Steel 2.</p>
<p>Finally, every time you fail a roll (by rolling 1 - 3) you gain 1 experience point. You can spend 1 experience at any time to turn any one die into a six <em>for the purposes of advancement</em>.</p>
<p>SO WHAT DOES THIS ALL MEAN???</p>
<p>When you interact with the blahoblins, consider whether there is an element of risk. If so, roll the appropriate amount of dice (1, in this case) and include the result in your description. If its a success, describe the success. If its a partial success or a failure, just describe what you do, and Ill describe the complication, or how things get worse.</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00023.html">www</a></p>
]]>
</description>
</item>
<item>
<title>00005 - gnomes</title>
<author>dozens</author>
<guid isPermaLink="false">2022-07-24</guid>
<pubDate>2022-07-24</pubDate>
<description>
<![CDATA[
<h3 id="section">00005</h3>
<blockquote>
<p>As the blahoblins were packing up, Inky persuades Waistcoat to sell a few small bottles of shoe polish, a roughly round piece of broken glass and scraps of cheesecloth from the mountain of debris previously on the ground. Inky rolls Do Anything 1 and rolls a 4.</p>
</blockquote>
<p>Inky successfully persuades Waistcoat to sell a few baubles and trinkets with the first roll of the game!</p>
<p>They haggle back and forth a little bit, and Inky ends up paying a little more than they wanted to, but they get all the stuff they wanted. Yay commerce!</p>
<p>Having concluded business, the blahoblins pack up and disappear into the bushes toting their chair, cheese, and vat of polish.</p>
<p>The sound of mechanical droning and periodic explosions compel you forward to the dig site.</p>
<p>It is easy to find.</p>
<p>It is a large hole blasted deep into the ground. There are drills, and conveyor belts, earth moving machines, and all kinds of gadgets and gizmos, the purpose of which is not always readily apparent. And there is a zip line that seems to be the only way down to the bottom.</p>
<p>The site is absolutely teeming with gnomes. Diminutive humanoids with bright red noses and long, long ears, and long, nimble fingers. All gnomes are compulsive tinkerers and mechanics, and build fantastic contraptions. All gnomes are women, and are all highly explosive. Which makes their combustion powered machines extremely dangerous, both for themselves and for any unfortunate bystanders close enough to get caught in the blast.</p>
<p>A gnome in a white hat comes running up to you. “You there! Hey! Yes, you!”</p>
<p>“Are you the retrieval team? Weve been expecting you! The whole dig is halted because we accidentally blasted into a whole nest of Kobits, and they wont let us get near to keep digging! They keep sabotaging our machines when we try!”</p>
<p>“They also stole the Ginnarak Crystal that we found! That thing could have powered such glorious new machines!” She pouts.</p>
<p>In the background, a gnome who had crawled half way into a coal bin in the side of some kind of excavator suddenly scrambles quickly out, smoking, and runs around in circles in a panic. Nearby gnomes dive out of the way as she erupts in a small ball of fire. The gnomes wait for the smoke to clear and then immediately return to working on the contraption.</p>
<p>The foreman continues talking to you as though nothing happened. She leads you over to the edge of the hole and points to the bottom.</p>
<p>“The entrance to their cave is right down there! The zip line is the second fastest way down.”</p>
<p>WHAT DO YOU DO</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00035.html">www</a></p>
]]>
</description>
</item>
<item>
<title>00002 - shoe shine</title>
<author>dozens</author>
<guid isPermaLink="false">2022-07-24</guid>
<pubDate>2022-07-24</pubDate>
<description>
<![CDATA[
<h3 id="section">00002</h3>
<p>Blavin provides you with a multibeast for your excursion. “Courtesy of the Benefactor!” You pack it up with food and supplies, and trek into the Tammineaux Forest in search of the first Ginnarak Crystal.</p>
<p>The forest is lush, thick, and green. You have to hack your way through the vines and the brush. There are stinging insects, squawking birds, and dangerous forest creatures a plenty. It is hot and sticky.</p>
<p>How will you ever find your way through this wilderness to the dig site?</p>
<p>“Shouldnt be too hard,” you remember Blavin saying back at Lucys, gesturing carelessly and sloshing a little bit of his fourth drink. “Theyre gnomes, after all! Just follow the sound of explosions and screaming.”</p>
<p>Sure enough, before long you hear a mechanical droning and some blasting up ahead, punctuated now and then by high pitched screams, and you guide the multibeast in that direction.</p>
<p>Suddenly you are ambushed by a troop of blahoblins! Awful looking things. Taut rubbery gray skin. Long flat noses stick out way far from their faces. And so do their protruding, lipless mouths full of sharp pointy teeth. You didnt hear them over the noise of the shrieking parrots and, in the distance, the shrieking gnomes.</p>
<p>“SHOE SHINE!!” the first one yells. It is wearing a gold ring on each finger (minus the three fingers it is missing), two in each ear, and one in its nose. It is dragging a vat of black polish nearly as tall as it is.</p>
<p>“SHOE SHINE!!” a second one agrees. It is wearing a nice waistcoat with large gaudy buttons, and a nice looking pocket watch on a gold chain. It is dragging a comfy looking chair stuffed with bits of fluff and leaves and fur.</p>
<p>A third one screams, “SHOE SHINE SHOE SHINE!” It has several gold teeth and carries a huge block of cheese secured to its back with long loops of hempen rope.</p>
<p>The fourth and final one is wearing what looks like freshly painted red shoes and is carrying a lit torch. “SHOE SHIIIIINE!” it screams. It is wearing a gold medallion on a gold necklace.</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00015.html">www</a></p>
]]>
</description>
</item>
<item>
<title>00004 - pockets picked</title>
<author>dozens</author>
<guid isPermaLink="false">2022-07-24</guid>
<pubDate>2022-07-24</pubDate>
<description>
<![CDATA[
<h3 id="section">00004</h3>
<blockquote>
<p>“And jolly good polish too, it looks like,” Inky replies, squinting a bit at the ichor being smeared onto the boots in Earrings large calloused hands. “I hear there be some gnomes hereabouts? A camp? With your remarkable service, I bet theyd be coming to you all the time to get their boots cleaned.”</p>
</blockquote>
<p>“GNOMES!?” Earrings interrobangs loudly and questioningly. It brings its hands to the sides of its face, covering its ear holes, and wags its oversized head in dismay, squeezing its tiny eyes shut. In the process, it smears polish around its face.</p>
<p>“Gnomes there!” shouts Waistcoat. Its hands busy polishing, it tosses its head, gesturing with its prodigious proboscis in the direction you were heading. You continue to hear bangs and booms in the distance every once a while.</p>
<blockquote>
<p>Glarg gurgles something to the effect of “gluggurguuuurglaaaachhhh?” Its stance is one of surprise as its disposition changes to that of inquisition as its head cranes down to look at the blahoblin carrying the smelly rock on its back.</p>
</blockquote>
<p>Teeth looks questioningly up at Glarg and experimentally gargles back up at it. “GURGLE BURBLE GLUG GLUG?” It smiles apologetically (a fearsome sight, its protruding jaws full of tiny pointy teeth) and shrugs and asks, “Shoe shine?”</p>
<blockquote>
<p>It attempts to pick that whole blahoblin up and bring the smelly rock to its face for a closer inspection.</p>
</blockquote>
<p>“WAAAAAAH!” Teeth kicks its feet ineffectively and is quite helplessly tied to the big smelly rock when Glarg picks it up. The smelly rock smells pungent, sharp, earthy, moldy. Definitely could be food.</p>
<p>By this time the blahoblins have polished the shoes of everybody who has consented to it, and are packing up. Except for Teeth who is being detained by the earth elemental.</p>
<p>Red Shoes reappears from wherever they have been this whole time with a sly smile and rejoins its comrades.</p>
<p>Your pockets have successfully been picked while you were distracted with the shoe shine, but not of anything of particular value.</p>
<p>What small item(s) will you notice is missing in the hours and days to come? How will its absence be a minor inconvenience?</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00031.html">www</a></p>
]]>
</description>
</item>
</channel>
</rss>

View File

@ -178,14 +178,15 @@
</header>
<nav id="TOC" role="doc-toc">
<ul>
<li><a href="#about">About</a></li>
<li><a href="#characters">Characters</a>
<ul>
<li><a href="#sneaky-willows">Sneaky Willows</a></li>
<li><a href="#tea-filler">Tea Filler</a></li>
<li><a href="#glarg">Glarg</a></li>
<li><a href="#corraidhín">Corraidhín</a></li>
<li><a href="#glarg">Glarg</a></li>
<li><a href="#inky">Inky</a></li>
<li><a href="#jarrod">Jarrod</a></li>
<li><a href="#sneaky-willows">Sneaky Willows</a></li>
<li><a href="#tea-filler">Tea Filler</a></li>
</ul></li>
<li><a href="#meta">Meta</a>
<ul>
@ -209,71 +210,46 @@
<li><a href="#spoilers">Spoilers</a></li>
</ul>
</nav>
<h2 id="about">About</h2>
<p>This is a game that me and the kids in the basement are playing over email.</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00004.html">thread</a></p>
<h2 id="characters">Characters</h2>
<h3 id="sneaky-willows">Sneaky Willows</h3>
<details>
<summary>
Bio
</summary>
<p>Im “Sneaky” Willows (nobody knows my actual name), an elvish pickpocket with a love for sneakin, stabbin and music playin! Some people say Im no good at music playin, but then I go sneakin and stabbin em!</p>
<p>On this team I think Im gonna be good at sneakin up to those crystals and grabbin em right from under the guards noses!</p>
With my money Im plannin to hire a bard to teach me more music, so I can really impress people with my playin and maybe not even have to stab them!
</details>
<ul>
<li>Player: nico</li>
<li>XP: 0</li>
<li>Skills: Do Anything 1</li>
</ul>
<h3 id="tea-filler">Tea Filler</h3>
<details>
<summary>
Bio
</summary>
<p>Who: Teefoon Filler of the Bucket, Knight of the 3rd order of Balmarlovemeer, Crester of the Golden-Fringed Ridge and 2nd to the Keeper of the Grimoire Glorious. You may call me “Tea.” (Tea is, notably, a giant. ~11ft tall).</p>
<p>What: Retired Cleric turned Archeologist.</p>
Cash: A sturdy wagon and 5 head of oxen to pull it. I wish to travel further than my legs can take me.
</details>
<ul>
<li>Player: eli</li>
<li>XP: 0</li>
<li>Skills: Do Anything 1</li>
</ul>
<h3 id="glarg">Glarg</h3>
<details>
<summary>
Bio
</summary>
<p>I am Glarg, an earth elemental who was conjured by a wizard who was immediately beheaded after summoning me. By some freak accident I was not sent back home to the earth elemental plane when the spell should have ended. While I have learned the common tonge in my time on this plane, I have not developed the ability to speak it, because I have no mouth. Im a very gentle soul who is misunderstood because of my hard, cold exterior.</p>
<p>Im pretty durable and good with rocks.</p>
With my share of the money, I plan to hire a mage to send me home, or turn everyone else into earth elementals.
</details>
<ul>
<li>Player: kindrobot</li>
<li>XP: 0</li>
<li>Skills: Do Anything 1</li>
</ul>
<h3 id="corraidhín">Corraidhín</h3>
<details>
<summary>
Bio
<p>Bio</p>
</summary>
<p>They call me Corraidhín, and while my wisened age may seem an impediment to our expedition I assure you I make up for it with my sharp wit and intellect! By trade I am a scholar, master of the histories of this realm, and a dabbler in the arcane and mystic arts.</p>
<p>I believe my skills naturally lend themselves to this expedition. Im certain youll need someone to elucidate upon the history of these artifacts, and should trouble come our way Im ready at hand with spells a plenty. Im not the best with a sword, but can hold my own with a bow staff, but it may be best to leave the fighting up to you younguns. If we encounter arcane ruins or cryptic texts youll find my skills just as useful as the finest blade in battle.</p>
I think with my share of the reward Ill buy more books. Lots and lots of books, a whole library of books! And then Ill start a library, yes that sounds delightful. And maybe one of those books will have some information on ridding me of that accursed demon, but thats another story entirely.
<p>I think with my share of the reward Ill buy more books. Lots and lots of books, a whole library of books! And then Ill start a library, yes that sounds delightful. And maybe one of those books will have some information on ridding me of that accursed demon, but thats another story entirely.</p>
</details>
<ul>
<li>Player: sinatra</li>
<li>XP: 0</li>
<li>Skills: Do Anything 1</li>
</ul>
<h3 id="glarg">Glarg</h3>
<details>
<summary>
<p>Bio</p>
</summary>
<p>I am Glarg, an earth elemental who was conjured by a wizard who was immediately beheaded after summoning me. By some freak accident I was not sent back home to the earth elemental plane when the spell should have ended. While I have learned the common tonge in my time on this plane, I have not developed the ability to speak it, because I have no mouth. Im a very gentle soul who is misunderstood because of my hard, cold exterior.</p>
<p>Im pretty durable and good with rocks.</p>
<p>With my share of the money, I plan to hire a mage to send me home, or turn everyone else into earth elementals.</p>
</details>
<ul>
<li>Player: kindrobot</li>
<li>XP: 0</li>
<li>Skills: Do Anything 1</li>
</ul>
<h3 id="inky">Inky</h3>
<details>
<summary>
Bio
<p>Bio</p>
</summary>
<p>Inkulos Iridis greets you merrily! Some call me Inky the Tiny because of my slight size (perfectly average for imps, I assure you!) and a fondness for ink.</p>
<p>I may be small and nowhere as battle-hardened as knights in shining armour, but I can skip out of a monsters grasp before you can say “scram!”, slip through the cracks (often unseen), scout for useful items, and brew all kinds of ink with special effects for discerning drinkers.</p>
What do you plan to do with your cut of the money? Buy lots of ink ingredients, of course! With the money, the very first ink patio with the best paper nibbles will be opening to serve all from far and wide very soon!
<p>What do you plan to do with your cut of the money? Buy lots of ink ingredients, of course! With the money, the very first ink patio with the best paper nibbles will be opening to serve all from far and wide very soon!</p>
</details>
<ul>
<li>Player: mio</li>
@ -283,18 +259,46 @@ What do you plan to do with your cut of the money? Buy lots of ink ingredients,
<h3 id="jarrod">Jarrod</h3>
<details>
<summary>
Bio
<p>Bio</p>
</summary>
<p>A broad-chested, olive skinned human finishes a pint of ale with a long swig. He greets the group with a merry-looking smile, though it doesnt seem to touch his eyes. He seems a touch distracted, as if something else is on his mind. A feeling of lingering sadness touches his aura.</p>
<p>“Greetings, my friends! My name is Jarrod. And this here …” he taps a heavy warhammer leaning against the back of his chair “… is Gertrude. When it comes to danger, consider us your shield. I will blunt what dangers may come from ahead and protect those who shelter behind. Im more than good in a fight, specializing in up-close battles and …” he gives a small smirk “… alternative forms of negotiations.”</p>
<p>He leans over and places his elbows on the table, tenting his fingers and leaning in with his chin touching them as he continues. A thin leather cord adorned with small charms carved from bone is draped around his left wrist.</p>
“Other than that, Im willing to take on cooking chores and spin the occasional tale around a campfire. My cut of the money goes towards opening my own tavern when I retire.”
<p>“Other than that, Im willing to take on cooking chores and spin the occasional tale around a campfire. My cut of the money goes towards opening my own tavern when I retire.”</p>
</details>
<ul>
<li>Player: marc</li>
<li>XP: 0</li>
<li>Skills: Do Anything 1</li>
</ul>
<h3 id="sneaky-willows">Sneaky Willows</h3>
<details>
<summary>
<p>Bio</p>
</summary>
<p>Im “Sneaky” Willows (nobody knows my actual name), an elvish pickpocket with a love for sneakin, stabbin and music playin! Some people say Im no good at music playin, but then I go sneakin and stabbin em!</p>
<p>On this team I think Im gonna be good at sneakin up to those crystals and grabbin em right from under the guards noses!</p>
<p>With my money Im plannin to hire a bard to teach me more music, so I can really impress people with my playin and maybe not even have to stab them!</p>
</details>
<ul>
<li>Player: nico</li>
<li>XP: 0</li>
<li>Skills: Do Anything 1</li>
</ul>
<h3 id="tea-filler">Tea Filler</h3>
<details>
<summary>
<p>Bio</p>
</summary>
<p>Who: Teefoon Filler of the Bucket, Knight of the 3rd order of Balmarlovemeer, Crester of the Golden-Fringed Ridge and 2nd to the Keeper of the Grimoire Glorious. You may call me “Tea.” (Tea is, notably, a giant. ~11ft tall).</p>
<p>What: Retired Cleric turned Archeologist.</p>
<p>Cash: A sturdy wagon and 5 head of oxen to pull it. I wish to travel further than my legs can take me.</p>
</details>
<ul>
<li>Player: eli</li>
<li>XP: 0</li>
<li>Skills: Do Anything 1</li>
</ul>
<h2 id="meta">Meta</h2>
<p>Welcome to Basement Quest!</p>
<p>Were gonna play this by ear, and cross each bridge only when we get to it.</p>
@ -306,7 +310,7 @@ Bio
<li><p>Linearity: Respond only to the most recent email in the thread. (We might play around with time later, but for now, lets keep it simple.)</p></li>
</ul>
<h3 id="mechanics">Mechanics</h3>
<p>Shoes in the Dark: <a href="https://dozens.itch.io/shoes-in-the-dark" class="uri">https://dozens.itch.io/shoes-in-the-dark</a></p>
<p>Shoes in the Dark: https://dozens.itch.io/shoes-in-the-dark</p>
<p>To do something, say that you do it, and then it probably happens!</p>
<p>If there is a risk, or chance of failure, well roll dice to determine the outcome. Well use a variation of “Roll for Shoes” because its probably the most simple system there is. Everybody will start out pretty even skills wise. But you will eventually get really good at really specific things.</p>
<p>Everybody starts with one skill: <em>Do anything 1</em></p>
@ -329,6 +333,9 @@ Bio
<p>Every time you fail a roll, you gain 1 xp.</p>
<p>You can spend xp to turn any die into a six for the purpose of advancement.</p>
<h2 id="epistolary">Epistolary</h2>
<p>These are all the letters I send to the email list.</p>
<p>You can subscribe to these updates with the rss feed.</p>
<p>https://tilde.town/~dozens/basementquest/rss.xml</p>
<h3 id="section">00001</h3>
<p>“Congratulations!” The slightly tipsy hobbit grins and salutes you with his martini. “On Retrieval Team 43s inaugural mission! Im so excited for you, Im sure youll do fantastic!”</p>
<p>You are all seated around a table in the corner at Lucys Basement. It is dimly lit and fairly noisy. The walls are covered in red velvet curtains, and the tablecloths have little gold tassels. A cloud of purple smoke from candles, cigars, and pipes hangs in the air. Waiters bustle between tables refilling drinks.</p>
@ -340,6 +347,7 @@ Bio
<li>What role do you think you will fill on the team?</li>
<li>What do you plan to do with your cut of the money?</li>
</ul>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00015.html">www</a></p>
<h3 id="section-1">00002</h3>
<p>Blavin provides you with a multibeast for your excursion. “Courtesy of the Benefactor!” You pack it up with food and supplies, and trek into the Tammineaux Forest in search of the first Ginnarak Crystal.</p>
<p>The forest is lush, thick, and green. You have to hack your way through the vines and the brush. There are stinging insects, squawking birds, and dangerous forest creatures a plenty. It is hot and sticky.</p>
@ -351,6 +359,7 @@ Bio
<p>“SHOE SHINE!!” a second one agrees. It is wearing a nice waistcoat with large gaudy buttons, and a nice looking pocket watch on a gold chain. It is dragging a comfy looking chair stuffed with bits of fluff and leaves and fur.</p>
<p>A third one screams, “SHOE SHINE SHOE SHINE!” It has several gold teeth and carries a huge block of cheese secured to its back with long loops of hempen rope.</p>
<p>The fourth and final one is wearing what looks like freshly painted red shoes and is carrying a lit torch. “SHOE SHIIIIINE!” it screams. It is wearing a gold medallion on a gold necklace.</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00015.html">www</a></p>
<h3 id="section-2">00003</h3>
<blockquote>
<p>“SHOE SHINE!” Bellows Tea, with a full bodied laugh!</p>
@ -369,12 +378,13 @@ Bio
<p>“Beeswax!” yells Earrings.</p>
<p>“Resin!” cries Teeth.</p>
<p>“SHOE SHIIINE!” they all cry in unison.</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00022.html">www</a></p>
<h3 id="meta-1">META</h3>
<p>This might be a good time to introduce the game mechanic.</p>
<p>For the most part, if you say you do something, it just happens.</p>
<p>But if you want to do something risky, and/or if the outcome is uncertain, you can roll a number of six-sided dice.</p>
<p>Id like to try using the <em>Shoes in the Dark</em> rules:</p>
<p><a href="https://dozens.itch.io/shoes-in-the-dark" class="uri">https://dozens.itch.io/shoes-in-the-dark</a></p>
<p>https://dozens.itch.io/shoes-in-the-dark</p>
<p>Basically, everybody currently has the skill “Do Anything 1”, which means if you want to do anything, you can roll 1 die.</p>
<p>On a 1 - 3, things go poorly. (And you gain 1 experience point. More on that in a bit.)</p>
<p>On a 4 - 5, you do the thing, but at a cost, or with a complication, or its just a partial success.</p>
@ -385,6 +395,7 @@ Bio
<p>Finally, every time you fail a roll (by rolling 1 - 3) you gain 1 experience point. You can spend 1 experience at any time to turn any one die into a six <em>for the purposes of advancement</em>.</p>
<p>SO WHAT DOES THIS ALL MEAN???</p>
<p>When you interact with the blahoblins, consider whether there is an element of risk. If so, roll the appropriate amount of dice (1, in this case) and include the result in your description. If its a success, describe the success. If its a partial success or a failure, just describe what you do, and Ill describe the complication, or how things get worse.</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00023.html">www</a></p>
<h3 id="section-3">00004</h3>
<blockquote>
<p>“And jolly good polish too, it looks like,” Inky replies, squinting a bit at the ichor being smeared onto the boots in Earrings large calloused hands. “I hear there be some gnomes hereabouts? A camp? With your remarkable service, I bet theyd be coming to you all the time to get their boots cleaned.”</p>
@ -403,6 +414,7 @@ Bio
<p>Red Shoes reappears from wherever they have been this whole time with a sly smile and rejoins its comrades.</p>
<p>Your pockets have successfully been picked while you were distracted with the shoe shine, but not of anything of particular value.</p>
<p>What small item(s) will you notice is missing in the hours and days to come? How will its absence be a minor inconvenience?</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00031.html">www</a></p>
<h3 id="section-4">00005</h3>
<blockquote>
<p>As the blahoblins were packing up, Inky persuades Waistcoat to sell a few small bottles of shoe polish, a roughly round piece of broken glass and scraps of cheesecloth from the mountain of debris previously on the ground. Inky rolls Do Anything 1 and rolls a 4.</p>
@ -421,6 +433,7 @@ Bio
<p>The foreman continues talking to you as though nothing happened. She leads you over to the edge of the hole and points to the bottom.</p>
<p>“The entrance to their cave is right down there! The zip line is the second fastest way down.”</p>
<p>WHAT DO YOU DO</p>
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00035.html">www</a></p>
<h3 id="section-5">00006</h3>
<p>Standing guard at the entrance to the kobit tunnels is a massive egre, a fearsome bird beast, muscles rippling and bulging beneath its beautiful white plumage. It turns its head and regards you with one jet black eye and then the other, snapping its sharp beak in the air as it tosses its head back and forth.</p>
<p>It looks you up and down, and its gaze rests on your freshly polished shoes. It huffs and grunts, “Your shoes look clean. You can enter.” And it steps aside.</p>
@ -431,6 +444,10 @@ Bio
<dt>Blahoblin</dt>
<dd><p>a little goblinoid with the head of a goblin shark</p>
</dd>
<dd><figure>
<img src="goblin.gif" alt="blahoblin" /><figcaption aria-hidden="true">blahoblin</figcaption>
</figure>
</dd>
<dt>Egre</dt>
<dd><p>Giant muscle bird. Proud, muscly, vain, fashion forward. Beautiful plumage.</p>
</dd>
@ -467,26 +484,8 @@ Bio
</ul>
<p>Fourth god = ????</p>
<h2 id="history">History</h2>
<p>The Artifice Wars tore Basmentaria apart and reduced Ginnarak to ash and rubble.</p>
<p>In the aftermath, Liandt fell into a magical sleep and has not been seen since.</p>
<dl>
<dt>Blahoblin</dt>
<dd><p>a little goblinoid with the head of a goblin shark</p>
</dd>
<dt>Egre</dt>
<dd><p>Giant muscle bird. Proud, muscly, vain, fashion forward. Beautiful plumage.</p>
</dd>
<dt>Gnome</dt>
<dd><p>Tiny tinkerers. Highly combustible. Very explosive. Like making contraptions powered by steam and/or coal</p>
</dd>
<dd><p>All gnomes are women. All gnomes are engineers. They have bright red noses, and very long ears. And long nimble fingers.</p>
</dd>
<dt>Kobit</dt>
<dd><p>literally “tunnel host”</p>
</dd>
<dd><p>Subterranean scaly ratdog creatures. Big luminous eyes, long droopy mustaches.</p>
</dd>
</dl>
<p>Long ago, the Artifice Wars ravaged the lands of Basementora.</p>
<p>They reduced the once fertile lands of Ginnarak to ash and embers.</p>
<h2 id="spoilers">Spoilers</h2>
<p>the five Ginnarak crystals:</p>
<ul>