main
dozens 2022-09-03 17:26:07 -06:00
commit 5b6e5178e8
33 changed files with 2651 additions and 0 deletions

14
Makefile 100644
View File

@ -0,0 +1,14 @@
SRCS := $(shell find src -name '*.md')
HTML := $(SRCS:src/%.md=%.html)
vpath %.md src
vpath %.html www
html: $(HTML)
%.html: %.md
pandoc -t html \
--standalone \
--toc \
--include-before-body=templates/nav.html \
--include-in-header=templates/header.html \
-o www/$@ $<

9
README.md 100644
View File

@ -0,0 +1,9 @@
# brighter worlds
i have an urge to play some Brighter Worlds
https://awkwardturtle.itch.io/brighter-worlds
with Iofi (cleric of small gods) and Maddox (sneaky bastard)
they gonna have an adventure

49
db/npc.rec 100644
View File

@ -0,0 +1,49 @@
%rec: npc
%doc: all of the non-player characters
%key: id
%type: id int
%type: updated date
%auto: id updated
id: 1
name: Meadowgloom
desc: An older balding man with watery eyes, a fine goatee and mustache, jowls, and a high, soft voice.
status: active
contact: 2
note: roughed up by the westerners
note: now ~~being roughed up by~~ living with the heroes?
id: 2
name: Blackguard
desc: merchant
status: missing
contact: 1
note: he's kind of the macguffin. the Hand wants him to appear before them.
note: illegally smuggling stuff (drugs? weapons? people?) in from Givzien. Sahtor found out and wants the count to fund the trade to strain relations with Onq.
id: 3
name: Count Dindrati
desc: Half-Dragon Governor of Kriteach County. Got scales on his face like scarab shells. And one eye like molten metal.
note: Dindrati is going to let Blackguard take the fall if he needs to, but he also isn't ready to give him up just yet. He thinks the H and has him, so he's going to crack down on them to show his displeasure / to get them to give him up
id: 4
name: Sahtor
desc: Dragon King of Sahtor'larath.
note: he is a fucking dragon
id: 5
name: the Hand
desc: the governing body of the Kriteach vigilante underground
note: Is looking to judge and punish Blackguard for hoarding wealth because Dindrati is turning a blind eye.
id: 6
name: Onq
desc: Goblin empire in the west
note: Longtime peace with Givziean
id: 7
name: Givziean
deck: Goblin empire in the west
note: Longtime peace with Onq
note: Recently entered into a secret trade agreement with Sahtorlarath (via the count, via Blackguard) to strain relations with Onq and provoke them..

10
db/threads.rec 100644
View File

@ -0,0 +1,10 @@
%rec: threads
%doc: plot threads
%key: id
%type: id int
%type: updated date
%auto: id updated
id: 1
name: Blackguard is Missing
note: The Westerners are after him too

134
doc/feed.md 100644
View File

