🔧 validate feed
parent
e3ea08ede0
commit
c5b9413c49
|
@ -15,7 +15,11 @@ src/epistolary/meta.md
|
||||||
src/epistolary/00004.md
|
src/epistolary/00004.md
|
||||||
src/epistolary/00005.md
|
src/epistolary/00005.md
|
||||||
src/epistolary/00006.md
|
src/epistolary/00006.md
|
||||||
src/bestiary.md
|
src/bestiary/index.md
|
||||||
|
src/bestiary/blahoblin.md
|
||||||
|
src/bestiary/egre.md
|
||||||
|
src/bestiary/gnome.md
|
||||||
|
src/bestiary/kobit.md
|
||||||
src/geography.md
|
src/geography.md
|
||||||
src/cosmology.md
|
src/cosmology.md
|
||||||
src/history.md
|
src/history.md
|
||||||
|
|
|
@ -20,4 +20,7 @@ h1 {
|
||||||
-webkit-text-fill-color: transparent;
|
-webkit-text-fill-color: transparent;
|
||||||
font-size: 5rem;
|
font-size: 5rem;
|
||||||
}
|
}
|
||||||
|
summary p {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
12
justfile
12
justfile
|
@ -17,7 +17,7 @@ spoilers:
|
||||||
# build public facing html
|
# build public facing html
|
||||||
public:
|
public:
|
||||||
cat basement.order |\
|
cat basement.order |\
|
||||||
xargs -I % pandoc -f markdown -t markdown --template=templates/player.tmpl % |\
|
xargs -I % pandoc -f markdown -t markdown --template=templates/public.tmpl % |\
|
||||||
pandoc -t html \
|
pandoc -t html \
|
||||||
--standalone \
|
--standalone \
|
||||||
--toc \
|
--toc \
|
||||||
|
@ -32,16 +32,20 @@ rss:
|
||||||
echo "<?xml version=\"1.0\" ?>" > www/rss.xml
|
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 "<rss version=\"2.0\" xmlns:atom=\"http://www.w3.org/2005/Atom\">" >> www/rss.xml
|
||||||
echo " <channel>" >> 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 " <atom:link href=\"https://tilde.town/~dozens/quest/rss.xml\" rel=\"self\" type=\"application/rss+xml\" />" >> www/rss.xml
|
||||||
echo " <title>BASEMENT QWEST</title>" >> 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 " <link>https://tilde.town/~dozens/quest/rss.xml</link>" >> www/rss.xml
|
||||||
echo " <description>Friends having ADVENTURES! Huzzah!</description>" >> 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
|
fd . 'src/' -e md -x pandoc -f markdown+autolink_bare_uris --template=templates/feeditem.tmpl >> www/rss.xml
|
||||||
|
|
||||||
echo " </channel>" >> www/rss.xml
|
echo " </channel>" >> www/rss.xml
|
||||||
echo "</rss> " >> www/rss.xml
|
echo "</rss> " >> www/rss.xml
|
||||||
echo "Done building xml file \o/"
|
echo "Done building xml file \o/"
|
||||||
|
|
||||||
|
# upload
|
||||||
|
up:
|
||||||
|
rsync -zaP www/* tilde:public_html/quest/
|
||||||
|
|
||||||
# build public, spoilers, and rss
|
# build public, spoilers, and rss
|
||||||
all: spoilers public rss
|
all: spoilers public rss
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: about
|
title: about
|
||||||
created: 2022-07-24
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
## About
|
## About
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
---
|
|
||||||
title: bestiary
|
|
||||||
created: 2022-07-24
|
|
||||||
updated: 2022-07-24
|
|
||||||
public: yes
|
|
||||||
---
|
|
||||||
## Bestiary
|
|
||||||
|
|
||||||
Blahoblin
|
|
||||||
|
|
||||||
: a little goblinoid with the head of a goblin shark
|
|
||||||
|
|
||||||
: ![blahoblin](goblin.gif)
|
|
||||||
|
|
||||||
Egre
|
|
||||||
|
|
||||||
: Giant muscle bird. Proud, muscly, vain, fashion forward. Beautiful plumage.
|
|
||||||
|
|
||||||
Gnome
|
|
||||||
|
|
||||||
: Tiny tinkerers. Highly combustible. Very explosive. Like making contraptions powered by steam and/or coal
|
|
||||||
|
|
||||||
: All gnomes are women. All gnomes are engineers. They have bright red noses, and very long ears. And long nimble fingers.
|
|
||||||
|
|
||||||
Kobit
|
|
||||||
|
|
||||||
: literally "tunnel host"
|
|
||||||
|
|
||||||
: Subterranean scaly ratdog creatures. Big luminous eyes, long droopy mustaches.
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
---
|
||||||
|
title: bestiary
|
||||||
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
|
public: yes
|
||||||
|
---
|
||||||
|
<p></p>
|
||||||
|
Blahoblin
|
||||||
|
: a little goblinoid with the head of a goblin shark
|
||||||
|
: <details>![blahoblin](goblin.gif)</details>
|
|
@ -0,0 +1,9 @@
|
||||||
|
---
|
||||||
|
title: bestiary
|
||||||
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
|
public: yes
|
||||||
|
---
|
||||||
|
<p></p>
|
||||||
|
Egre
|
||||||
|
: Giant muscle bird. Proud, muscly, vain, fashion forward. Beautiful plumage.
|
|
@ -0,0 +1,10 @@
|
||||||
|
---
|
||||||
|
title: bestiary
|
||||||
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
|
public: yes
|
||||||
|
---
|
||||||
|
<p></p>
|
||||||
|
Gnome
|
||||||
|
: Tiny tinkerers. Highly combustible. Very explosive. Like making contraptions powered by steam and/or coal
|
||||||
|
: All gnomes are women. All gnomes are engineers. They have bright red noses, and very long ears. And long nimble fingers.
|
|
@ -0,0 +1,10 @@
|
||||||
|
---
|
||||||
|
title: bestiary
|
||||||
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
|
public: yes
|
||||||
|
---
|
||||||
|
## Bestiary
|
||||||
|
|
||||||
|
Some of the creatures who inhabit the world of Basmentaria
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
---
|
||||||
|
title: bestiary
|
||||||
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
|
public: yes
|
||||||
|
---
|
||||||
|
<p></p>
|
||||||
|
Kobit
|
||||||
|
: literally "tunnel host"
|
||||||
|
: Subterranean scaly ratdog creatures. Big luminous eyes, long droopy mustaches.
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: corraidhin
|
title: corraidhin
|
||||||
created: 2022-07-24
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
### Corraidhín
|
### Corraidhín
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: glarg
|
title: glarg
|
||||||
created: 2022-07-24
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
### Glarg
|
### Glarg
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: characters
|
title: characters
|
||||||
created: 2022-07-24
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
## Characters
|
## Characters
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: inky
|
title: inky
|
||||||
created: 2022-07-24
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
### Inky
|
### Inky
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: jarrod
|
title: jarrod
|
||||||
created: 2022-07-24
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
### Jarrod
|
### Jarrod
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: sneaky
|
title: sneaky
|
||||||
created: 2022-07-24
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
### Sneaky Willows
|
### Sneaky Willows
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: tea
|
title: tea
|
||||||
created: 2022-07-24
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
### Tea Filler
|
### Tea Filler
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: cosmology
|
title: cosmology
|
||||||
created: 2022-07-24
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
---
|
---
|
||||||
## Cosmology
|
## Cosmology
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: 00001 - we meet in a tavern
|
title: 00001 - we meet in a tavern
|
||||||
created: 2022-07-24
|
created: Tue, 20 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 20 Jul 2022 20:32:23 -0600
|
||||||
syndicated: yes
|
syndicated: yes
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: 00002 - shoe shine
|
title: 00002 - shoe shine
|
||||||
created: 2022-07-24
|
created: Tue, 21 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 21 Jul 2022 20:32:23 -0600
|
||||||
syndicated: yes
|
syndicated: yes
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: 00003 - polish
|
title: 00003 - polish
|
||||||
created: 2022-07-24
|
created: Tue, 22 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 22 Jul 2022 20:32:23 -0600
|
||||||
syndicated: yes
|
syndicated: yes
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: 00004 - pockets picked
|
title: 00004 - pockets picked
|
||||||
created: 2022-07-24
|
created: Tue, 24 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 24 Jul 2022 20:32:23 -0600
|
||||||
syndicated: yes
|
syndicated: yes
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: 00005 - gnomes
|
title: 00005 - gnomes
|
||||||
created: 2022-07-24
|
created: Tue, 25 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 25 Jul 2022 20:32:23 -0600
|
||||||
syndicated: yes
|
syndicated: yes
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
---
|
---
|
||||||
title: 00006 - egre
|
title: 00006 - egre
|
||||||
created: 2022-07-24
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
---
|
---
|
||||||
### 00006
|
### xxxxx
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
|
@ -13,3 +13,24 @@ The smallest of you can stand upright in the kobit tunnels. The largest of you h
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Suddenly three gophers come crashing through the trees behind you into the dig site. One is wearing a sash of many pockets. One is wearing cargo shorts of many pockets. And the last is wearing a vest of many pockets. All three are wearing hats that resemble waffles.
|
||||||
|
|
||||||
|
They march up to you.
|
||||||
|
|
||||||
|
"Out of the way, losers!" Sash cries, grabs the zipline trolley, and immediately dives off the side of the cliff down into the hole.
|
||||||
|
|
||||||
|
Vest introduces himself, "Retrieval Team 70 here! We are here to retrieve the Ginnarak Crystal that is reported to be in this location. After we collect all five, then it will be *us* who get to hang out in the Benefactor's hot tub! Not you!"
|
||||||
|
|
||||||
|
Sash has reached the bottom of the deep hole, and Shorts has started reeling in the pulley.
|
||||||
|
|
||||||
|
Vest leans in close and looks at you closely. "You must be the new Retrieval Team 43. Hmmph. Shame what happened to the old Team 43. Hope you know what you're doing!"
|
||||||
|
|
||||||
|
Shorts grabs the trolley and leaps down into the hole, sailing down the line toward Sash at the bottom.
|
||||||
|
|
||||||
|
"Welp!" Vest concludes. "No hard feelings, I hope! After we collect this crystal, we just need four more, and then we get to meet the Benefactor!"
|
||||||
|
|
||||||
|
He waddles off and starts reeling in the trolley.
|
||||||
|
|
||||||
|
WHAT DO YOU DO
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: epistolary
|
title: epistolary
|
||||||
created: 2022-07-24
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
## Epistolary
|
## Epistolary
|
||||||
|
@ -10,5 +10,5 @@ These are all the letters I send to the email list.
|
||||||
|
|
||||||
You can subscribe to these updates with the rss feed.
|
You can subscribe to these updates with the rss feed.
|
||||||
|
|
||||||
https://tilde.town/~dozens/basementquest/rss.xml
|
<https://tilde.town/~dozens/quest/rss.xml>
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: meta
|
title: meta
|
||||||
created: 2022-07-24
|
created: Tue, 23 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 23 Jul 2022 20:32:23 -0600
|
||||||
syndicated: yes
|
syndicated: yes
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: geography
|
title: geography
|
||||||
created: 2022-07-24
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
---
|
---
|
||||||
## Geography
|
## Geography
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
---
|
---
|
||||||
title: history
|
title: history
|
||||||
created: 2022-07-24
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
---
|
---
|
||||||
## History
|
## History
|
||||||
|
|
||||||
Long ago, the Artifice Wars ravaged the lands of Basementora.
|
Long ago, the Artifice Wars ravaged the lands of Basmentaria.
|
||||||
|
|
||||||
They reduced the once fertile lands of Ginnarak to ash and embers.
|
They reduced the once fertile lands of Ginnarak to ash and embers.
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: meta
|
title: meta
|
||||||
created: 2022-07-24
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
public: yes
|
public: yes
|
||||||
---
|
---
|
||||||
## Meta
|
## Meta
|
||||||
|
@ -23,7 +23,8 @@ We're gonna play this by ear, and cross each bridge only when we get to it.
|
||||||
### Mechanics
|
### Mechanics
|
||||||
|
|
||||||
Shoes in the Dark:
|
Shoes in the Dark:
|
||||||
https://dozens.itch.io/shoes-in-the-dark
|
|
||||||
|
<https://dozens.itch.io/shoes-in-the-dark>
|
||||||
|
|
||||||
To do something, say that you do it, and then it probably happens!
|
To do something, say that you do it, and then it probably happens!
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: notes
|
title: notes
|
||||||
created: 2022-07-24
|
created: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
updated: 2022-07-24
|
updated: Tue, 26 Jul 2022 20:32:23 -0600
|
||||||
---
|
---
|
||||||
## Spoilers
|
## Spoilers
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
$if(syndicated)$
|
$if(syndicated)$
|
||||||
<item>
|
<item>
|
||||||
<title>$if(title)$$title$$else$Title Unknown$endif$</title>
|
<title>$if(title)$$title$$else$Title Unknown$endif$</title>
|
||||||
<author>dozens</author>
|
<author>dozens@tilde.team (dozens)</author>
|
||||||
<guid isPermaLink="false">$if(created)$$created$$else$Unknown Date$endif$</guid>
|
<guid isPermaLink="false">$title$ - $if(created)$$created$$else$Unknown Date$endif$</guid>
|
||||||
<pubDate>$if(updated)$$updated$$else$Unknown Date$endif$</pubDate>
|
<pubDate>$if(updated)$$updated$$else$Unknown Date$endif$</pubDate>
|
||||||
<description>
|
<description>
|
||||||
<![CDATA[
|
<![CDATA[
|
|
@ -170,6 +170,9 @@
|
||||||
-webkit-text-fill-color: transparent;
|
-webkit-text-fill-color: transparent;
|
||||||
font-size: 5rem;
|
font-size: 5rem;
|
||||||
}
|
}
|
||||||
|
summary p {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
@ -305,7 +308,8 @@
|
||||||
<li><p>Linearity: Respond only to the most recent email in the thread. (We might play around with time later, but for now, let’s keep it simple.)</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, let’s keep it simple.)</p></li>
|
||||||
</ul>
|
</ul>
|
||||||
<h3 id="mechanics">Mechanics</h3>
|
<h3 id="mechanics">Mechanics</h3>
|
||||||
<p>Shoes in the Dark: https://dozens.itch.io/shoes-in-the-dark</p>
|
<p>Shoes in the Dark:</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>To do something, say that you do it, and then it probably happens!</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, we’ll roll dice to determine the outcome. We’ll use a variation of “Roll for Shoes” because it’s 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>If there is a risk, or chance of failure, we’ll roll dice to determine the outcome. We’ll use a variation of “Roll for Shoes” because it’s 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>Everybody starts with one skill: <em>Do anything 1</em></p>
|
||||||
|
@ -330,7 +334,7 @@
|
||||||
<h2 id="epistolary">Epistolary</h2>
|
<h2 id="epistolary">Epistolary</h2>
|
||||||
<p>These are all the letters I send to the email list.</p>
|
<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>You can subscribe to these updates with the rss feed.</p>
|
||||||
<p>https://tilde.town/~dozens/basementquest/rss.xml</p>
|
<p><a href="https://tilde.town/~dozens/quest/rss.xml" class="uri">https://tilde.town/~dozens/quest/rss.xml</a></p>
|
||||||
<h3 id="section">00001</h3>
|
<h3 id="section">00001</h3>
|
||||||
<p>“Congratulations!” The slightly tipsy hobbit grins and salutes you with his martini. “On Retrieval Team 43’s inaugural mission! I’m so excited for you, I’m sure you’ll do fantastic!”</p>
|
<p>“Congratulations!” The slightly tipsy hobbit grins and salutes you with his martini. “On Retrieval Team 43’s inaugural mission! I’m so excited for you, I’m sure you’ll do fantastic!”</p>
|
||||||
<p>You are all seated around a table in the corner at Lucy’s 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>You are all seated around a table in the corner at Lucy’s 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>
|
||||||
|
@ -430,26 +434,43 @@
|
||||||
<p>WHAT DO YOU DO</p>
|
<p>WHAT DO YOU DO</p>
|
||||||
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00035.html">www</a></p>
|
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00035.html">www</a></p>
|
||||||
<h2 id="bestiary">Bestiary</h2>
|
<h2 id="bestiary">Bestiary</h2>
|
||||||
|
<p>Some of the creatures who inhabit the world of Basmentaria</p>
|
||||||
|
<p>
|
||||||
|
</p>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Blahoblin</dt>
|
<dt>Blahoblin</dt>
|
||||||
<dd><p>a little goblinoid with the head of a goblin shark</p>
|
<dd>a little goblinoid with the head of a goblin shark
|
||||||
</dd>
|
</dd>
|
||||||
<dd><figure>
|
<dd><details>
|
||||||
<img src="goblin.gif" alt="blahoblin" /><figcaption aria-hidden="true">blahoblin</figcaption>
|
<figure>
|
||||||
|
<img src="goblin.gif" title="fig:" alt="blahoblin" /><figcaption aria-hidden="true">blahoblin</figcaption>
|
||||||
</figure>
|
</figure>
|
||||||
|
</details>
|
||||||
</dd>
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<p>
|
||||||
|
</p>
|
||||||
|
<dl>
|
||||||
<dt>Egre</dt>
|
<dt>Egre</dt>
|
||||||
<dd><p>Giant muscle bird. Proud, muscly, vain, fashion forward. Beautiful plumage.</p>
|
<dd>Giant muscle bird. Proud, muscly, vain, fashion forward. Beautiful plumage.
|
||||||
</dd>
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<p>
|
||||||
|
</p>
|
||||||
|
<dl>
|
||||||
<dt>Gnome</dt>
|
<dt>Gnome</dt>
|
||||||
<dd><p>Tiny tinkerers. Highly combustible. Very explosive. Like making contraptions powered by steam and/or coal</p>
|
<dd>Tiny tinkerers. Highly combustible. Very explosive. Like making contraptions powered by steam and/or coal
|
||||||
</dd>
|
</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>All gnomes are women. All gnomes are engineers. They have bright red noses, and very long ears. And long nimble fingers.
|
||||||
</dd>
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<p>
|
||||||
|
</p>
|
||||||
|
<dl>
|
||||||
<dt>Kobit</dt>
|
<dt>Kobit</dt>
|
||||||
<dd><p>literally “tunnel host”</p>
|
<dd>literally “tunnel host”
|
||||||
</dd>
|
</dd>
|
||||||
<dd><p>Subterranean scaly ratdog creatures. Big luminous eyes, long droopy mustaches.</p>
|
<dd>Subterranean scaly ratdog creatures. Big luminous eyes, long droopy mustaches.
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</body>
|
</body>
|
||||||
|
|
102
www/rss.xml
102
www/rss.xml
|
@ -1,15 +1,15 @@
|
||||||
<?xml version="1.0" ?>
|
<?xml version="1.0" ?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<atom:link href="https://tilde.town/~dozens/basementquest/rss.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://tilde.town/~dozens/quest/rss.xml" rel="self" type="application/rss+xml" />
|
||||||
<title>BASEMENT QWEST</title>
|
<title>BASEMENT QWEST</title>
|
||||||
<link>https://tilde.town/~dozens/basementquest/rss.xml</link>
|
<link>https://tilde.town/~dozens/quest/rss.xml</link>
|
||||||
<description>Friends having ADVENTURES! Huzzah!</description>
|
<description>Friends having ADVENTURES! Huzzah!</description>
|
||||||
<item>
|
<item>
|
||||||
<title>00003 - polish</title>
|
<title>00003 - polish</title>
|
||||||
<author>dozens</author>
|
<author>dozens@tilde.team (dozens)</author>
|
||||||
<guid isPermaLink="false">2022-07-24</guid>
|
<guid isPermaLink="false">00003 - polish - Tue, 22 Jul 2022 20:32:23 -0600</guid>
|
||||||
<pubDate>2022-07-24</pubDate>
|
<pubDate>Tue, 22 Jul 2022 20:32:23 -0600</pubDate>
|
||||||
<description>
|
<description>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
<h3 id="section">00003</h3>
|
<h3 id="section">00003</h3>
|
||||||
|
@ -35,32 +35,32 @@
|
||||||
</description>
|
</description>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>00001 - we meet in a tavern</title>
|
<title>00002 - shoe shine</title>
|
||||||
<author>dozens</author>
|
<author>dozens@tilde.team (dozens)</author>
|
||||||
<guid isPermaLink="false">2022-07-24</guid>
|
<guid isPermaLink="false">00002 - shoe shine - Tue, 21 Jul 2022 20:32:23 -0600</guid>
|
||||||
<pubDate>2022-07-24</pubDate>
|
<pubDate>Tue, 21 Jul 2022 20:32:23 -0600</pubDate>
|
||||||
<description>
|
<description>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
<h3 id="section">00001</h3>
|
<h3 id="section">00002</h3>
|
||||||
<p>“Congratulations!” The slightly tipsy hobbit grins and salutes you with his martini. “On Retrieval Team 43’s inaugural mission! I’m so excited for you, I’m sure you’ll do fantastic!”</p>
|
<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>You are all seated around a table in the corner at Lucy’s 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>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>“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, you’ll get to meet the Benefactor at be their guest at their <em>glorious mansion!</em>”</p>
|
<p>How will you ever find your way through this wilderness to the dig site?</p>
|
||||||
<p>“The first crystal has been spotted near a Gnomish dig site in the Tammineaux Forest, just east of here.”</p>
|
<p>“Shouldn’t be too hard,” you remember Blavin saying back at Lucy’s, gesturing carelessly and sloshing a little bit of his fourth drink. “They’re gnomes, after all! Just follow the sound of explosions and screaming.”</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>
|
<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>
|
||||||
<ul>
|
<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 didn’t hear them over the noise of the shrieking parrots and, in the distance, the shrieking gnomes.</p>
|
||||||
<li>Who are you?</li>
|
<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>
|
||||||
<li>What role do you think you will fill on the team?</li>
|
<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>
|
||||||
<li>What do you plan to do with your cut of the money?</li>
|
<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>
|
||||||
</ul>
|
<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>
|
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00015.html">www</a></p>
|
||||||
]]>
|
]]>
|
||||||
</description>
|
</description>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>meta</title>
|
<title>meta</title>
|
||||||
<author>dozens</author>
|
<author>dozens@tilde.team (dozens)</author>
|
||||||
<guid isPermaLink="false">2022-07-24</guid>
|
<guid isPermaLink="false">meta - Tue, 23 Jul 2022 20:32:23 -0600</guid>
|
||||||
<pubDate>2022-07-24</pubDate>
|
<pubDate>Tue, 23 Jul 2022 20:32:23 -0600</pubDate>
|
||||||
<description>
|
<description>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
<h3 id="meta">META</h3>
|
<h3 id="meta">META</h3>
|
||||||
|
@ -83,11 +83,33 @@
|
||||||
]]>
|
]]>
|
||||||
</description>
|
</description>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>00001 - we meet in a tavern</title>
|
||||||
|
<author>dozens@tilde.team (dozens)</author>
|
||||||
|
<guid isPermaLink="false">00001 - we meet in a tavern - Tue, 20 Jul 2022 20:32:23 -0600</guid>
|
||||||
|
<pubDate>Tue, 20 Jul 2022 20:32:23 -0600</pubDate>
|
||||||
|
<description>
|
||||||
|
<![CDATA[
|
||||||
|
<h3 id="section">00001</h3>
|
||||||
|
<p>“Congratulations!” The slightly tipsy hobbit grins and salutes you with his martini. “On Retrieval Team 43’s inaugural mission! I’m so excited for you, I’m sure you’ll do fantastic!”</p>
|
||||||
|
<p>You are all seated around a table in the corner at Lucy’s 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, you’ll 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>
|
<item>
|
||||||
<title>00005 - gnomes</title>
|
<title>00005 - gnomes</title>
|
||||||
<author>dozens</author>
|
<author>dozens@tilde.team (dozens)</author>
|
||||||
<guid isPermaLink="false">2022-07-24</guid>
|
<guid isPermaLink="false">00005 - gnomes - Tue, 25 Jul 2022 20:32:23 -0600</guid>
|
||||||
<pubDate>2022-07-24</pubDate>
|
<pubDate>Tue, 25 Jul 2022 20:32:23 -0600</pubDate>
|
||||||
<description>
|
<description>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
<h3 id="section">00005</h3>
|
<h3 id="section">00005</h3>
|
||||||
|
@ -112,33 +134,11 @@
|
||||||
]]>
|
]]>
|
||||||
</description>
|
</description>
|
||||||
</item>
|
</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>“Shouldn’t be too hard,” you remember Blavin saying back at Lucy’s, gesturing carelessly and sloshing a little bit of his fourth drink. “They’re 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 didn’t 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>
|
<item>
|
||||||
<title>00004 - pockets picked</title>
|
<title>00004 - pockets picked</title>
|
||||||
<author>dozens</author>
|
<author>dozens@tilde.team (dozens)</author>
|
||||||
<guid isPermaLink="false">2022-07-24</guid>
|
<guid isPermaLink="false">00004 - pockets picked - Tue, 24 Jul 2022 20:32:23 -0600</guid>
|
||||||
<pubDate>2022-07-24</pubDate>
|
<pubDate>Tue, 24 Jul 2022 20:32:23 -0600</pubDate>
|
||||||
<description>
|
<description>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
<h3 id="section">00004</h3>
|
<h3 id="section">00004</h3>
|
||||||
|
|
|
@ -170,6 +170,9 @@
|
||||||
-webkit-text-fill-color: transparent;
|
-webkit-text-fill-color: transparent;
|
||||||
font-size: 5rem;
|
font-size: 5rem;
|
||||||
}
|
}
|
||||||
|
summary p {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
@ -201,7 +204,7 @@
|
||||||
<li><a href="#meta-1">META</a></li>
|
<li><a href="#meta-1">META</a></li>
|
||||||
<li><a href="#section-3">00004</a></li>
|
<li><a href="#section-3">00004</a></li>
|
||||||
<li><a href="#section-4">00005</a></li>
|
<li><a href="#section-4">00005</a></li>
|
||||||
<li><a href="#section-5">00006</a></li>
|
<li><a href="#xxxxx">xxxxx</a></li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
<li><a href="#bestiary">Bestiary</a></li>
|
<li><a href="#bestiary">Bestiary</a></li>
|
||||||
<li><a href="#geography">Geography</a></li>
|
<li><a href="#geography">Geography</a></li>
|
||||||
|
@ -310,7 +313,8 @@
|
||||||
<li><p>Linearity: Respond only to the most recent email in the thread. (We might play around with time later, but for now, let’s keep it simple.)</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, let’s keep it simple.)</p></li>
|
||||||
</ul>
|
</ul>
|
||||||
<h3 id="mechanics">Mechanics</h3>
|
<h3 id="mechanics">Mechanics</h3>
|
||||||
<p>Shoes in the Dark: https://dozens.itch.io/shoes-in-the-dark</p>
|
<p>Shoes in the Dark:</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>To do something, say that you do it, and then it probably happens!</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, we’ll roll dice to determine the outcome. We’ll use a variation of “Roll for Shoes” because it’s 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>If there is a risk, or chance of failure, we’ll roll dice to determine the outcome. We’ll use a variation of “Roll for Shoes” because it’s 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>Everybody starts with one skill: <em>Do anything 1</em></p>
|
||||||
|
@ -335,7 +339,7 @@
|
||||||
<h2 id="epistolary">Epistolary</h2>
|
<h2 id="epistolary">Epistolary</h2>
|
||||||
<p>These are all the letters I send to the email list.</p>
|
<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>You can subscribe to these updates with the rss feed.</p>
|
||||||
<p>https://tilde.town/~dozens/basementquest/rss.xml</p>
|
<p><a href="https://tilde.town/~dozens/quest/rss.xml" class="uri">https://tilde.town/~dozens/quest/rss.xml</a></p>
|
||||||
<h3 id="section">00001</h3>
|
<h3 id="section">00001</h3>
|
||||||
<p>“Congratulations!” The slightly tipsy hobbit grins and salutes you with his martini. “On Retrieval Team 43’s inaugural mission! I’m so excited for you, I’m sure you’ll do fantastic!”</p>
|
<p>“Congratulations!” The slightly tipsy hobbit grins and salutes you with his martini. “On Retrieval Team 43’s inaugural mission! I’m so excited for you, I’m sure you’ll do fantastic!”</p>
|
||||||
<p>You are all seated around a table in the corner at Lucy’s 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>You are all seated around a table in the corner at Lucy’s 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>
|
||||||
|
@ -434,32 +438,60 @@
|
||||||
<p>“The entrance to their cave is right down there! The zip line is the second fastest way down.”</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>WHAT DO YOU DO</p>
|
||||||
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00035.html">www</a></p>
|
<p><a href="https://framalistes.org/sympa/arc/tildepals/2022-07/msg00035.html">www</a></p>
|
||||||
<h3 id="section-5">00006</h3>
|
<h3 id="xxxxx">xxxxx</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>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>
|
<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>
|
||||||
<p>The smallest of you can stand upright in the kobit tunnels. The largest of you have to crawl.</p>
|
<p>The smallest of you can stand upright in the kobit tunnels. The largest of you have to crawl.</p>
|
||||||
<p>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.</p>
|
<p>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.</p>
|
||||||
|
<hr />
|
||||||
|
<p>Suddenly three gophers come crashing through the trees behind you into the dig site. One is wearing a sash of many pockets. One is wearing cargo shorts of many pockets. And the last is wearing a vest of many pockets. All three are wearing hats that resemble waffles.</p>
|
||||||
|
<p>They march up to you.</p>
|
||||||
|
<p>“Out of the way, losers!” Sash cries, grabs the zipline trolley, and immediately dives off the side of the cliff down into the hole.</p>
|
||||||
|
<p>Vest introduces himself, “Retrieval Team 70 here! We are here to retrieve the Ginnarak Crystal that is reported to be in this location. After we collect all five, then it will be <em>us</em> who get to hang out in the Benefactor’s hot tub! Not you!”</p>
|
||||||
|
<p>Sash has reached the bottom of the deep hole, and Shorts has started reeling in the pulley.</p>
|
||||||
|
<p>Vest leans in close and looks at you closely. “You must be the new Retrieval Team 43. Hmmph. Shame what happened to the old Team 43. Hope you know what you’re doing!”</p>
|
||||||
|
<p>Shorts grabs the trolley and leaps down into the hole, sailing down the line toward Sash at the bottom.</p>
|
||||||
|
<p>“Welp!” Vest concludes. “No hard feelings, I hope! After we collect this crystal, we just need four more, and then we get to meet the Benefactor!”</p>
|
||||||
|
<p>He waddles off and starts reeling in the trolley.</p>
|
||||||
|
<p>WHAT DO YOU DO</p>
|
||||||
<h2 id="bestiary">Bestiary</h2>
|
<h2 id="bestiary">Bestiary</h2>
|
||||||
|
<p>Some of the creatures who inhabit the world of Basmentaria</p>
|
||||||
|
<p>
|
||||||
|
</p>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Blahoblin</dt>
|
<dt>Blahoblin</dt>
|
||||||
<dd><p>a little goblinoid with the head of a goblin shark</p>
|
<dd>a little goblinoid with the head of a goblin shark
|
||||||
</dd>
|
</dd>
|
||||||
<dd><figure>
|
<dd><details>
|
||||||
<img src="goblin.gif" alt="blahoblin" /><figcaption aria-hidden="true">blahoblin</figcaption>
|
<figure>
|
||||||
|
<img src="goblin.gif" title="fig:" alt="blahoblin" /><figcaption aria-hidden="true">blahoblin</figcaption>
|
||||||
</figure>
|
</figure>
|
||||||
|
</details>
|
||||||
</dd>
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<p>
|
||||||
|
</p>
|
||||||
|
<dl>
|
||||||
<dt>Egre</dt>
|
<dt>Egre</dt>
|
||||||
<dd><p>Giant muscle bird. Proud, muscly, vain, fashion forward. Beautiful plumage.</p>
|
<dd>Giant muscle bird. Proud, muscly, vain, fashion forward. Beautiful plumage.
|
||||||
</dd>
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<p>
|
||||||
|
</p>
|
||||||
|
<dl>
|
||||||
<dt>Gnome</dt>
|
<dt>Gnome</dt>
|
||||||
<dd><p>Tiny tinkerers. Highly combustible. Very explosive. Like making contraptions powered by steam and/or coal</p>
|
<dd>Tiny tinkerers. Highly combustible. Very explosive. Like making contraptions powered by steam and/or coal
|
||||||
</dd>
|
</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>All gnomes are women. All gnomes are engineers. They have bright red noses, and very long ears. And long nimble fingers.
|
||||||
</dd>
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<p>
|
||||||
|
</p>
|
||||||
|
<dl>
|
||||||
<dt>Kobit</dt>
|
<dt>Kobit</dt>
|
||||||
<dd><p>literally “tunnel host”</p>
|
<dd>literally “tunnel host”
|
||||||
</dd>
|
</dd>
|
||||||
<dd><p>Subterranean scaly ratdog creatures. Big luminous eyes, long droopy mustaches.</p>
|
<dd>Subterranean scaly ratdog creatures. Big luminous eyes, long droopy mustaches.
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<h2 id="geography">Geography</h2>
|
<h2 id="geography">Geography</h2>
|
||||||
|
@ -484,7 +516,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
<p>Fourth god = ????</p>
|
<p>Fourth god = ????</p>
|
||||||
<h2 id="history">History</h2>
|
<h2 id="history">History</h2>
|
||||||
<p>Long ago, the Artifice Wars ravaged the lands of Basementora.</p>
|
<p>Long ago, the Artifice Wars ravaged the lands of Basmentaria.</p>
|
||||||
<p>They reduced the once fertile lands of Ginnarak to ash and embers.</p>
|
<p>They reduced the once fertile lands of Ginnarak to ash and embers.</p>
|
||||||
<h2 id="spoilers">Spoilers</h2>
|
<h2 id="spoilers">Spoilers</h2>
|
||||||
<p>the five Ginnarak crystals:</p>
|
<p>the five Ginnarak crystals:</p>
|
||||||
|
|
Loading…
Reference in New Issue