@ -0,0 +1,134 @@
okay so i got up to some bullshit while writing this, so listen up.
I'm still using the "blog" and "journal" formats from miso.town for writing the blog and the journal.
<https://blog.miso.town/>
<https://journal.miso.town/>
But I grew unsatisfied using them to auto-generate the rss feeds.
Primarily because it couldn't handle the "~/dozens" part of my base "https://tilde.town/~dozens/clericthief" URL. And also because it included a lot of auxilary HTML elements like the navbar.
So I decided I needed to roll my own feed generators.
I discovered a clever way to use ed.
You can wrap a file in ed commands like so:
```
echo i | cat - file.txt commands.ed | ed -s
```
where `i` is the ed command for insert.
The contents of your file, `file.txt` follow.
Make the first ed command in `commands.ed` a `.` to stop insert mode.
And then all your other ed commands can follow.
`ed -s` starts ed in silent mode.
If you end your list of commands with `1,$w /dev/stdout` then you can pipe the output to something else.
Neat!
So what I had was some very lightly structured text.
I decided the easiest thing to do would be to isolate the list of blog entries, and then format them as recfiles, which was pretty easy.
Here's my index.md at the time of this writing:
```
---
title: "Cleric + Thief"
subtitle: Adventures of Iofi and Maddox
created: 2022-08-30
updated: 2022-09-01
---
[subscribe to episodes](episodes.xml)
<!-- BEGIN //-->
- <time>2022-09-03</time> - [00003. The Hand](00003-hand.html)
- <time>2022-09-01</time> - [00002. Meadowgloom](00002-meadowgloom.html)
- <time>2022-08-30</time> - [00001. Cleric + Thief](00001-introductions.html)
<!-- END //-->
```
ed commands:
- `g/BEGIN/ka` - find 'BEGIN' and make a bookmark `a`
- `g/END/kb` - find 'END' and make a bookmark `a`
- `1,'ad` - delete eveything from the 1st line up through bookmark a
- `'b,$d` - delete from 'b to the end of the file
output:
```
- <time>2022-09-03</time> - [00003. The Hand](00003-hand.html)
- <time>2022-09-01</time> - [00002. Meadowgloom](00002-meadowgloom.html)
- <time>2022-08-30</time> - [00001. Cleric + Thief](00001-introductions.html)
```
Then I did some search and replace so that each line turned into a recfile record.
ed commands for that:
```
%s/^- //
%s,<time>\(.*\)</time>,time: \1|,
%s, - \[\(.*\)\],title: \1|,
%s,(\(.*\))$,source: \1|link: \1|,
%s/html/md/
%s/|/\
/g
```
results:
```
time: 2022-09-03
title: 00003. The Hand
link: 00003-hand.html
source: 00003-hand.md
time: 2022-09-01
title: 00002. Meadowgloom
link: 00002-meadowgloom.html
source: 00002-meadowgloom.md
time: 2022-08-30
title: 00001. Cleric + Thief
link: 00001-introductions.html
source: 00001-introductions.md
```
and from there I could write a recfmt template:
```
01 <item>
02 <title>{{title}}</title>
03 <link>http://tilde.town/~dozens/clericthief/{{link}}</link>
04 <pubDate>syscmd(`gdate -d {{time}}')</pubDate>
05 <guid isPermaLink="false">{{time}} {{title}}</guid>
06 <description>
07 <![CDATA[
08 include(`src/{{source}}')
09 ]]>
10 </description>
11 </item>
```
There are m4 macros on lines 04 and 08 to insert the correctly formatted time, and to include the markdown content, respectively.
You can see the whole thing in the justfile, but the gist to get each rss item is:
```
echo i | cat - src/index.md ed/blogcommands.ed | ed -s | recfmt -f templates/blogitem.template | m4
```
The process for the journal entries is basically the same, with a little extra search and replace funny business in ed since the whole thing is one flat document.
The thing that really made all this work was the rec format. It made it super easy to format the data.

85
doc/game.md 100644
View File

@ -0,0 +1,85 @@
## ideas
use mtg colors to give each of them an archetype
https://humanparts.medium.com/the-mtg-color-wheel-c9700a7cf36d
create a setting with spears
https://sean-f-smith.medium.com/with-this-tool-youll-never-run-out-of-ideas-15d19ab72dfb
and maybe a hook with grapes (see above)
and then run it with opse
https://gitlab.com/Durrendal/Sola/-/blob/trunk/src/frameworks/OPSE.lua
oh hey look this is handy
https://inflatablestudios.itch.io/one-page-solo-engine-online
keep it as a journal or as a blog
https://journal.miso.town/
https://blog.miso.town/
## setting
The world of Aulia
oracle:
curl -X 'GET' \
'https://rws-cards-api.herokuapp.com/api/v1/cards/random?n=9' \
-H 'accept: application/json'
draw:
1. 2S - Two of Swords - Rev - Imposture, falsehood, duplicity, disloyalty.
2. AC - Ace of Cups - Rev - House of the false heart, mutation, instability, revolution.
3. 03 - Empress - Rev - Light, truth, the unravelling of involved matters, public rejoicings; according to another reading, vacillation.
4. 12 - Hanged Man - Up - Wisdom, circumspection, discernment, trials, sacrifice, intuition, divination, prophecy.
5. 07 - Chariot - Up - Succour, providence also war, triumph, presumption, vengeance, trouble.
6. 3W - Three of Wands - Up - He symbolizes established strength, enterprise, effort, trade, commerce, discovery; those are his ships, bearing his merchandise, which are sailing over the sea. The card also signifies able co-operation in business, as if the successful merchant prince were looking from his side towards yours with a view to help you.
7. 8P - Eight of Pentacles - Rev - Voided ambition, vanity, cupidity, exaction, usury. It may also signify the possession of skill, in the sense of the ingenious mind turned to cunning and intrigue.
8. 15 - Devil - Rev - Evil fatality, weakness, pettiness, blindness.
9. 19 - Sun - The same in a lesser sense: Material happiness, fortunate marriage, contentment.
interpretation:
- Geography: 3W Kriteach. Port city on a river. Fertile plains. Mountains in distance.
- Religion: 2S Corrupt. Collects donations, denies the poor them
- Achievements: 07 Large fleet to protect merchant ships. Successful in naval war.
- Politics: AC Heavy taxes threaten an uprising of the merchant class
- Economy: 19 Strained trade relations
- Social Structure: 8P Skilled laborers turning to cunning and intrigue
## Hook
WTAF?!
oracle:
curl -X 'GET' \
'https://rws-cards-api.herokuapp.com/api/v1/cards/random?n=7' \
-H 'accept: application/json'
draw:
1. KING OF CUPS - Fair man, man of business, law, or divinity; responsible, disposed to oblige the Querent; also equity, art and science, including those who profess science, law and art; creative intelligence.
2. FOUR OF SWORDS - Vigilance, retreat, solitude, hermit's repose, exile, tomb and coffin. It is these last that have suggested the design.
3. KNIGHT OF CUPS - Arrival, approach--sometimes that of a messenger; advances, proposition, demeanour, invitation, incitement.
4. THE LAST JUDGMENT - Change of position, renewal, outcome. Another account specifies total loss though lawsuit.
5. KNIGHT OF WANDS - Departure, absence, flight, emigration. A dark young man, friendly. Change of residence.
6. THE WORLD - Assured success, recompense, voyage, route, emigration, flight, change of place.
7. QUEEN OF PENTACLES - Opulence, generosity, magnificence, security, liberty.
interpretation:
- WT - KC - A respected and powerful member of the merchant class
- A - 4S - has withdrawn and gone missing
- F - NC - after being summoned to testify before the council on accusation of monopoly.
- ? - 20 - Who would benefit from his judgement?
- ! - NW/21 - find him in a change of place / change of residence

13
ed/blogitem.ed 100644
View File

@ -0,0 +1,13 @@
.
g/BEGIN/ka
g/END/kb
1,'ad
'b,$d
%s/^- //
%s,<time>\(.*\)</time>,time: \1|,
%s, - \[\(.*\)\],title: \1|,
%s,(\(.*\))$,source: \1|link: \1|,
%s/html/md/
%s/|/\
/g
1,$w /dev/stdout

14
ed/journalitem.ed 100644
View File

@ -0,0 +1,14 @@
.
g/BEGIN/ka
g/END/kb
1,'ad
'b,$d
g/^$/d
g/^##/+s/^/note: /
v/^note/s/^/+ /
%s/+ ##/##/
%s/^## <time>\(.*\)<\/time> - \(.*\)/\
time: \1\
title: \2/
1,$w /dev/stdout
q

43
justfile 100644
View File

@ -0,0 +1,43 @@
# show all commands
default:
just --list --unsorted
# build htmls
html:
make
# dev
dev:
ls src/*.md | entr just html
alias all := up
# upload it
up: html rss
rsync -azP --exclude=.git www/* tilde:public_html/clericthief/
# make episodes rss
episoderss:
echo "<rss version=\"2.0\"><channel><title>cleric + thief</title>" > www/episodes.xml \
&& echo "<link>http://tilde.town/~dozens/clericthief/index.html</link><description>adventures of iofi and maddox</description><atom:link rel=\"self\" type=\"application/rss+xml\" href=\"http://tilde.town/~dozens/clericthief/episodes.xml\"/>" >> www/episodes.xml \
&& echo i \
| cat - src/index.md ed/blogitem.ed \
| ed -s \
| recfmt -f templates/blogitem.rec.template \
| m4 \
>> www/episodes.xml \
&& echo '</channel></rss>' >> www/episodes.xml
# make journal rss
journalrss:
echo "<rss version=\"2.0\"><channel><title>cleric + thief</title>" > www/journal.xml \
&& echo "<link>http://tilde.town/~dozens/clericthief/index.html</link><description>behind the scenes of cleric + thief</description><atom:link rel=\"self\" type=\"application/rss+xml\" href=\"http://tilde.town/~dozens/clericthief/journal.xml\"/>" >> www/journal.xml \
&& echo i \
| cat - src/journal.md ed/journalitem.ed \
| ed -s \
| recfmt -f templates/journalitem.rec.template \
| m4 \
>> www/journal.xml \
&& echo '</channel></rss>' >> www/journal.xml
# build all rss
rss: episoderss journalrss

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

BIN
maps/kriteach.png 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 MiB

View File

@ -0,0 +1,139 @@
---
title: 00001. Cleric + Thief
subtitle: Introducing Iofi and Maddox
created: 2022-08-30
updated: 2022-08-30
---
Iofi knocks on the front door of the apartment while Maddox turns and faces the other way, inspecting the immaculate lawn and the empty tree-lined street.
"Does the formality of it ever strike you as funny?" asks Maddox. They are short and fidgety, with a ruddy face, small squinting eyes, and short shaggy blonde hair.
Iofi drags the fingers of one hand gently across the face of the door. Her other hand starts to reach instinctively for the satchel around her waist, but then the returns it to her side after all. "Funny?" she echoes quietly, almost to herself. She is tall, almost gaunt. Her long dark hair is pulled back into a low tight bun. She has slightly buck teeth and a slight overbite, and large dark eyes with hooded eyelids.
"Knocking like that. Like you need permission." Maddox continues quietly, their voice just above a whisper. "You don't find it funny?"
"It's the right thing to do," Iofi answers, turning her head slightly toward her partner.
Maddox turns from the lawn, satisfied for now, and leans over the railing to peer in through the window.
"The right thing to do," they counter, "is whatever gets you what you need." They squint, trying to make out the inside of the room through the thin curtains. "And right now, we need to find the merchant."
The door opens a crack just as Iofi raises her fist to knock a second time.
Maddox quickly straightens up and tries not to look like they were just spying through the window.
In the doorway is a small bald man with a thin, meticulous goatee and mustache. He stands in the small space between the door and its frame and peers out at them with large watery eyes and a gaping mouth like a goldfish.
"Yes?" he greets them with a soft, high voice.
"Hello," Iofi smiles, revealing an impressive amount of teeth, her mouth giving a round shape to her vowels. "We're looking for Mister Dedric Blackguard. Is he available?"
Maddox clears their throat and tugs on their sleeves on the front porch. The small man glances at them briefly before flicking his eyes back to Iofi.
"No, I'm afraid Mister Blackguard is not here at the moment."
Maddox asks, "Do you know when he will be back?" their voice a little raspy as they speak up to be heard.
"I'm afraid not," he answers in his childlike voice. There is a heavy thump and a scrape from somewhere behind the door. The doorman flinches and smiles nervously.
Maddox narrows their eyes, and concern appears on Iofi's face. "Is everything alright?" she asks. The doorman's eyes flit quickly behind the door.
"Yes! Yes, everything is quite alright. It, erm. It was just the cat!"
"The cat," echoes Iofi.
"Look," the doorman squeaks, "I really must be going. I really am busy. I'll tell Mister Blackguard you were here. Miss?"
"Iofi." She gestures behind her, "and Maddox. From the office of the Governor."
The doorman meeps quietly again. "The governor? Oh, um. Yes, very good. I will let Mister Blackguard know. Now, as I said, I am very busy. Good day!"
The small man closes the door in their faces. There is the sound of a key turning in a lock, and the sliding of a bolt.
"Do you think he's in trouble in there?" Maddox asks Iofi, their voice a little more melodious as it drops to its natural register just above a whisper.
"If he is, it would be the right thing to do to help him, wouldn't it?" Iofi answers dipping her hand into her satchel.
"I'm more concerned about losing a lead than doing the right thing, but you know. Tell yourself what you need to hear."
Iofi places her free hand on the door and when she speaks next, she does so with two voices at once. "<span style="font-variant:small-caps;">This door is unlocked</span>." She lowers her hand to the door handle and turns it, and steps aside making room for Maddox at her side as she silently opens it a crack.
Maddox peers into the empty foyer on the other side of the door. There is a staircase leading up to the second level, a hallway receding away from them toward the back of the house, and a large doorway on either side.
A second Maddox walks briskly but silently in from the room on the right and looks expectantly at the two of them lurking in the doorway. The Maddox on the front porch nods at Iofi, who pushes the front door open wide enough for them both to fit through.
Maddox tells the other Maddox, "Continue searching the downstairs. If everything's clear, head back to the safe house and wait for us there." Maddox nods, and silently continues through the doorway on the left into a dining room.
Maddox turns back to Iofi and nods questioningly toward the stairs. They go first, a dagger suddenly in each hand. She pulls a glass rod out of her satchel, something between a large hammer and small club, and follows.
At the top of the stairs is a hall with four rooms. Two to the left, one to the right, and one straight ahead.
Muffled voices drift down the hall from the room at the far end of the hall.
Maddox and Iofi creep forward. One of the voices is the high, soft, trembling voice of the doorman. The other voice is low, calm, and commanding.
"I told you I don't know where he is!"
"And I told you that is not an acceptable answer." Maddox frowns at the voice's western accent and glances back and up at Iofi. She nods, a single line of concern creasing her brow. She heard it to.
"He has something of ours," the voice continues. "We need it back."
The doorman yelps and there is the sound of a brief scuffle, and a thump, and the doorman cries out in despair.
Iofi leans over Maddox and places her hand on the door. "Ready?" They crouch and raise their daggers. "<span style="font-variant:small-caps;">We're already on the other side.</span>"
In an instant, Maddox and Iofi find themselves on the other side of the door. Two thugs are holding the terrified doorman down in a chair. One is pressing his hand flat down on the table in front of him, fingers splayed. A third brute is standing before the doorman, a cleaver in his hand, raised over the doorman's fingers.
Maddox flings one dagger at the brute with the cleaver. It lodges in the meat of his shoulder and he howls. All eyes turn toward the door, which remains closed and locked.
Iofi points her rod at the brute and says, "<span style="font-variant:small-caps;">That's not a cleaver, that's an eel!</span>" The brute watches in amazement as the cleaver in his hand bends and warps and elongates and grows flesh and teeth. Teeth that the eel sink into the brute's forearm.
The brute cries out and throws the eel to the ground and stumbles back.
The doorman scoots quickly away as the thugs release him and lunge toward Maddox, the first drawing a shortsword, and the second swinging an axe.
Maddox parries the shortsword, but the axe slices them across the ribs. They cry out.
"Maddox!" Iofi cries and brings her club down on the thug. It's an awkward swing and glances off the thug's arm, but it lands a substantially more solid blow than a frail glass rod ought to.
Maddox dashes to the side and throws another dagger, striking up to the hilt in the brute's chest. He clutches the blade and staggers to the floor.
The thug with the shortsword hesitates and takes a step back. But the one with the axe charges forward and swings at Iofi. The blow is heavy and rattles her bones, but she deflects it and swings her club again, this time cracking the thug in the head. He stumbles.
Maddox, having produced another dagger, lunges for thug with the axe, but the slash in his ribs is so painful that he is unable to strike a killing blow. Still, the axeman cries and stumbles.
Seeing his opportunity, the swordsman darts forward and pierces Maddox clean through the shoulder. Maddox cries out, barely still standing.
Iofi advances in a fury and the swordsman falls beneath a flurry of blows.
Maddox collapses in her arms and she drags him over to the doorman, who is huddling wide-eyed in the corner.
The thug with the axe staggers forward and raises the blade over his head as Maddox reaches out and weakly grabs the doorman by his lapel. Iofi looks up and makes eye contact with the axeman as he grunts and swings down on them. At the same time Maddox whispers, "Snap," and the three of them blink out of existence.
The axe buries itself in the floor, and the axeman looks around the room, empty except for him and his dead and dying comrades.
---
They arrive in a heap on the floor in safe house. Other Maddox is standing over them. They look gravely concerned, but they don't move forward to help them.
"I saw," they say softly. "I already called for help."
Iofi, still holding Maddox in her arms, looks up at the other Maddox. "Thank you," she says.
The doorman whimpers and tries to crawl away on all fours, and vomits on the ground.
Maddox groans, doubled over in pain. From between gritted teeth they hiss, "Wait outside. Stand watch."
Other Maddox nods and silently exits the room.
Maddox drags himself over to the doorman, the two of them both on the ground, and they shove him onto his back. From somewhere, they have produced another long bladed dagger. "Now," they whisper, holding the tip near the doorman's face. "Whatever it is you were about to tell those goons, you're going to tell us instead. Where's Blackguard?"
Iofi, her gown covered in blood, stands up and walks over to Maddox and the whimpering doorman.
She crouches down and reaches into her satchel and pulls out a turtle shell the size of her hand. It is jet black, with a bright orange dotted line around the edge. She places it on the ground next to the doorman, and watches it intently.
The doorman glances from Maddox to it, as first one and then another head pokes out from the shell. One looks at the doorman curiously, and the other ignores him, looking as much in the opposite direction as is possible.
"Yes," Iofi nods and says to the doorman, eyes still on the turtle, "I suggest you tell them what they want to know. It would be the right thing to do."
EOF

View File

@ -0,0 +1,59 @@
---
title: 00002. Meadowgloom
subtitle: Fucking Blackguard
created: 2022-08-31
updated: 2022-09-01
---
"You really don't know where Blackguard is," asks Maddox.
The four of them are sitting around a table in the safe house. Maddox, the bone doctor, Iofi, and Meadowgloom.
The bone doctor, summoned by Other Maddox, is extraordinarily pale. They have just finished stitching Maddox up, and are now wrapping them up in a bandage. They also set out some salve for Iofi, who is rubbing it into her boney forearms. They ache deeply from when she took the brunt of the blow from the axeman.
"I really don't," confesses Meadowgloom in his high, soft voice.
Meadowgloom is Blackguard's *majordomo*, head of his household staff. Up until recently he was quite happy and content with his job.
That was before, of course, he was detained and threatened with bodily dismemberment by three thugs who broke into the Blackguard house. Before being rescused by the tall dark haired woman and the short fair haired man, both of whom command strange magicks and are also quite handy with a hammer and a knife, respectively. Which makes them in some ways even scarier than the burglars were. And ultimately they also eventually threatened him with violence.
All because of Blackguard.
Blackguard, whose investments, speculations, and ventures have made him one of the most conspicuously wealthy merchants in Kriteach. Possibly on the entire island.
Blackguard, who over the last month started becoming increasingly anxious and secretive. Holding meetings at odd hours behind closed doors. Spending more and more time alone with his books. As though he knew the net was tightening, drawing closed around him.
Blackguard, who disappeared three days ago and left Meadowgloom holding the proverbial bag. After years of service and loyalty.
Fucking Blackguard.
"I don't," continues Meadowgloom. "But I can recreate his final days in the house for you. I can give you access to his books. His correspondence. Everything."
---
Meadowgloom's confidence starts to waiver as the three of them walk back to the Blackguard house. It was his sanctuary mere days ago. But now the illusion of safety has been shattered, and when he thinks of returning he feels a knot of dread in the pit of his stomach. He doesn't think he'll ever feel at peace there again.
He doesn't know how right he is about that.
The street is blocked off. The house, in the middle of the block, is collapsed in on itself and continues to smoke and smolder slightly. It is blackened by soot, gutted by fire, and utterly soaked from the efforts of putting out the blaze.
The fire brigade is now focused on putting out a neighboring apartment.
Meadowgloom moans helplessly and wordlessly. He was already mourning the psychological loss of his home. But he wasn't prepared for its physical loss.
"Shit," curses Maddox.
Iofi looks at them and frowns.
"It's a setback," she offers.
"It was our best and only lead," they counter.
Meadowgloom moans again and rushes past the barricade toward the house. He is stopped by the brigade, who won't let him advance. Maddox gives him a moment, and then steps forward and gently pulls him away. They walk back in the direction from which they came. Meadowgloom, silent and dejected, flanked on either side by Maddox and Iofi. Nothing else to be done here.
"You'll stay with us," Iofi pats Meadowgloom on the arm.
Maddox mumbles something under their breath and nods.
"It's the least we can do given the circumstances."
EOF

64
src/00003-hand.md 100644
View File

@ -0,0 +1,64 @@
---
title: 00003. The Hand
subtitle: council of five
created: 2022-09-01
updated: 2022-09-04
---
"They had accents," Maddox explains. They and Iofi are in Count Dindrati's library. They haven't been invited to sit, so they both stand. The count is seated at a table by himself studying a board game.
"They were from the west," they continue.
"Yes, yes." Dindrati waves his hand dismissively. His thumb and first two fingers are scaly, and each ends in a pointed tip.
He picks up a piece from the board and moves it.
"Your priorities have changed," he says, finally looking up from the board. His wide, smooth face would probably be quite unremarkable were it not for the raised gold-colored scales on the side of his jaw, like beetle carapaces crawling up his left cheekbone and encircling his eye. That eye has no pupil, no iris. Just a solid pool the color of liquid, molten metal.
"I have reason to believe that the Hand may be involved in Blackguard's disappearance." Maddox shifts their weight back onto their heels. Iofi draws her shoulders back a little. "I want you to find out. And if it's true, I want you to make them feel my disappointment."
He turns back to the game. "Start with the Pinky," he says and waves again, dismissing them.
Iofi clears her throat and says, "Going after the Hand is not nearly the same as interviewing the butler of a rich merchant. We'll need to renegotiate our contract."
Dindrati sighs and nods, and presses himself up from his game. He turns around and crosses the room. He draws one claw-tipped finger across the spines of the books on the shelf.
He pulls down a thick journal and turns back to the duo.
"Here," he says, holding it out to Iofi. "This should be enough to balance the scales."
Iofi reaches out and takes the book from the count.
"I'll adjust your pay accordingly," he concludes, sitting back down to the game.
---
The count nominally governs Kriteach County. He speaks with the authority of the king, and enforces his will with his own police force. But it is the Hand that in actuality runs the day to day operations of the city. They indulge in the standard practices of organized crime. Racketeering, bribery, extortion and the like. But they do so with the begrudging support of the citizens, because they also spend a significant amount of effort enforcing their own code of ethics. They investigate and punish breaches of conduct both within their own ranks, and also amongst the people. Theirs has become a sort of people's court.
The governing body of the Hand is a council of five. Hence the name. The individuals may change and come and go over the years. But the positions and the titles are always the same.
There is the Thumb, as in "under my". They serve an executive function in the Hand, getting to set agendas and priorities and direction.
The Index is the book keeper for the whole organization. His accountants and lawyers know all the secrets and how to protect them. And only he knows the extent and the contents, and the whereabouts, of the Hand's coffers.
There is no subtly to the Tall Man's racket. His is enforcement and protection. Usually through muscle and brute force. Although his crew has been known to pull off a clandestine operation or two.
The Dead Ringer employs a small number of spies. They broker in espionage, intrigue, disguise, and when necessary, assassination and disposal.
And finally there is the Pinky--as in "wrapped around my little finger"--whose portfolio includes information and blackmail. Their network of spies is not necessarily limited to, but is largely comprised of, the working girls in the brothels. And their intel are the secrets that foolish men let slip while their head is on the pillow.
It is a well known secret that the current Pinky, one Madam Rose Walker, is the owner and proprietor of Madam Walker's Supper Club. A charmingly seedy establishment where you can get a good bite to eat and then, if you pay a little more, you can head upstairs and have one of the girls for desert.
---
Iofi and Maddox spent the day preparing. The book that Count Dindrati gave them was a grimorie. A book of magic.
One of the rituals they prepared involved Iofi consuming the heart of an animal. Meadowgloom dutifully obtained and prepared the beast while the two of them continued to study. "Divination is more your thing than mine anyway," Maddox said apologetically as Iofi frowned and suffered through eating the thing.
And now here they are. Standing in the shadows outside the supper club in the southern part of the Lost Arch district, near the harbour.
Convention dictates they conduct their missions after hours. But "after hours" at a brothel is typically midday, which they agreed would leave them feeling a little exposed. So they opted for 3:00, the bewitching hour.
"Ready?" Iofi asks quietly. Maddox nods and the two of them step out of the shadows. Maddox grumbles once again at the lack of windows on the ground floor. They walk past the painted red front door and around to the back alley where the entrance to the kitchen is. Iofi reaches into her satchel to pet the black turtle as she walks up to the door. She places her hand on the door and speaks with two voices, "<span style="font-variant:small-caps;">The door is open.</span>" She presses gently and the door swings open.
She steps aside so that Maddox can slip in, and then follows them and closes the door shut behind them.
EOF

29
src/00004.md 100644
View File

@ -0,0 +1,29 @@
---
title: 00004. Pinky
subtitle: '"wrapped around my little finger"'
created: 2022-09-03
updated: 2022-09-03
---
<!--
## SPELLS ##
- Entropic Drain: Siphon 1d6 Grit from one target to another.
- Kinetic Blast: Unleash a cone of force in a d6 damage blast in front of you. Any who suffer Direct Damage are knocked down.
## RITUALS ##
- Perfect Divination - [beasts heart] Consume the still warm heart of a beast to be granted a perfect vision of the next day. Once, at any point during the next 24 hours, you may declare that what has happened was not reality, but actually part of your vision of the future. “Rewind” to a point of your choosing between your performance of the ritual and now.
//-->
<!--
5x5 Cardtography Dungeon
boss = 2nd level stairs
//-->

106
src/about.md 100644
View File

@ -0,0 +1,106 @@
---
title: Cleric + Thief
subtitle: About
created: 2022-08-30
updated: 2022-08-30
toc: true
toc-title: Contents
---
## About
This is a fantasy story about a cleric and a thief embroiled in a web of politics, intrigue, religion, and justice.
## Iofi
Iofi (she/her)
> "How do we know what is good?"
A scholar cleric questioning what is right.
tags: white blue
structure order reason group
order knowledge
peace perfection
- STR d6
- DEX d6
- WIL d8
- GRIT 4
- Domain d8
- Core Ability: Words of God
- Advanced Abilities: Gemini
- Equipment
- Janice, A two-headed turtle, Tiny God of Doors and Tides
- Ceremonial Hammer (d6)
- Eulogy (XP: 1)
- Suvive a deadly encounter with Cleaver and the Gang, landing some smashing blows with your glass hammer
Words of God:
When you attempt to make something true by speaking with the words of your god, you risk the universe rejecting your statement.
Adjust your Domain Die based on your intended outcome. If the Die would step below a d4 the statement is impossible, if it would step above a d12 it happens without a roll. Otherwise, roll it as a normal Save:
- Win: The statement takes effect.
- Tie: Making the statement true saps your gods power, your Domain die steps down.
- Lose: The statement fails and your Domain die steps down.
Domain Die loss is restored through offerings or religious rites for your God.
Step down your Domain Die if the statement:
- Impacts things outside of your line of sight.
- Directly contradicts the natural working of the world.
- Describes a long lasting effect (step down twice if permanent).
- Is a poor fit for your gods Domain.
Step up your Domain Die if the statement:
- Impacts only things you are touching.
- Is copacetic with the natural working of the world.
- Describes a fleeting effect.
- Is a perfect fit for your gods Domain.
Gemini: Your god has a second Domain, complementary in some way to the first.
## Maddox
Maddox (they/them)
> "How do I get what I want?"
A sneaky bastard who always gets what he wants.
tags: black red
independence chaos emotion individual
ruthlesness action
satisfaction freedom
- STR d6
- DEX d8
- WIL d6
- GRIT 4
- Core Ability: Illusory Self
- Advanced Abilities: Snap
- Equipment:
- Daggers (d6), you always manage to have another one secreted about your person.
- Ring of 6 Bump Keys, roll a d6 to open a lock: (1: the lock and key break, 2-3: the lock or key breaks, 4-6: nothing breaks).
- A Dramatic Looking Cloak
- Eulogy (XP: 1)
- Survive a deadly encounter with Cleaver and the Gang, snapping everybody out of harm's way at the last moment
Illusory Self: Create a number of illusory clones up to the number of advanced abilities you have. Your clones are insubstantial and intangible but are otherwise indistinguishable from your real self. You do not have to declare which of you is real until it matters, and you share the senses of all clones simultaneously. When attacking with clones if you would deal Direct Damage you must either declare the clone is actually you or reveal it as an illusion.
Snap: Recall your clone to yourself, or yourself to your clone from any distance. Anyone touching you while you do so is carried along.
## Setting
The world of Aulia is divided into the western continent, the eastern continent, and the middle continent.
Our story takes in the city of Kriteach, a key port in the middle continent, part of the Kingdom of Sahtor'larath, whose monarch rules in the east.
## Contact
email: dozens@tilde.team
mastodon: @dozens@tiny.tilde.website
irc: dozens @ tidle.chat, libera.chat

14
src/index.md 100644
View File

@ -0,0 +1,14 @@
---
title: "Cleric + Thief"
subtitle: Adventures of Iofi and Maddox
created: 2022-08-30
updated: 2022-09-01
---
[subscribe to episodes](episodes.xml)
<!-- BEGIN //-->
- <time>2022-09-03</time> - [00003. The Hand](00003-hand.html)
- <time>2022-09-01</time> - [00002. Meadowgloom](00002-meadowgloom.html)
- <time>2022-08-30</time> - [00001. Cleric + Thief](00001-introductions.html)
<!-- END //-->

23
src/journal.draft 100644
View File

@ -0,0 +1,23 @@
## 2022-09-07 - Non-Player Characters
NPCs are kind of a weird concept in the context of solo games.
Every character is a player character when you're the only player.
## 2022-09-05 - How To Play Cleric + Thief
Here's how I play Cleric + Thief.
It's the basic flow for any solo RPG I play.
1. Set the scene: think about what your characters are doing right now, and what their goals are.
2. Roll dice: determine a scene complication and/or alteration
3. Roll dice: Ask a bunch of questions.
4. Have your characters react and respond to the situation. Do a lot of writing.
5. Repeat steps 3 and 4 as much as desired.
6. Update lists of NPCs and plot threads.

54
src/journal.md 100644
View File

@ -0,0 +1,54 @@
---
title: Cleric + Thief
subtitle: Journal
created: 2022-08-30
updated: 2022-09-03
toc: false
---
This is a journal of meta-content and behind the scenes kind of updates.
[subscribe to updates](journal.xml)
<!-- BEGIN //-->
## <time>2022-09-03</time> - Feed Esoterica
Okay some of you will get a kick out of this.
I decided I needed to roll my own feeds, and so I used ED to programatically edit my source files into recfiles, used an m4 include in one instance, and then used recfmt templates to create the rss items.
That is right. Ed, m4, and recutils.
## <time>2022-09-02</time> - Blow Me Down
It is definitely *not* true that I based the looks of Iofi and Maddox on Shelley Duvall and Robin Williams from the 1980 American musical comedy smash hit *Popeye*.
## <time>2022-09-01</time> - episodes rss feed
Made an update that will hopefully fix the links in the Episodes feed.
If not, I might need to start handrolling a feed instead of relying on [blog.miso.town](https://blog.miso.town).
In fact, I just noticed that the journal feed is kind of borked too.
Yeah I may just need to create my own feeds..
## <time>2022-09-01</time> - 00002. Meadowgloom
Hey gamers it's ya boy dozens!
This update focuses briefly on Meadowgloom. Which is a name I snatched up from a fantasy name generator. It also generated the astounding name "Eccentric Kevin". Who is a character I have every intention of introducing at some point as a perfectly normal, sane, and reasonable straight man.
## <time>2022-08-30</time> - 00001. Cleric + Thief
Hey I started a new thing!
This is the narrative version of a solo roleplaying game.
It is based on the mechanics and the *callings* of [Brighter Worlds by awkwardturtle][brighter]. It is a lovely game and I wanted to play it. I came up with the setting and the starting scenario using [GRAPES and WTAF?! tarot spreads as described by Sean F. Smith][grapes]. And then I used the [One Page Solo Engine][opse] to answer questions during play.
[opse]: https://inflatablestudios.itch.io/one-page-solo-engine
[brighter]: https://awkwardturtle.itch.io/brighter-worlds
[grapes]: https://sean-f-smith.medium.com/with-this-tool-youll-never-run-out-of-ideas-15d19ab72dfb
My thief almost friggin died in the very first scenario. Yikes! Combat is lethal.
<!-- END //-->

View File

@ -0,0 +1,9 @@
<item>
<title>{{title}}</title>
<link>http://tilde.town/~dozens/clericthief/{{link}}</link>
<pubDate>syscmd(`gdate -d {{time}}')</pubDate>
<guid isPermaLink="false">{{time}} {{title}}</guid>
<description>
include(`src/{{source}}')
</description>
</item>

View File

@ -0,0 +1,2 @@
<link rel="alternate" type="application/rss+xml" title="episodes" href="http://tilde.town/~dozens/clericthief/episodes.xml">
<link rel="alternate" type="application/rss+xml" title="journal" href="http://tilde.town/~dozens/clericthief/journal.xml">

View File

@ -0,0 +1,9 @@
<item>
<title>{{title}}</title>
<link>http://tilde.town/~dozens/clericthief/journal.html</link>
<guid isPermaLink="false">{{time}} {{title}}</guid>
<pubDate>syscmd(`gdate -d {{time}}')</pubDate>
<description>
{{note}}
</description>
</item>

View File

@ -0,0 +1,4 @@
Cleric + Thief
| <a href="index.html">Episodes</a>
| <a href="about.html">About</a>
| <a href="journal.html">Journal</a>

View File

@ -0,0 +1,231 @@
<!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>00001. Cleric + Thief</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]-->
<link rel="alternate" type="application/rss+xml" title="episodes" href="http://tilde.town/~dozens/clericthief/episodes.xml">
<link rel="alternate" type="application/rss+xml" title="journal" href="http://tilde.town/~dozens/clericthief/journal.xml">
</head>
<body>
Cleric + Thief
| <a href="index.html">Episodes</a>
| <a href="about.html">About</a>
| <a href="journal.html">Journal</a>
<header id="title-block-header">
<h1 class="title">00001. Cleric + Thief</h1>
<p class="subtitle">Introducing Iofi and Maddox</p>
</header>
<p>Iofi knocks on the front door of the apartment while Maddox turns and faces the other way, inspecting the immaculate lawn and the empty tree-lined street.</p>
<p>“Does the formality of it ever strike you as funny?” asks Maddox. They are short and fidgety, with a ruddy face, small squinting eyes, and short shaggy blonde hair.</p>
<p>Iofi drags the fingers of one hand gently across the face of the door. Her other hand starts to reach instinctively for the satchel around her waist, but then the returns it to her side after all. “Funny?” she echoes quietly, almost to herself. She is tall, almost gaunt. Her long dark hair is pulled back into a low tight bun. She has slightly buck teeth and a slight overbite, and large dark eyes with hooded eyelids.</p>
<p>“Knocking like that. Like you need permission.” Maddox continues quietly, their voice just above a whisper. “You dont find it funny?”</p>
<p>“Its the right thing to do,” Iofi answers, turning her head slightly toward her partner.</p>
<p>Maddox turns from the lawn, satisfied for now, and leans over the railing to peer in through the window.</p>
<p>“The right thing to do,” they counter, “is whatever gets you what you need.” They squint, trying to make out the inside of the room through the thin curtains. “And right now, we need to find the merchant.”</p>
<p>The door opens a crack just as Iofi raises her fist to knock a second time.</p>
<p>Maddox quickly straightens up and tries not to look like they were just spying through the window.</p>
<p>In the doorway is a small bald man with a thin, meticulous goatee and mustache. He stands in the small space between the door and its frame and peers out at them with large watery eyes and a gaping mouth like a goldfish.</p>
<p>“Yes?” he greets them with a soft, high voice.</p>
<p>“Hello,” Iofi smiles, revealing an impressive amount of teeth, her mouth giving a round shape to her vowels. “Were looking for Mister Dedric Blackguard. Is he available?”</p>
<p>Maddox clears their throat and tugs on their sleeves on the front porch. The small man glances at them briefly before flicking his eyes back to Iofi.</p>
<p>“No, Im afraid Mister Blackguard is not here at the moment.”</p>
<p>Maddox asks, “Do you know when he will be back?” their voice a little raspy as they speak up to be heard.</p>
<p>“Im afraid not,” he answers in his childlike voice. There is a heavy thump and a scrape from somewhere behind the door. The doorman flinches and smiles nervously.</p>
<p>Maddox narrows their eyes, and concern appears on Iofis face. “Is everything alright?” she asks. The doormans eyes flit quickly behind the door.</p>
<p>“Yes! Yes, everything is quite alright. It, erm. It was just the cat!”</p>
<p>“The cat,” echoes Iofi.</p>
<p>“Look,” the doorman squeaks, “I really must be going. I really am busy. Ill tell Mister Blackguard you were here. Miss?”</p>
<p>“Iofi.” She gestures behind her, “and Maddox. From the office of the Governor.”</p>
<p>The doorman meeps quietly again. “The governor? Oh, um. Yes, very good. I will let Mister Blackguard know. Now, as I said, I am very busy. Good day!”</p>
<p>The small man closes the door in their faces. There is the sound of a key turning in a lock, and the sliding of a bolt.</p>
<p>“Do you think hes in trouble in there?” Maddox asks Iofi, their voice a little more melodious as it drops to its natural register just above a whisper.</p>
<p>“If he is, it would be the right thing to do to help him, wouldnt it?” Iofi answers dipping her hand into her satchel.</p>
<p>“Im more concerned about losing a lead than doing the right thing, but you know. Tell yourself what you need to hear.”</p>
<p>Iofi places her free hand on the door and when she speaks next, she does so with two voices at once. “<span class="smallcaps">This door is unlocked</span>.” She lowers her hand to the door handle and turns it, and steps aside making room for Maddox at her side as she silently opens it a crack.</p>
<p>Maddox peers into the empty foyer on the other side of the door. There is a staircase leading up to the second level, a hallway receding away from them toward the back of the house, and a large doorway on either side.</p>
<p>A second Maddox walks briskly but silently in from the room on the right and looks expectantly at the two of them lurking in the doorway. The Maddox on the front porch nods at Iofi, who pushes the front door open wide enough for them both to fit through.</p>
<p>Maddox tells the other Maddox, “Continue searching the downstairs. If everythings clear, head back to the safe house and wait for us there.” Maddox nods, and silently continues through the doorway on the left into a dining room.</p>
<p>Maddox turns back to Iofi and nods questioningly toward the stairs. They go first, a dagger suddenly in each hand. She pulls a glass rod out of her satchel, something between a large hammer and small club, and follows.</p>
<p>At the top of the stairs is a hall with four rooms. Two to the left, one to the right, and one straight ahead.</p>
<p>Muffled voices drift down the hall from the room at the far end of the hall.</p>
<p>Maddox and Iofi creep forward. One of the voices is the high, soft, trembling voice of the doorman. The other voice is low, calm, and commanding.</p>
<p>“I told you I dont know where he is!”</p>
<p>“And I told you that is not an acceptable answer.” Maddox frowns at the voices western accent and glances back and up at Iofi. She nods, a single line of concern creasing her brow. She heard it to.</p>
<p>“He has something of ours,” the voice continues. “We need it back.”</p>
<p>The doorman yelps and there is the sound of a brief scuffle, and a thump, and the doorman cries out in despair.</p>
<p>Iofi leans over Maddox and places her hand on the door. “Ready?” They crouch and raise their daggers. “<span class="smallcaps">Were already on the other side.</span></p>
<p>In an instant, Maddox and Iofi find themselves on the other side of the door. Two thugs are holding the terrified doorman down in a chair. One is pressing his hand flat down on the table in front of him, fingers splayed. A third brute is standing before the doorman, a cleaver in his hand, raised over the doormans fingers.</p>
<p>Maddox flings one dagger at the brute with the cleaver. It lodges in the meat of his shoulder and he howls. All eyes turn toward the door, which remains closed and locked.</p>
<p>Iofi points her rod at the brute and says, “<span class="smallcaps">Thats not a cleaver, thats an eel!</span>” The brute watches in amazement as the cleaver in his hand bends and warps and elongates and grows flesh and teeth. Teeth that the eel sink into the brutes forearm.</p>
<p>The brute cries out and throws the eel to the ground and stumbles back.</p>
<p>The doorman scoots quickly away as the thugs release him and lunge toward Maddox, the first drawing a shortsword, and the second swinging an axe.</p>
<p>Maddox parries the shortsword, but the axe slices them across the ribs. They cry out.</p>
<p>“Maddox!” Iofi cries and brings her club down on the thug. Its an awkward swing and glances off the thugs arm, but it lands a substantially more solid blow than a frail glass rod ought to.</p>
<p>Maddox dashes to the side and throws another dagger, striking up to the hilt in the brutes chest. He clutches the blade and staggers to the floor.</p>
<p>The thug with the shortsword hesitates and takes a step back. But the one with the axe charges forward and swings at Iofi. The blow is heavy and rattles her bones, but she deflects it and swings her club again, this time cracking the thug in the head. He stumbles.</p>
<p>Maddox, having produced another dagger, lunges for thug with the axe, but the slash in his ribs is so painful that he is unable to strike a killing blow. Still, the axeman cries and stumbles.</p>
<p>Seeing his opportunity, the swordsman darts forward and pierces Maddox clean through the shoulder. Maddox cries out, barely still standing.</p>
<p>Iofi advances in a fury and the swordsman falls beneath a flurry of blows.</p>
<p>Maddox collapses in her arms and she drags him over to the doorman, who is huddling wide-eyed in the corner.</p>
<p>The thug with the axe staggers forward and raises the blade over his head as Maddox reaches out and weakly grabs the doorman by his lapel. Iofi looks up and makes eye contact with the axeman as he grunts and swings down on them. At the same time Maddox whispers, “Snap,” and the three of them blink out of existence.</p>
<p>The axe buries itself in the floor, and the axeman looks around the room, empty except for him and his dead and dying comrades.</p>
<hr />
<p>They arrive in a heap on the floor in safe house. Other Maddox is standing over them. They look gravely concerned, but they dont move forward to help them.</p>
<p>“I saw,” they say softly. “I already called for help.”</p>
<p>Iofi, still holding Maddox in her arms, looks up at the other Maddox. “Thank you,” she says.</p>
<p>The doorman whimpers and tries to crawl away on all fours, and vomits on the ground.</p>
<p>Maddox groans, doubled over in pain. From between gritted teeth they hiss, “Wait outside. Stand watch.”</p>
<p>Other Maddox nods and silently exits the room.</p>
<p>Maddox drags himself over to the doorman, the two of them both on the ground, and they shove him onto his back. From somewhere, they have produced another long bladed dagger. “Now,” they whisper, holding the tip near the doormans face. “Whatever it is you were about to tell those goons, youre going to tell us instead. Wheres Blackguard?”</p>
<p>Iofi, her gown covered in blood, stands up and walks over to Maddox and the whimpering doorman.</p>
<p>She crouches down and reaches into her satchel and pulls out a turtle shell the size of her hand. It is jet black, with a bright orange dotted line around the edge. She places it on the ground next to the doorman, and watches it intently.</p>
<p>The doorman glances from Maddox to it, as first one and then another head pokes out from the shell. One looks at the doorman curiously, and the other ignores him, looking as much in the opposite direction as is possible.</p>
<p>“Yes,” Iofi nods and says to the doorman, eyes still on the turtle, “I suggest you tell them what they want to know. It would be the right thing to do.”</p>
<p>EOF</p>
</body>
</html>

View File

@ -0,0 +1,191 @@
<!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>00002. Meadowgloom</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]-->
<link rel="alternate" type="application/rss+xml" title="episodes" href="http://tilde.town/~dozens/clericthief/episodes.xml">
<link rel="alternate" type="application/rss+xml" title="journal" href="http://tilde.town/~dozens/clericthief/journal.xml">
</head>
<body>
Cleric + Thief
| <a href="index.html">Episodes</a>
| <a href="about.html">About</a>
| <a href="journal.html">Journal</a>
<header id="title-block-header">
<h1 class="title">00002. Meadowgloom</h1>
<p class="subtitle">Fucking Blackguard</p>
</header>
<p>“You really dont know where Blackguard is,” asks Maddox.</p>
<p>The four of them are sitting around a table in the safe house. Maddox, the bone doctor, Iofi, and Meadowgloom.</p>
<p>The bone doctor, summoned by Other Maddox, is extraordinarily pale. They have just finished stitching Maddox up, and are now wrapping them up in a bandage. They also set out some salve for Iofi, who is rubbing it into her boney forearms. They ache deeply from when she took the brunt of the blow from the axeman.</p>
<p>“I really dont,” confesses Meadowgloom in his high, soft voice.</p>
<p>Meadowgloom is Blackguards <em>majordomo</em>, head of his household staff. Up until recently he was quite happy and content with his job.</p>
<p>That was before, of course, he was detained and threatened with bodily dismemberment by three thugs who broke into the Blackguard house. Before being rescused by the tall dark haired woman and the short fair haired man, both of whom command strange magicks and are also quite handy with a hammer and a knife, respectively. Which makes them in some ways even scarier than the burglars were. And ultimately they also eventually threatened him with violence.</p>
<p>All because of Blackguard.</p>
<p>Blackguard, whose investments, speculations, and ventures have made him one of the most conspicuously wealthy merchants in Kriteach. Possibly on the entire island.</p>
<p>Blackguard, who over the last month started becoming increasingly anxious and secretive. Holding meetings at odd hours behind closed doors. Spending more and more time alone with his books. As though he knew the net was tightening, drawing closed around him.</p>
<p>Blackguard, who disappeared three days ago and left Meadowgloom holding the proverbial bag. After years of service and loyalty.</p>
<p>Fucking Blackguard.</p>
<p>“I dont,” continues Meadowgloom. “But I can recreate his final days in the house for you. I can give you access to his books. His correspondence. Everything.”</p>
<hr />
<p>Meadowglooms confidence starts to waiver as the three of them walk back to the Blackguard house. It was his sanctuary mere days ago. But now the illusion of safety has been shattered, and when he thinks of returning he feels a knot of dread in the pit of his stomach. He doesnt think hell ever feel at peace there again.</p>
<p>He doesnt know how right he is about that.</p>
<p>The street is blocked off. The house, in the middle of the block, is collapsed in on itself and continues to smoke and smolder slightly. It is blackened by soot, gutted by fire, and utterly soaked from the efforts of putting out the blaze.</p>
<p>The fire brigade is now focused on putting out a neighboring apartment.</p>
<p>Meadowgloom moans helplessly and wordlessly. He was already mourning the psychological loss of his home. But he wasnt prepared for its physical loss.</p>
<p>“Shit,” curses Maddox.</p>
<p>Iofi looks at them and frowns.</p>
<p>“Its a setback,” she offers.</p>
<p>“It was our best and only lead,” they counter.</p>
<p>Meadowgloom moans again and rushes past the barricade toward the house. He is stopped by the brigade, who wont let him advance. Maddox gives him a moment, and then steps forward and gently pulls him away. They walk back in the direction from which they came. Meadowgloom, silent and dejected, flanked on either side by Maddox and Iofi. Nothing else to be done here.</p>
<p>“Youll stay with us,” Iofi pats Meadowgloom on the arm.</p>
<p>Maddox mumbles something under their breath and nods.</p>
<p>“Its the least we can do given the circumstances.”</p>
<p>EOF</p>
</body>
</html>

193
www/00003-hand.html 100644
View File

@ -0,0 +1,193 @@
<!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>00003. The Hand</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]-->
<link rel="alternate" type="application/rss+xml" title="episodes" href="http://tilde.town/~dozens/clericthief/episodes.xml">
<link rel="alternate" type="application/rss+xml" title="journal" href="http://tilde.town/~dozens/clericthief/journal.xml">
</head>
<body>
Cleric + Thief
| <a href="index.html">Episodes</a>
| <a href="about.html">About</a>
| <a href="journal.html">Journal</a>
<header id="title-block-header">
<h1 class="title">00003. The Hand</h1>
<p class="subtitle">council of five</p>
</header>
<p>“They had accents,” Maddox explains. They and Iofi are in Count Dindratis library. They havent been invited to sit, so they both stand. The count is seated at a table by himself studying a board game. “They were from the west,” they continue.</p>
<p>“Yes, yes.” Dindrati waves his hand dismissively. His thumb and first two fingers are scaly, and each ends in a pointed tip.</p>
<p>He picks up a piece from the board and moves it.</p>
<p>“Your priorities have changed,” he says, finally looking up from the board. His wide, smooth face would probably be quite unremarkable were it not for the raised gold-colored scales on the side of his jaw, like beetle carapaces crawling up his left cheekbone and encircling his eye. That eye has no pupil, no iris. Just a solid pool the color of liquid, molten metal.</p>
<p>“I have reason to believe that the Hand may be involved in Blackguards disappearance.” Maddox shifts their weight back onto their heels. Iofi draws her shoulders back a little. “I want you to find out. And if its true, I want you to make them feel my disappointment.”</p>
<p>He turns back to the game. “Start with the Pinky,” he says and waves again, dismissing them.</p>
<p>Iofi clears her throat and says, “Going after the Hand is not nearly the same as interviewing the butler of a rich merchant. Well need to renegotiate our contract.”</p>
<p>Dindrati sighs and nods, and presses himself up from his game. He turns around and crosses the room. He draws one claw-tipped finger across the spines of the books on the shelf.</p>
<p>He pulls down a thick journal and turns back to the duo.</p>
<p>“Here,” he says, holding it out to Iofi. “This should be enough to balance the scales.”</p>
<p>Iofi reaches out and takes the book from the count.</p>
<p>“Ill adjust your pay accordingly,” he concludes, sitting back down to the game.</p>
<hr />
<p>The count nominally governs Kriteach County. He speaks with the authority of the king, and enforces his will with his own police force. But it is the Hand that in actuality runs the day to day operations of the city. They indulge in the standard practices of organized crime. Racketeering, bribery, extortion and the like. But they do so with the begrudging support of the citizens, because they also spend a significant amount of effort enforcing their own code of ethics. They investigate and punish breaches of conduct both within their own ranks, and also amongst the people. Theirs has become a sort of peoples court.</p>
<p>The governing body of the Hand is a council of five. Hence the name. The individuals may change and come and go over the years. But the positions and the titles are always the same.</p>
<p>There is the Thumb, as in “under my”. They serve an executive function in the Hand, getting to set agendas and priorities and direction.</p>
<p>The Index is the book keeper for the whole organization. His accountants and lawyers know all the secrets and how to protect them. And only he knows the extent and the contents, and the whereabouts, of the Hands coffers.</p>
<p>There is no subtly to the Tall Mans racket. His is enforcement and protection. Usually through muscle and brute force. Although his crew has been known to pull off a clandestine operation or two.</p>
<p>The Dead Ringer employs a small number of spies. They broker in espionage, intrigue, disguise, and when necessary, assassination and disposal.</p>
<p>And finally there is the Pinkyas in “wrapped around my little finger”whose portfolio includes information and blackmail. Their network of spies is not necessarily limited to, but is largely comprised of, the working girls in the brothels. And their intel are the secrets that foolish men let slip while their head is on the pillow.</p>
<p>It is a well known secret that the current Pinky, one Madam Rose Walker, is the owner and proprietor of Madam Walkers Supper Club. A charmingly seedy establishment where you can get a good bite to eat and then, if you pay a little more, you can head upstairs and have one of the girls for desert.</p>
<hr />
<p>Iofi and Maddox spent the day preparing. The book that Count Dindrati gave them was a grimorie. A book of magic.</p>
<p>One of the rituals they prepared involved Iofi consuming the heart of an animal. Meadowgloom dutifully obtained and prepared the beast while the two of them continued to study. “Divination is more your thing than mine anyway,” Maddox said apologetically as Iofi frowned and suffered through eating the thing.</p>
<p>And now here they are. Standing in the shadows outside the supper club in the southern part of the Lost Arch district, near the harbour.</p>
<p>Convention dictates they conduct their missions after hours. But “after hours” at a brothel is typically midday, which they agreed would leave them feeling a little exposed. So they opted for 3:00, the bewitching hour.</p>
<p>“Ready?” Iofi asks quietly. Maddox nods and the two of them step out of the shadows. Maddox grumbles once again at the lack of windows on the ground floor. They walk past the painted red front door and around to the back alley where the entrance to the kitchen is. Iofi reaches into her satchel to pet the black turtle as she walks up to the door. She places her hand on the door and speaks with two voices, “<span class="smallcaps">The door is open.</span>” She presses gently and the door swings open.</p>
<p>She steps aside so that Maddox can slip in, and then follows them and closes the door shut behind them.</p>
<p>EOF</p>
</body>
</html>

183
www/00004.html 100644
View File

@ -0,0 +1,183 @@
<!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>00004. Pinky</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]-->
<link rel="alternate" type="application/rss+xml" title="episodes" href="http://tilde.town/~dozens/clericthief/episodes.xml">
<link rel="alternate" type="application/rss+xml" title="journal" href="http://tilde.town/~dozens/clericthief/journal.xml">
</head>
<body>
Cleric + Thief
| <a href="index.html">Episodes</a>
| <a href="about.html">About</a>
| <a href="journal.html">Journal</a>
<header id="title-block-header">
<h1 class="title">00004. Pinky</h1>
<p class="subtitle">“wrapped around my little finger”</p>
</header>
<!--
## SPELLS ##
- Entropic Drain: Siphon 1d6 Grit from one target to another.
- Kinetic Blast: Unleash a cone of force in a d6 damage blast in front of you. Any who suffer Direct Damage are knocked down.
## RITUALS ##
- Perfect Divination - [beasts heart] Consume the still warm heart of a beast to be granted a perfect vision of the next day. Once, at any point during the next 24 hours, you may declare that what has happened was not reality, but actually part of your vision of the future. “Rewind” to a point of your choosing between your performance of the ritual and now.
//-->
<!--
5x5 Cardtography Dungeon
boss = 2nd level stairs
//-->
</body>
</html>

247
www/about.html 100644
View File

@ -0,0 +1,247 @@
<!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>Cleric + Thief</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]-->
<link rel="alternate" type="application/rss+xml" title="episodes" href="http://tilde.town/~dozens/clericthief/episodes.xml">
<link rel="alternate" type="application/rss+xml" title="journal" href="http://tilde.town/~dozens/clericthief/journal.xml">
</head>
<body>
Cleric + Thief
| <a href="index.html">Episodes</a>
| <a href="about.html">About</a>
| <a href="journal.html">Journal</a>
<header id="title-block-header">
<h1 class="title">Cleric + Thief</h1>
<p class="subtitle">About</p>
</header>
<nav id="TOC" role="doc-toc">
<h2 id="toc-title">Contents</h2>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#iofi">Iofi</a></li>
<li><a href="#maddox">Maddox</a></li>
<li><a href="#setting">Setting</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<h2 id="about">About</h2>
<p>This is a fantasy story about a cleric and a thief embroiled in a web of politics, intrigue, religion, and justice.</p>
<h2 id="iofi">Iofi</h2>
<p>Iofi (she/her)</p>
<blockquote>
<p>“How do we know what is good?”</p>
</blockquote>
<p>A scholar cleric questioning what is right.</p>
<p>tags: white blue structure order reason group order knowledge peace perfection</p>
<ul>
<li>STR d6</li>
<li>DEX d6</li>
<li>WIL d8</li>
<li>GRIT 4</li>
<li>Domain d8</li>
<li>Core Ability: Words of God</li>
<li>Advanced Abilities: Gemini</li>
<li>Equipment
<ul>
<li>Janice, A two-headed turtle, Tiny God of Doors and Tides</li>
<li>Ceremonial Hammer (d6)</li>
</ul></li>
<li>Eulogy (XP: 1)
<ul>
<li>Suvive a deadly encounter with Cleaver and the Gang, landing some smashing blows with your glass hammer</li>
</ul></li>
</ul>
<p>Words of God:</p>
<p>When you attempt to make something true by speaking with the words of your god, you risk the universe rejecting your statement.</p>
<p>Adjust your Domain Die based on your intended outcome. If the Die would step below a d4 the statement is impossible, if it would step above a d12 it happens without a roll. Otherwise, roll it as a normal Save:</p>
<ul>
<li>Win: The statement takes effect.</li>
<li>Tie: Making the statement true saps your gods power, your Domain die steps down.</li>
<li>Lose: The statement fails and your Domain die steps down.</li>
</ul>
<p>Domain Die loss is restored through offerings or religious rites for your God.</p>
<p>Step down your Domain Die if the statement: - Impacts things outside of your line of sight. - Directly contradicts the natural working of the world. - Describes a long lasting effect (step down twice if permanent). - Is a poor fit for your gods Domain.</p>
<p>Step up your Domain Die if the statement: - Impacts only things you are touching. - Is copacetic with the natural working of the world. - Describes a fleeting effect. - Is a perfect fit for your gods Domain.</p>
<p>Gemini: Your god has a second Domain, complementary in some way to the first.</p>
<h2 id="maddox">Maddox</h2>
<p>Maddox (they/them)</p>
<blockquote>
<p>“How do I get what I want?”</p>
</blockquote>
<p>A sneaky bastard who always gets what he wants.</p>
<p>tags: black red independence chaos emotion individual ruthlesness action satisfaction freedom</p>
<ul>
<li>STR d6</li>
<li>DEX d8</li>
<li>WIL d6</li>
<li>GRIT 4</li>
<li>Core Ability: Illusory Self</li>
<li>Advanced Abilities: Snap</li>
<li>Equipment:
<ul>
<li>Daggers (d6), you always manage to have another one secreted about your person.</li>
<li>Ring of 6 Bump Keys, roll a d6 to open a lock: (1: the lock and key break, 2-3: the lock or key breaks, 4-6: nothing breaks).</li>
<li>A Dramatic Looking Cloak</li>
</ul></li>
<li>Eulogy (XP: 1)
<ul>
<li>Survive a deadly encounter with Cleaver and the Gang, snapping everybody out of harms way at the last moment</li>
</ul></li>
</ul>
<p>Illusory Self: Create a number of illusory clones up to the number of advanced abilities you have. Your clones are insubstantial and intangible but are otherwise indistinguishable from your real self. You do not have to declare which of you is real until it matters, and you share the senses of all clones simultaneously. When attacking with clones if you would deal Direct Damage you must either declare the clone is actually you or reveal it as an illusion.</p>
<p>Snap: Recall your clone to yourself, or yourself to your clone from any distance. Anyone touching you while you do so is carried along.</p>
<h2 id="setting">Setting</h2>
<p>The world of Aulia is divided into the western continent, the eastern continent, and the middle continent.</p>
<p>Our story takes in the city of Kriteach, a key port in the middle continent, part of the Kingdom of Sahtorlarath, whose monarch rules in the east.</p>
<h2 id="contact">Contact</h2>
<p>email: dozens@tilde.team<br />
mastodon: <span class="citation" data-cites="dozens">@dozens</span><span class="citation" data-cites="tiny.tilde.website">@tiny.tilde.website</span><br />
irc: dozens @ tidle.chat, libera.chat</p>
</body>
</html>

295
www/episodes.xml 100644
View File

@ -0,0 +1,295 @@
<rss version="2.0"><channel><title>cleric + thief</title>
<link>http://tilde.town/~dozens/clericthief/index.html</link><description>adventures of iofi and maddox</description><atom:link rel="self" type="application/rss+xml" href="http://tilde.town/~dozens/clericthief/episodes.xml"/>
<item>
<title>00003. The Hand</title>
<link>http://tilde.town/~dozens/clericthief/00003-hand.html</link>
<pubDate>Sat Sep 3 00:00:00 MDT 2022
</pubDate>
<guid isPermaLink="false">2022-09-03 00003. The Hand</guid>
<description>
---
title: 00003. The Hand
subtitle: council of five
created: 2022-09-01
updated: 2022-09-04
---
"They had accents," Maddox explains. They and Iofi are in Count Dindrati's library. They haven't been invited to sit, so they both stand. The count is seated at a table by himself studying a board game.
"They were from the west," they continue.
"Yes, yes." Dindrati waves his hand dismissively. His thumb and first two fingers are scaly, and each ends in a pointed tip.
He picks up a piece from the board and moves it.
"Your priorities have changed," he says, finally looking up from the board. His wide, smooth face would probably be quite unremarkable were it not for the raised gold-colored scales on the side of his jaw, like beetle carapaces crawling up his left cheekbone and encircling his eye. That eye has no pupil, no iris. Just a solid pool the color of liquid, molten metal.
"I have reason to believe that the Hand may be involved in Blackguard's disappearance." Maddox shifts their weight back onto their heels. Iofi draws her shoulders back a little. "I want you to find out. And if it's true, I want you to make them feel my disappointment."
He turns back to the game. "Start with the Pinky," he says and waves again, dismissing them.
Iofi clears her throat and says, "Going after the Hand is not nearly the same as interviewing the butler of a rich merchant. We'll need to renegotiate our contract."
Dindrati sighs and nods, and presses himself up from his game. He turns around and crosses the room. He draws one claw-tipped finger across the spines of the books on the shelf.
He pulls down a thick journal and turns back to the duo.
"Here," he says, holding it out to Iofi. "This should be enough to balance the scales."
Iofi reaches out and takes the book from the count.
"I'll adjust your pay accordingly," he concludes, sitting back down to the game.
---
The count nominally governs Kriteach County. He speaks with the authority of the king, and enforces his will with his own police force. But it is the Hand that in actuality runs the day to day operations of the city. They indulge in the standard practices of organized crime. Racketeering, bribery, extortion and the like. But they do so with the begrudging support of the citizens, because they also spend a significant amount of effort enforcing their own code of ethics. They investigate and punish breaches of conduct both within their own ranks, and also amongst the people. Theirs has become a sort of people's court.
The governing body of the Hand is a council of five. Hence the name. The individuals may change and come and go over the years. But the positions and the titles are always the same.
There is the Thumb, as in "under my". They serve an executive function in the Hand, getting to set agendas and priorities and direction.
The Index is the book keeper for the whole organization. His accountants and lawyers know all the secrets and how to protect them. And only he knows the extent and the contents, and the whereabouts, of the Hand's coffers.
There is no subtly to the Tall Man's racket. His is enforcement and protection. Usually through muscle and brute force. Although his crew has been known to pull off a clandestine operation or two.
The Dead Ringer employs a small number of spies. They broker in espionage, intrigue, disguise, and when necessary, assassination and disposal.
And finally there is the Pinky--as in "wrapped around my little finger"--whose portfolio includes information and blackmail. Their network of spies is not necessarily limited to, but is largely comprised of, the working girls in the brothels. And their intel are the secrets that foolish men let slip while their head is on the pillow.
It is a well known secret that the current Pinky, one Madam Rose Walker, is the owner and proprietor of Madam Walker's Supper Club. A charmingly seedy establishment where you can get a good bite to eat and then, if you pay a little more, you can head upstairs and have one of the girls for desert.
---
Iofi and Maddox spent the day preparing. The book that Count Dindrati gave them was a grimorie. A book of magic.
One of the rituals they prepared involved Iofi consuming the heart of an animal. Meadowgloom dutifully obtained and prepared the beast while the two of them continued to study. "Divination is more your thing than mine anyway," Maddox said apologetically as Iofi frowned and suffered through eating the thing.
And now here they are. Standing in the shadows outside the supper club in the southern part of the Lost Arch district, near the harbour.
Convention dictates they conduct their missions after hours. But "after hours" at a brothel is typically midday, which they agreed would leave them feeling a little exposed. So they opted for 3:00, the bewitching hour.
"Ready?" Iofi asks quietly. Maddox nods and the two of them step out of the shadows. Maddox grumbles once again at the lack of windows on the ground floor. They walk past the painted red front door and around to the back alley where the entrance to the kitchen is. Iofi reaches into her satchel to pet the black turtle as she walks up to the door. She places her hand on the door and speaks with two voices, "<span style="font-variant:small-caps;">The door is open.</span>" She presses gently and the door swings open.
She steps aside so that Maddox can slip in, and then follows them and closes the door shut behind them.
EOF
</description>
</item>
<item>
<title>00002. Meadowgloom</title>
<link>http://tilde.town/~dozens/clericthief/00002-meadowgloom.html</link>
<pubDate>Thu Sep 1 00:00:00 MDT 2022
</pubDate>
<guid isPermaLink="false">2022-09-01 00002. Meadowgloom</guid>
<description>
---
title: 00002. Meadowgloom
subtitle: Fucking Blackguard
created: 2022-08-31
updated: 2022-09-01
---
"You really don't know where Blackguard is," asks Maddox.
The four of them are sitting around a table in the safe house. Maddox, the bone doctor, Iofi, and Meadowgloom.
The bone doctor, summoned by Other Maddox, is extraordinarily pale. They have just finished stitching Maddox up, and are now wrapping them up in a bandage. They also set out some salve for Iofi, who is rubbing it into her boney forearms. They ache deeply from when she took the brunt of the blow from the axeman.
"I really don't," confesses Meadowgloom in his high, soft voice.
Meadowgloom is Blackguard's *majordomo*, head of his household staff. Up until recently he was quite happy and content with his job.
That was before, of course, he was detained and threatened with bodily dismemberment by three thugs who broke into the Blackguard house. Before being rescused by the tall dark haired woman and the short fair haired man, both of whom command strange magicks and are also quite handy with a hammer and a knife, respectively. Which makes them in some ways even scarier than the burglars were. And ultimately they also eventually threatened him with violence.
All because of Blackguard.
Blackguard, whose investments, speculations, and ventures have made him one of the most conspicuously wealthy merchants in Kriteach. Possibly on the entire island.
Blackguard, who over the last month started becoming increasingly anxious and secretive. Holding meetings at odd hours behind closed doors. Spending more and more time alone with his books. As though he knew the net was tightening, drawing closed around him.
Blackguard, who disappeared three days ago and left Meadowgloom holding the proverbial bag. After years of service and loyalty.
Fucking Blackguard.
"I don't," continues Meadowgloom. "But I can recreate his final days in the house for you. I can give you access to his books. His correspondence. Everything."
---
Meadowgloom's confidence starts to waiver as the three of them walk back to the Blackguard house. It was his sanctuary mere days ago. But now the illusion of safety has been shattered, and when he thinks of returning he feels a knot of dread in the pit of his stomach. He doesn't think he'll ever feel at peace there again.
He doesn't know how right he is about that.
The street is blocked off. The house, in the middle of the block, is collapsed in on itself and continues to smoke and smolder slightly. It is blackened by soot, gutted by fire, and utterly soaked from the efforts of putting out the blaze.
The fire brigade is now focused on putting out a neighboring apartment.
Meadowgloom moans helplessly and wordlessly. He was already mourning the psychological loss of his home. But he wasn't prepared for its physical loss.
"Shit," curses Maddox.
Iofi looks at them and frowns.
"It's a setback," she offers.
"It was our best and only lead," they counter.
Meadowgloom moans again and rushes past the barricade toward the house. He is stopped by the brigade, who won't let him advance. Maddox gives him a moment, and then steps forward and gently pulls him away. They walk back in the direction from which they came. Meadowgloom, silent and dejected, flanked on either side by Maddox and Iofi. Nothing else to be done here.
"You'll stay with us," Iofi pats Meadowgloom on the arm.
Maddox mumbles something under their breath and nods.
"It's the least we can do given the circumstances."
EOF
</description>
</item>
<item>
<title>00001. Cleric + Thief</title>
<link>http://tilde.town/~dozens/clericthief/00001-introductions.html</link>
<pubDate>Tue Aug 30 00:00:00 MDT 2022
</pubDate>
<guid isPermaLink="false">2022-08-30 00001. Cleric + Thief</guid>
<description>
---
title: 00001. Cleric + Thief
subtitle: Introducing Iofi and Maddox
created: 2022-08-30
updated: 2022-08-30
---
Iofi knocks on the front door of the apartment while Maddox turns and faces the other way, inspecting the immaculate lawn and the empty tree-lined street.
"Does the formality of it ever strike you as funny?" asks Maddox. They are short and fidgety, with a ruddy face, small squinting eyes, and short shaggy blonde hair.
Iofi drags the fingers of one hand gently across the face of the door. Her other hand starts to reach instinctively for the satchel around her waist, but then the returns it to her side after all. "Funny?" she echoes quietly, almost to herself. She is tall, almost gaunt. Her long dark hair is pulled back into a low tight bun. She has slightly buck teeth and a slight overbite, and large dark eyes with hooded eyelids.
"Knocking like that. Like you need permission." Maddox continues quietly, their voice just above a whisper. "You don't find it funny?"
"It's the right thing to do," Iofi answers, turning her head slightly toward her partner.
Maddox turns from the lawn, satisfied for now, and leans over the railing to peer in through the window.
"The right thing to do," they counter, "is whatever gets you what you need." They squint, trying to make out the inside of the room through the thin curtains. "And right now, we need to find the merchant."
The door opens a crack just as Iofi raises her fist to knock a second time.
Maddox quickly straightens up and tries not to look like they were just spying through the window.
In the doorway is a small bald man with a thin, meticulous goatee and mustache. He stands in the small space between the door and its frame and peers out at them with large watery eyes and a gaping mouth like a goldfish.
"Yes?" he greets them with a soft, high voice.
"Hello," Iofi smiles, revealing an impressive amount of teeth, her mouth giving a round shape to her vowels. "We're looking for Mister Dedric Blackguard. Is he available?"
Maddox clears their throat and tugs on their sleeves on the front porch. The small man glances at them briefly before flicking his eyes back to Iofi.
"No, I'm afraid Mister Blackguard is not here at the moment."
Maddox asks, "Do you know when he will be back?" their voice a little raspy as they speak up to be heard.
"I'm afraid not," he answers in his childlike voice. There is a heavy thump and a scrape from somewhere behind the door. The doorman flinches and smiles nervously.
Maddox narrows their eyes, and concern appears on Iofi's face. "Is everything alright?" she asks. The doorman's eyes flit quickly behind the door.
"Yes! Yes, everything is quite alright. It, erm. It was just the cat!"
"The cat," echoes Iofi.
"Look," the doorman squeaks, "I really must be going. I really am busy. I'll tell Mister Blackguard you were here. Miss?"
"Iofi." She gestures behind her, "and Maddox. From the office of the Governor."
The doorman meeps quietly again. "The governor? Oh, um. Yes, very good. I will let Mister Blackguard know. Now, as I said, I am very busy. Good day!"
The small man closes the door in their faces. There is the sound of a key turning in a lock, and the sliding of a bolt.
"Do you think he's in trouble in there?" Maddox asks Iofi, their voice a little more melodious as it drops to its natural register just above a whisper.
"If he is, it would be the right thing to do to help him, wouldn't it?" Iofi answers dipping her hand into her satchel.
"I'm more concerned about losing a lead than doing the right thing, but you know. Tell yourself what you need to hear."
Iofi places her free hand on the door and when she speaks next, she does so with two voices at once. "<span style="font-variant:small-caps;">This door is unlocked</span>." She lowers her hand to the door handle and turns it, and steps aside making room for Maddox at her side as she silently opens it a crack.
Maddox peers into the empty foyer on the other side of the door. There is a staircase leading up to the second level, a hallway receding away from them toward the back of the house, and a large doorway on either side.
A second Maddox walks briskly but silently in from the room on the right and looks expectantly at the two of them lurking in the doorway. The Maddox on the front porch nods at Iofi, who pushes the front door open wide enough for them both to fit through.
Maddox tells the other Maddox, "Continue searching the downstairs. If everything's clear, head back to the safe house and wait for us there." Maddox nods, and silently continues through the doorway on the left into a dining room.
Maddox turns back to Iofi and nods questioningly toward the stairs. They go first, a dagger suddenly in each hand. She pulls a glass rod out of her satchel, something between a large hammer and small club, and follows.
At the top of the stairs is a hall with four rooms. Two to the left, one to the right, and one straight ahead.
Muffled voices drift down the hall from the room at the far end of the hall.
Maddox and Iofi creep forward. One of the voices is the high, soft, trembling voice of the doorman. The other voice is low, calm, and commanding.
"I told you I don't know where he is!"
"And I told you that is not an acceptable answer." Maddox frowns at the voice's western accent and glances back and up at Iofi. She nods, a single line of concern creasing her brow. She heard it to.
"He has something of ours," the voice continues. "We need it back."
The doorman yelps and there is the sound of a brief scuffle, and a thump, and the doorman cries out in despair.
Iofi leans over Maddox and places her hand on the door. "Ready?" They crouch and raise their daggers. "<span style="font-variant:small-caps;">We're already on the other side.</span>"
In an instant, Maddox and Iofi find themselves on the other side of the door. Two thugs are holding the terrified doorman down in a chair. One is pressing his hand flat down on the table in front of him, fingers splayed. A third brute is standing before the doorman, a cleaver in his hand, raised over the doorman's fingers.
Maddox flings one dagger at the brute with the cleaver. It lodges in the meat of his shoulder and he howls. All eyes turn toward the door, which remains closed and locked.
Iofi points her rod at the brute and says, "<span style="font-variant:small-caps;">That's not a cleaver, that's an eel!</span>" The brute watches in amazement as the cleaver in his hand bends and warps and elongates and grows flesh and teeth. Teeth that the eel sink into the brute's forearm.
The brute cries out and throws the eel to the ground and stumbles back.
The doorman scoots quickly away as the thugs release him and lunge toward Maddox, the first drawing a shortsword, and the second swinging an axe.
Maddox parries the shortsword, but the axe slices them across the ribs. They cry out.
"Maddox!" Iofi cries and brings her club down on the thug. It's an awkward swing and glances off the thug's arm, but it lands a substantially more solid blow than a frail glass rod ought to.
Maddox dashes to the side and throws another dagger, striking up to the hilt in the brute's chest. He clutches the blade and staggers to the floor.
The thug with the shortsword hesitates and takes a step back. But the one with the axe charges forward and swings at Iofi. The blow is heavy and rattles her bones, but she deflects it and swings her club again, this time cracking the thug in the head. He stumbles.
Maddox, having produced another dagger, lunges for thug with the axe, but the slash in his ribs is so painful that he is unable to strike a killing blow. Still, the axeman cries and stumbles.
Seeing his opportunity, the swordsman darts forward and pierces Maddox clean through the shoulder. Maddox cries out, barely still standing.
Iofi advances in a fury and the swordsman falls beneath a flurry of blows.
Maddox collapses in her arms and she drags him over to the doorman, who is huddling wide-eyed in the corner.
The thug with the axe staggers forward and raises the blade over his head as Maddox reaches out and weakly grabs the doorman by his lapel. Iofi looks up and makes eye contact with the axeman as he grunts and swings down on them. At the same time Maddox whispers, "Snap," and the three of them blink out of existence.
The axe buries itself in the floor, and the axeman looks around the room, empty except for him and his dead and dying comrades.
---
They arrive in a heap on the floor in safe house. Other Maddox is standing over them. They look gravely concerned, but they don't move forward to help them.
"I saw," they say softly. "I already called for help."
Iofi, still holding Maddox in her arms, looks up at the other Maddox. "Thank you," she says.
The doorman whimpers and tries to crawl away on all fours, and vomits on the ground.
Maddox groans, doubled over in pain. From between gritted teeth they hiss, "Wait outside. Stand watch."
Other Maddox nods and silently exits the room.
Maddox drags himself over to the doorman, the two of them both on the ground, and they shove him onto his back. From somewhere, they have produced another long bladed dagger. "Now," they whisper, holding the tip near the doorman's face. "Whatever it is you were about to tell those goons, you're going to tell us instead. Where's Blackguard?"
Iofi, her gown covered in blood, stands up and walks over to Maddox and the whimpering doorman.
She crouches down and reaches into her satchel and pulls out a turtle shell the size of her hand. It is jet black, with a bright orange dotted line around the edge. She places it on the ground next to the doorman, and watches it intently.
The doorman glances from Maddox to it, as first one and then another head pokes out from the shell. One looks at the doorman curiously, and the other ignores him, looking as much in the opposite direction as is possible.
"Yes," Iofi nods and says to the doorman, eyes still on the turtle, "I suggest you tell them what they want to know. It would be the right thing to do."
EOF
</description>
</item>
</channel></rss>

6
www/feed.xml 100644
View File

@ -0,0 +1,6 @@
<link>http://tilde.town/~dozens/clericthief/index.html</link><description>adventures of iofi and maddox</description><atom:link rel="self" type="application/rss+xml" href="http://tilde.town/~dozens/clericthief/episodes.xml"/>
<link>http://tilde.town/~dozens/clericthief/index.html</link><description>adventures of iofi and maddox</description><atom:link rel="self" type="application/rss+xml" href="http://tilde.town/~dozens/clericthief/episodes.xml"/>
<link>http://tilde.town/~dozens/clericthief/index.html</link><description>adventures of iofi and maddox</description><atom:link rel="self" type="application/rss+xml" href="http://tilde.town/~dozens/clericthief/episodes.xml"/>
<link>http://tilde.town/~dozens/clericthief/index.html</link><description>adventures of iofi and maddox</description><atom:link rel="self" type="application/rss+xml" href="http://tilde.town/~dozens/clericthief/episodes.xml"/>
<link>http://tilde.town/~dozens/clericthief/index.html</link><description>adventures of iofi and maddox</description><atom:link rel="self" type="application/rss+xml" href="http://tilde.town/~dozens/clericthief/episodes.xml"/>
<link>http://tilde.town/~dozens/clericthief/index.html</link><description>adventures of iofi and maddox</description><atom:link rel="self" type="application/rss+xml" href="http://tilde.town/~dozens/clericthief/episodes.xml"/>

171
www/index.html 100644
View File

@ -0,0 +1,171 @@
<!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>Cleric + Thief</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]-->
<link rel="alternate" type="application/rss+xml" title="episodes" href="http://tilde.town/~dozens/clericthief/episodes.xml">
<link rel="alternate" type="application/rss+xml" title="journal" href="http://tilde.town/~dozens/clericthief/journal.xml">
</head>
<body>
Cleric + Thief
| <a href="index.html">Episodes</a>
| <a href="about.html">About</a>
| <a href="journal.html">Journal</a>
<header id="title-block-header">
<h1 class="title">Cleric + Thief</h1>
<p class="subtitle">Adventures of Iofi and Maddox</p>
</header>
<p><a href="episodes.xml">subscribe to episodes</a></p>
<!-- BEGIN //-->
<ul>
<li><time>2022-09-03</time> - <a href="00003-hand.html">00003. The Hand</a></li>
<li><time>2022-09-01</time> - <a href="00002-meadowgloom.html">00002. Meadowgloom</a></li>
<li><time>2022-08-30</time> - <a href="00001-introductions.html">00001. Cleric + Thief</a> <!-- END //--></li>
</ul>
</body>
</html>

186
www/journal.html 100644
View File

@ -0,0 +1,186 @@
<!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>Cleric + Thief</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]-->
<link rel="alternate" type="application/rss+xml" title="episodes" href="http://tilde.town/~dozens/clericthief/episodes.xml">
<link rel="alternate" type="application/rss+xml" title="journal" href="http://tilde.town/~dozens/clericthief/journal.xml">
</head>
<body>
Cleric + Thief
| <a href="index.html">Episodes</a>
| <a href="about.html">About</a>
| <a href="journal.html">Journal</a>
<header id="title-block-header">
<h1 class="title">Cleric + Thief</h1>
<p class="subtitle">Journal</p>
</header>
<p>This is a journal of meta-content and behind the scenes kind of updates.</p>
<p><a href="journal.xml">subscribe to updates</a></p>
<!-- BEGIN //-->
<h2 id="feed-esoterica"><time>2022-09-03</time> - Feed Esoterica</h2>
<p>Okay some of you will get a kick out of this.</p>
<p>I decided I needed to roll my own feeds, and so I used ED to programatically edit my source files into recfiles, used an m4 include in one instance, and then used recfmt templates to create the rss items.</p>
<p>That is right. Ed, m4, and recutils.</p>
<h2 id="blow-me-down"><time>2022-09-02</time> - Blow Me Down</h2>
<p>It is definitely <em>not</em> true that I based the looks of Iofi and Maddox on Shelley Duvall and Robin Williams from the 1980 American musical comedy smash hit <em>Popeye</em>.</p>
<h2 id="episodes-rss-feed"><time>2022-09-01</time> - episodes rss feed</h2>
<p>Made an update that will hopefully fix the links in the Episodes feed.</p>
<p>If not, I might need to start handrolling a feed instead of relying on <a href="https://blog.miso.town">blog.miso.town</a>.</p>
<p>In fact, I just noticed that the journal feed is kind of borked too.</p>
<p>Yeah I may just need to create my own feeds..</p>
<h2 id="meadowgloom"><time>2022-09-01</time> - 00002. Meadowgloom</h2>
<p>Hey gamers its ya boy dozens!</p>
<p>This update focuses briefly on Meadowgloom. Which is a name I snatched up from a fantasy name generator. It also generated the astounding name “Eccentric Kevin”. Who is a character I have every intention of introducing at some point as a perfectly normal, sane, and reasonable straight man.</p>
<h2 id="cleric-thief"><time>2022-08-30</time> - 00001. Cleric + Thief</h2>
<p>Hey I started a new thing!</p>
<p>This is the narrative version of a solo roleplaying game.</p>
<p>It is based on the mechanics and the <em>callings</em> of <a href="https://awkwardturtle.itch.io/brighter-worlds">Brighter Worlds by awkwardturtle</a>. It is a lovely game and I wanted to play it. I came up with the setting and the starting scenario using <a href="https://sean-f-smith.medium.com/with-this-tool-youll-never-run-out-of-ideas-15d19ab72dfb">GRAPES and WTAF?! tarot spreads as described by Sean F. Smith</a>. And then I used the <a href="https://inflatablestudios.itch.io/one-page-solo-engine">One Page Solo Engine</a> to answer questions during play.</p>
<p>My thief almost friggin died in the very first scenario. Yikes! Combat is lethal. <!-- END //--></p>
</body>
</html>

65
www/journal.xml 100644
View File

@ -0,0 +1,65 @@
<rss version="2.0"><channel><title>cleric + thief</title>
<link>http://tilde.town/~dozens/clericthief/index.html</link><description>behind the scenes of cleric + thief</description><atom:link rel="self" type="application/rss+xml" href="http://tilde.town/~dozens/clericthief/journal.xml"/>
<item>
<title>Feed Esoterica</title>
<link>http://tilde.town/~dozens/clericthief/journal.html</link>
<guid isPermaLink="false">2022-09-03 Feed Esoterica</guid>
<pubDate>Sat Sep 3 00:00:00 MDT 2022
</pubDate>
<description>
Okay some of you will get a kick out of this.
I decided I needed to roll my own feeds, and so I used ED to programatically edit my source files into recfiles, used an m4 include in one instance, and then used recfmt templates to create the rss items.
That is right. Ed, m4, and recutils.
</description>
</item>
<item>
<title>Blow Me Down</title>
<link>http://tilde.town/~dozens/clericthief/journal.html</link>
<guid isPermaLink="false">2022-09-02 Blow Me Down</guid>
<pubDate>Fri Sep 2 00:00:00 MDT 2022
</pubDate>
<description>
It is definitely *not* true that I based the looks of Iofi and Maddox on Shelley Duvall and Robin Williams from the 1980 American musical comedy smash hit *Popeye*.
</description>
</item>
<item>
<title>episodes rss feed</title>
<link>http://tilde.town/~dozens/clericthief/journal.html</link>
<guid isPermaLink="false">2022-09-01 episodes rss feed</guid>
<pubDate>Thu Sep 1 00:00:00 MDT 2022
</pubDate>
<description>
Made an update that will hopefully fix the links in the Episodes feed.
If not, I might need to start handrolling a feed instead of relying on [blog.miso.town](https://blog.miso.town).
In fact, I just noticed that the journal feed is kind of borked too.
Yeah I may just need to create my own feeds..
</description>
</item>
<item>
<title>00002. Meadowgloom</title>
<link>http://tilde.town/~dozens/clericthief/journal.html</link>
<guid isPermaLink="false">2022-09-01 00002. Meadowgloom</guid>
<pubDate>Thu Sep 1 00:00:00 MDT 2022
</pubDate>
<description>
Hey gamers it's ya boy dozens!
This update focuses briefly on Meadowgloom. Which is a name I snatched up from a fantasy name generator. It also generated the astounding name "Eccentric Kevin". Who is a character I have every intention of introducing at some point as a perfectly normal, sane, and reasonable straight man.
</description>
</item>
<item>
<title>00001. Cleric + Thief</title>
<link>http://tilde.town/~dozens/clericthief/journal.html</link>
<guid isPermaLink="false">2022-08-30 00001. Cleric + Thief</guid>
<pubDate>Tue Aug 30 00:00:00 MDT 2022
</pubDate>
<description>
Hey I started a new thing!
This is the narrative version of a solo roleplaying game.
It is based on the mechanics and the *callings* of [Brighter Worlds by awkwardturtle][brighter]. It is a lovely game and I wanted to play it. I came up with the setting and the starting scenario using [GRAPES and WTAF?! tarot spreads as described by Sean F. Smith][grapes]. And then I used the [One Page Solo Engine][opse] to answer questions during play.
[opse]: https://inflatablestudios.itch.io/one-page-solo-engine
[brighter]: https://awkwardturtle.itch.io/brighter-worlds
[grapes]: https://sean-f-smith.medium.com/with-this-tool-youll-never-run-out-of-ideas-15d19ab72dfb
My thief almost friggin died in the very first scenario. Yikes! Combat is lethal.
</description>
</item>
</channel></rss>